@BillK55 Good stuff. I very nearly bought a larger version of the little aquarium pump that's on the various BoM lists for this very reason. I note also that this is an area where the EZ Anneal did a better job: a larger reservoir for starters and, by the looks of things, a more powerful separate pump. (If you browse the Alphacool website you will see a few of their parts.)
In the end I just went with the flow ('scuse the pun) and stuck to the little guy. I don't have a lot of space in my enclosure. What I did do was minimise any narrow tubing. In post 1 or 2 of this thread Gina shows a transition method to go from 3/8" ID tubing to 1/4" ID. I routed everything with 3/8" ID tubing and merely slipped a clamp-width section of 1/4" ID plastic tubing over the end of the 1/4" copper that passes across the induction board. (No need for the separate copper transitions.) It looks like the EZ Anneal may have gone for thicker coil tubing as well. Also they appear to have a longer coil, i.e. more turns, which would provide greater induction (more turns = more henrys) and quicker annealing times, potentially meaning less heat transfer from the hot cases to the fluid in the surrounding coil.
@ottsm probably has the best data on the cooling system. He is actually measuring the flow rate: 5.5 gph according to his video. He is also measuring the temperature of the coolant (albeit with a thermistor strapped to the plastic tubing rather than something with better heat transfer). I'm not sure which pump he is using and of course his results will depend on how he has coupled it all together plus his fan setup.
At the end of the day, however, much of the heat in this system isn't really in the coil. Unlike a computer system where one is trying to suck heat from, say, the CPU, here the hot part is ejected from the system through the trap door. It releases most of its heat sitting in a tray somewhere. We have two elements which require some cooling: (1) the heat generated from the induction board capacitors and diodes and (2) heat transferred to the coil from the induction process. (1) is dealt with by fan circulation of air. Re (2) annoyingly the cheapo induction boards are very poorly laid out and pass copper tubing straight over the top of the hot capacitors**. If annealing times are relatively quick the hot case is ejected before being able to transfer a lot of heat over the air gap between it and the coil. So there's less reliance on the liquid cooling system. At the end of the day, if the coil isn't getting too hot you're golden.
I added Insultherm to my coils for two reasons: one, I could get a tighter coil with bare copper tubing (no enamel insulation) without fear of shorting a coil loop and, two, to reduce heat transfer from the heating case to the coil. I reckon it is worth the extra several bucks. (It also looks good.)
I still think a better place for optimisation is the induction board itself. It's not a complicated board and is about as basic as it gets for this application. I'm not surprised that the EZ Anneal folks seem to have made their own.
** I am going to wrap some Kapton tape over the copper tubing in this area.
The pump I am using is a little tricky to figure out but it appears to be the following;
http://www.lg-motor.com/chanpinzhanshi/414.shtml
I'm using the 12Vdc version with a max lift of 4 meters which is listed at 0 flow so this is dead head. The max flow possible at 0 lift is 3 L/min. My concern at the time was pump cavitation but it hasn't been an issue as of yet. I was using a different pump in the video and was getting above 5 GPH but this pump is getting about 4.5 GPH. I switched pumps because I cracked the housing of the first pump by accident.
I will say that the flow meter is operating at the low end of its range, I have not done a bucket check to see how accurate it is or if I even got the equation correct. The following code calculates every 10 seconds, the "Flow_Total" is incremented by an interrupt elsewhere in the logic. Note the text following a "//" is a comment not actual code. To get 1380 pulses per liter we take F=23*Q or 23*60=1380 pulses/Liter
// Calculate Flow Rate
if(Flow_Calculation.check() == 1){
Flow_Rate = (Flow_Total / 10.0) * 0.68913; //Flow meter; 1380 pulses/Liter or 5224 pulses/gal, gph = pps * 3600/5224 or .68913
Flow_Total = 0;
}
If the pump of GinaEric is listed at 1.9 meter and getting 2GPH then I'd say the equation is close with the pump above at 4 meters and 4.5 GPH. To get it to work it must be mounted with the label end up to get the maximum number of pulses.
https://www.amazon.com/dp/B01D44N41U/?tag=accuratescom-20
If you look at the specs the low end is listed at 0.3 L/min, I am operating way below that range. I probably wouldn't have even tried it given that information. At the time I got the flow meter I didn't really have any idea what the flow rate would be. My main goal was and is to interlock the system down if I sense the flow is low. If the flow drops off and because I am calculating the flow every 10 seconds it may actually get one or two pieces of brass through but eventually it will stop before anything gets too hot. I intentionally stopped flow once before and kept putting brass through the system, that coil never did flow as much after that. I don't know if it melted some of the solder or the water flashing off could have coated the coil, either way the damage was done.