|
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 energy use of motors and auxiliary systems associated with process heating equipment. It uses electrical parameters and operating time to compute total power consumption, converting electrical power from kW to BTU/hr using a physical constant. The algorithm is suitable for modeling auxiliary energy losses in industrial furnaces, ovens, and similar systems.
The calculation follows a top-down approach:
Total auxiliary power consumption.
The formula calculates the electrical power in kilowatts based on voltage, current, power factor, and phase, adjusts for operating time, then converts to BTU/hr using the conversion constant.
\begin{equation}\label{eq:aux-power-used} Q_\text{aux} = \sqrt{P} \cdot V \cdot I \cdot PF \cdot OT \cdot \frac{1}{1000} \cdot k_{\text{kW}\to\text{BTU/hr}}\end{equation}
| \(Q_\text{aux}\) | Auxiliary power used \([\unit{ \btu\per\hour}]\) |
| \(P\) | Number of motor phases \([\unit{ \unitless}]\) |
| \(V\) | Supply voltage \([\unit{ \volt}]\) |
| \(I\) | Average current \([\unit{ \ampere}]\) |
| \(PF\) | Power factor \([\unit{ \unitless}]\) |
| \(OT\) | Operating time (fraction, 0-1) \([\unit{ \unitless}]\) |
| \(1000\) | Conversion from watts to kilowatts \([\unit{ \watt\per\kilowatt}]\) |
| \(k_{\text{kW}\to\text{BTU/hr}}\) | Conversion factor - see physics::conversions::kKilowattToBtuPerHour \([\unit{ \btu\per\hour\per\kilowatt}]\) |
Modules | |
| Auxiliary Power Used Formula | |
| Total auxiliary power consumption. | |
Files | |
| file | auxiliary_power_used.h |
Namespaces | |
| namespace | auxiliary_power_used |
| Calculates auxiliary power usage for electrical systems in process heating equipment. | |
Functions | |
| double | auxiliary_power_used::calculatePowerUsed (double number_of_motor_phases, double supply_voltage, double avg_current, double power_factor, double operating_time) |
| Calculates the auxiliary power used by electrical systems associated with process heating equipment. | |
| double auxiliary_power_used::calculatePowerUsed | ( | double | number_of_motor_phases, |
| double | supply_voltage, | ||
| double | avg_current, | ||
| double | power_factor, | ||
| double | operating_time | ||
| ) |
This function computes the energy use of motors and other auxiliary systems using electricity, based on electrical parameters and operating time.
| [in] | number_of_motor_phases | Number of motor phases \([\unit{\unitless}]\) |
| [in] | supply_voltage | Supply voltage \([\unit{\volt}]\) |
| [in] | avg_current | Average current \([\unit{\ampere}]\) |
| [in] | power_factor | Power factor \([\unit{\unitless}]\) |
| [in] | operating_time | Operating time (percent, 0-100) \([\unit{\percent}]\) |