|
MEASUR-Tools-Suite v1.0.11
The MEASUR Tools Suite is a collection of industrial efficiency calculations written in C++ and with bindings for compilation to WebAssembly.
|
This calculator estimates the heat removed by liquid cooling systems, using flow rate, liquid density, inlet and outlet temperatures, specific heat, and a correction factor. The algorithm is suitable for modeling cooling losses in industrial furnaces, ovens, and similar systems, for liquids other than water.
The calculation follows a top-down approach:
Total heat loss due to liquid cooling.
The heat loss is calculated by multiplying the liquid flow rate, density, specific heat, temperature rise, and correction factor. The factor of 60 converts from gallons per minute to gallons per hour.
\begin{equation}\label{eq:liquid-cooling-heat-loss} Q_\text{cool} = FR \cdot 60 \cdot \rho_{l,lb/ft^3} \cdot SH \cdot \Delta T \cdot CF\end{equation}
| \(Q_\text{cool}\) | Liquid cooling heat loss \([\unit{ \btu\per\hour}]\) |
| \(FR\) | Liquid flow rate \([\unit{ \gallon\per\minute}]\) |
| \(60\) | Minutes per hour (GPM to GPH conversion) - see physics::conversions::kMinutesPerHour \([\unit{ \unitless}]\) |
| \(\rho_{l,lb/ft^3}\) | Liquid density \([\unit{ \pound\per\cubicFoot}]\) |
| \(SH\) | Specific heat of liquid \([\unit{ \btu\per\pound\degreeFahrenheit}]\) |
| \(\Delta T\) | Temperature rise (outlet - inlet) \([\unit{ \degreeFahrenheit}]\) |
| \(CF\) | Correction factor \([\unit{ \unitless}]\) |
Modules | |
| Liquid Cooling Heat Loss Formula | |
| Total heat loss due to liquid cooling. | |
Files | |
| file | liquid_cooling_heat_loss.h |
Namespaces | |
| namespace | liquid_cooling_heat_loss |
| Calculates heat loss due to liquid cooling in process heating equipment. | |
Functions | |
| double | liquid_cooling_heat_loss::totalHeatLoss (double flow_rate, double density, double initial_temperature, double outlet_temperature, double specific_heat, double correction_factor) |
| Calculates the total heat loss due to liquid cooling in process heating equipment. | |
| double liquid_cooling_heat_loss::totalHeatLoss | ( | double | flow_rate, |
| double | density, | ||
| double | initial_temperature, | ||
| double | outlet_temperature, | ||
| double | specific_heat, | ||
| double | correction_factor | ||
| ) |
This function computes the heat loss removed by a cooling liquid, based on flow rate, liquid density, initial temperature, outlet temperature, specific heat, and a correction factor. The calculation assumes no phase change and uses sensible heat only.
| [in] | flow_rate | Cooling liquid flow rate \([\unit{\gallon\per\minute}]\) |
| [in] | density | Liquid density \([\unit{\pound\per\cubic\foot}]\) |
| [in] | initial_temperature | Initial/inlet liquid temperature \([\unit{\degreeFahrenheit}]\) |
| [in] | outlet_temperature | Outlet liquid temperature \([\unit{\degreeFahrenheit}]\) |
| [in] | specific_heat | Specific heat of liquid \([\unit{\btu\per\pound\per\degreeFahrenheit}]\) |
| [in] | correction_factor | Correction factor \([\unit{\unitless}]\) |