Variable liquid flow rate control

controlcontrol systemwater

I'm not an Engineer by trade, rather a programmer looking to put together a micro controller project that alters the water flow rate of a cooling system to maintain a specific operating temperature for a piece of equipment.

The media is mains-supply water, so is already at pressure.

What component would I be looking for to control the rate of water flow from a microcontroller? I was pointed in the direction of a solenoid valve, however it appears this is only on/off control not variable.

What is the appropriate terminology for a piece of equipment that provides variable liquid flow control?

Best Answer

Depending on whether you are just letting a variable amount of liquid past or actively need to push it, the answer is either a valve or pump. There are off the shelf units for both. Valves will be controlled either by a motor or a solenoid. Pumps will be run by motors. In either case, both can be controlled by a microcontroller by something called "PWM", which stands for pulsewidth modulation. Instead of trying to run the motor or valve at some intermediate voltage, you switch rapidly between full on and full off. The solenoid or valve only "sees" the average, but the full on and full off switching are more effecient than creating voltages or currents in-between.

Related Topic