|
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 quantifies the annual electricity cost of a compressor that cycles between two states under a load/unload control strategy:
Load/unload control is one of the most common strategies for industrial compressors. It is energy-efficient at high utilization but wastes electricity at low utilization because the motor idles continuously rather than shutting Quantifying both cost components helps engineers evaluate whether a different control strategy is economically justified.
The four calculation outputs are:
Relevant formulas are documented below.
Percentage of total operating time the compressor runs in the unloaded state.
The loaded and unloaded run times are complementary: the compressor is either fully loaded or fully unloaded at any instant. The unloaded percentage is therefore the arithmetic complement of the loaded percentage.
\begin{equation}\label{eq:operating-cost-run-time-unloaded} f_{unloaded} = 100 - f_{loaded} \end{equation}
| \(f_{unloaded}\) | Percentage of operating time the compressor runs unloaded \([\unit{ \percent}]\) |
| \(f_{loaded}\) | Percentage of operating time the compressor runs loaded (input) \([\unit{ \percent}]\) |
Annual electricity cost while the compressor delivers air at full load.
When loaded, the compressor draws electrical power equal to the full-load shaft power ( \(P_{motor}\)) converted to kilowatts via \(k_{BHP}\), divided by the motor efficiency to account for electrical-to-mechanical conversion losses. This power is paid for over the fraction of annual hours that the machine actually runs loaded.
\begin{equation}\label{eq:operating-cost-loaded} C_{loaded} = \frac{P_{motor} \cdot k_{BHP} \cdot H_{annual} \cdot f_{loaded} \cdot c_{elec}}{\eta_{loaded}} \end{equation}
| \(C_{loaded}\) | Annual electricity cost in the loaded condition \([\unit{ \dollar\per\year}]\) |
| \(P_{motor}\) | Full-load motor brake horsepower \([\unit{ \bhp}]\) |
| \(k_{BHP}\) | BHP-to-kilowatt conversion factor (0.746) \([\unit{ \kilowatt\per\bhp}]\) |
| \(H_{annual}\) | Total compressor operating hours per year \([\unit{ \hour}]\) |
| \(f_{loaded}\) | Run-time loaded fraction (input ÷ 100) \([\unit{ \percent}]\) |
| \(c_{elec}\) | Electricity unit cost \([\unit{ \dollar\per\kilowatt\hour}]\) |
| \(\eta_{loaded}\) | Motor efficiency in the loaded condition (input ÷ 100) \([\unit{ \percent}]\) |
Annual electricity cost while the compressor runs unloaded (motor idling).
In the unloaded state the compressor draws only a fraction of its full-load BHP. That fraction, \(f_{bhp,unloaded}\), represents the residual mechanical work (friction, windage, valve actuation) absorbed by the unloaded compressor. The motor efficiency in this state, \(\eta_{unloaded}\), may differ from the loaded value because motors are less efficient at light loads.
\begin{equation}\label{eq:operating-cost-unloaded} C_{unloaded} = \frac{P_{motor} \cdot k_{BHP} \cdot H_{annual} \cdot f_{bhp,unloaded} \cdot f_{unloaded} \cdot c_{elec}}{\eta_{unloaded}} \end{equation}
| \(C_{unloaded}\) | Annual electricity cost in the unloaded condition \([\unit{ \dollar\per\year}]\) |
| \(P_{motor}\) | Full-load motor brake horsepower \([\unit{ \bhp}]\) |
| \(k_{BHP}\) | BHP-to-kilowatt conversion factor (0.746) \([\unit{ \kilowatt\per\bhp}]\) |
| \(H_{annual}\) | Total compressor operating hours per year \([\unit{ \hour}]\) |
| \(f_{bhp,unloaded}\) | Percentage of full-load BHP consumed when unloaded (input ÷ 100) \([\unit{ \percent}]\) |
| \(f_{unloaded}\) | Run-time unloaded fraction (= (100 - f_{loaded}) ÷ 100) \([\unit{ \percent}]\) |
| \(c_{elec}\) | Electricity unit cost \([\unit{ \dollar\per\kilowatt\hour}]\) |
| \(\eta_{unloaded}\) | Motor efficiency in the unloaded condition (input ÷ 100) \([\unit{ \percent}]\) |
Total annual electricity cost for a compressor operating in load/unload mode.
The total annual cost is the simple sum of the loaded and unloaded components. This value represents the baseline against which energy efficiency improvements (VSD drives, pressure setpoint optimization, compressor staging) can be compared.
\begin{equation}\label{eq:operating-cost-total} C_{total} = C_{loaded} + C_{unloaded} \end{equation}
| \(C_{total}\) | Total annual electricity cost \([\unit{ \dollar\per\year}]\) |
| \(C_{loaded}\) | Annual electricity cost in the loaded condition \([\unit{ \dollar\per\year}]\) |
| \(C_{unloaded}\) | Annual electricity cost in the unloaded condition \([\unit{ \dollar\per\year}]\) |
Modules | |
| Run Time Unloaded Formula | |
| Percentage of total operating time the compressor runs in the unloaded state. | |
| Loaded Annual Cost Formula | |
| Annual electricity cost while the compressor delivers air at full load. | |
| Unloaded Annual Cost Formula | |
| Annual electricity cost while the compressor runs unloaded (motor idling). | |
| Total Annual Cost Formula | |
| Total annual electricity cost for a compressor operating in load/unload mode. | |
Files | |
| file | operating_cost.h |
| Declarations for compressed air compressor annual operating cost calculations. | |
Namespaces | |
| namespace | operating_cost |
| Compressed air compressor annual operating cost calculations. | |
Classes | |
| struct | operating_cost::Input |
| Input parameters for the annual compressor operating cost calculation. More... | |
| struct | operating_cost::Result |
| Result of the annual compressor operating cost calculation. More... | |