Declares structs, enums, and functions for the Steam Reduction Calculator.Calculates annual steam use, energy use, and energy cost for steam reduction measures using multiple measurement methods.
More...
#include <vector>
#include "steamModeler/SteamProperties.h"
Go to the source code of this file.
|
| namespace | steam_reduction |
| | Steam reduction calculations for treasure hunt measures.
|
| |
|
| SteamReductionOutput | steam_reduction::steamReduction (const std::vector< SteamReductionInput > &input_vec) |
| | Calculates total annual steam use, energy use, and energy cost for a collection of steam reduction measures.
|
| |
| SteamReductionOutput | steam_reduction::flowMeterReduction (const FlowMeterMethodData &data, int hours_per_year, double system_efficiency, int units, double boiler_efficiency, double change_enthalpy) |
| | Calculates steam use and energy use using the flow meter method.
|
| |
| SteamReductionOutput | steam_reduction::airMassFlowReduction (const MassFlowMethodData &data, int hours_per_year, double system_efficiency, int units, double boiler_efficiency, double change_enthalpy) |
| | Calculates steam use and energy use using the air mass flow method.
|
| |
| SteamReductionOutput | steam_reduction::waterMassFlowReduction (const MassFlowMethodData &data, int hours_per_year, double system_efficiency, int units, double boiler_efficiency, double change_enthalpy) |
| | Calculates steam use and energy use using the water mass flow method.
|
| |
| SteamReductionOutput | steam_reduction::offsheetReduction (const OffsheetMethodData &data, double boiler_efficiency, double change_enthalpy) |
| | Calculates steam use and energy use using the offsheet (direct consumption) method.
|
| |
| double | steam_reduction::calculateChangeEnthalpy (double pressure, SteamProperties::ThermodynamicQuantity steam_variable_option, double steam_variable, double feed_water_temperature) |
| | Calculates the enthalpy difference between steam at the given conditions and feedwater.
|
| |