3

I've heard a bit about folks using air compressors with tubing to the toolhead and outlet openings there as part cooling. One example is the Berd Air, but from the information I can gather, it works with rather low pressures where the expansion of the compressed air is unlikely to get the air significantly below ambient temperature, so it's basically equivalent to a low-end fan. Indeed, this video comparing such a system against the HevACS found it rather ineffective.

If one wants to harness the cooling of compressed air to hit the part with air significantly below ambient temperature, what is the relationship between pressure needed and temperature drop? I assume one can work it out pretty closely with ideal gas law, but I don't understand how to figure in both the change in volume and pressure when the air exits the high pressure part of the system.

0scar
  • 37,708
  • 12
  • 68
  • 156

2 Answers2

1

Maybe you're thinking of 'Vortex Cooling' which uses a tuned vortex tube to create hot and cold airstreams. The Wikipedia example uses 100 SCFM of filtered compressed air at 100 PSI to create a 70 °C temperature differential.

Here's one on Amazon which is targeted at milling applications. Here's another...

agarza
  • 1,734
  • 2
  • 16
  • 33
BobT
  • 196
  • 4
1

Firts of, I created a quick simplified simulation in Matlab of cooling from 210°C to bellow 50°C. Here is a plot showing the difference in temperature curves in time. As stated, it is simplified, because I guessed that a printed piece can get from 210 deg to 50 in less than 5 seconds when cooled properly to room temperature.

I used this differential equation:

enter image description here

where T is temperature, t is time, T_target is target temperature (temperature of cooling air), a is a constant which I adjusted to meet the above specified criteria (a = 0.5)

enter image description here

As you can see, you save about a second of cooling time. You say whether it is enough. In my opinion it is irrelevant for standard printing.

Here is the Matlab source code if you want to try and experiment with it (it might run in GNU Octave as well, but I haven't tried it):

clear;
clc;

a = 0.5; targetTemp1 = 23; targetTemp2 = 0; tempLine = 50;

timeSpan = [0, 5]; x0 = 210;

[t1, y1] = ode45(@odeFcn, timeSpan, x0, 0, a, targetTemp1); [t2, y2] = ode45(@odeFcn, timeSpan, x0, 0, a, targetTemp2);

figure("Position", [360, 1220, 1200, 800]); hold on; plot(t1, y1); plot(t2, y2); plot([timeSpan(1), timeSpan(end)], [tempLine, tempLine], "Color", "black", "LineWidth", 2);

grid on; legend("Taget temperature: " + targetTemp1, "Taget temperature: " + targetTemp2); xlabel("t[s]"); ylabel("T[\circC]");

function y = odeFcn(t, x, a, target) y = -a * (x - target); end


That being said, here is how I calculated the needed pressure.

Constants:

enter image description here

c is specific heat capacity of air, κ is Poisson constant for air, ρ is density od air, V_2 is volume at atmospheric pressure, I estimated this value, Δt is temperature difference assuming the pressurized air is at room temperature and need to be cooled down to 0 degrees

The needed energy too cool the air by delta t is given by this formula:

enter image description here

And assuming this is adiabatic process with ideal gass, we can use this equation to find p1:

enter image description here

assuming V1 is given by:

enter image description here

I calculated the needed work W is 0.3 J and the pressure p1 is 148 kPa. To me this seems fairly low, I might have made a mistake somewhere or a wrong assumption. However, I would always suggest experimenting and finding an answer empirically, because there are too many unforseen variables like: air humidity, parts that would absorb/release the heat, direction and speed of the airflow, crossectional area of the outlet and so on.

Hope this helps.

[Edit] You can find the equations on wikipedia here and here. Sadly, it is in Czech, because the English variant does not have the equations in this format.