|
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.
|
#include <Boiler.h>
Public Member Functions | |
| Boiler (double deaeratorPressure, double combustionEfficiency, double blowdownRate, double steamPressure, SteamProperties::ThermodynamicQuantity quantityType, double quantityValue, double steamMassFlow) | |
| SteamSystemModelerTool::FluidProperties const & | getSteamProperties () const |
| SteamSystemModelerTool::FluidProperties const & | getBlowdownProperties () const |
| SteamSystemModelerTool::FluidProperties const & | getFeedwaterProperties () const |
| double | getDeaeratorPressure () const |
| double | getCombustionEfficiency () const |
| double | getBlowdownRate () const |
| double | getSteamPressure () const |
| double | getQuantityValue () const |
| double | getSteamMassFlow () const |
| SteamProperties::ThermodynamicQuantity | getQuantityType () const |
| void | setDeaeratorPressure (double deaeratorPressure) |
| void | setCombustionEfficiency (double combustionEfficiency) |
| void | setBlowdownRate (double blowdownRate) |
| void | setSteamPressure (double steamPressure) |
| void | setQuantityValue (double quantityValue) |
| void | setSteamMassFlow (double steamMassFlow) |
| void | setQuantityType (SteamProperties::ThermodynamicQuantity quantity) |
| double | getBoilerEnergy () const |
| double | getFuelEnergy () const |
Private Member Functions | |
| void | calculateProperties () |
Private Attributes | |
| double | deaeratorPressure |
| double | combustionEfficiency |
| double | blowdownRate |
| double | steamPressure |
| SteamProperties::ThermodynamicQuantity | quantityType |
| double | quantityValue |
| double | steamMassFlow |
| SteamSystemModelerTool::FluidProperties | steamProperties |
| SteamSystemModelerTool::FluidProperties | blowdownProperties |
| SteamSystemModelerTool::FluidProperties | feedwaterProperties |
| double | boilerEnergy |
| double | fuelEnergy |
Friends | |
| std::ostream & | operator<< (std::ostream &stream, const Boiler &boiler) |
Boiler calculator class Used to determines the amount of fuel energy required to produce steam with specified properties at a given flow rate using general boiler operational characteristics
| Boiler::Boiler | ( | double | deaeratorPressure, |
| double | combustionEfficiency, | ||
| double | blowdownRate, | ||
| double | steamPressure, | ||
| SteamProperties::ThermodynamicQuantity | quantityType, | ||
| double | quantityValue, | ||
| double | steamMassFlow | ||
| ) |
Constructor for the boiler calculator
| deaeratorPressure | double, pressure of deaerator in MPa |
| combustionEfficiency | double, combustion efficiency of the boiler as % |
| blowdownRate | double, blowdown rate as a % of inlet mass flow |
| steamPressure | double, pressure of steam in MPa |
| quantityType | SteamProperties::ThermodynamicQuantity, type of quantity (either temperature in K, enthalpy in kJ/kg, entropy in kJ/kg/K, or quality - unitless) |
| quantityValue | double, value of the quantity (either temperature in K, enthalpy in kJ/kg, entropy in kJ/kg/K, or quality - unitless) |
| steamMassFlow | double, steam mass flow in kg/hr |
|
inline |
| double Boiler::getBlowdownRate | ( | ) | const |
Gets the blowdown rate
|
inline |
| double Boiler::getCombustionEfficiency | ( | ) | const |
Gets the combustion efficiency of the boiler
| double Boiler::getDeaeratorPressure | ( | ) | const |
Gets the deaerator pressure
|
inline |
|
inline |
| SteamProperties::ThermodynamicQuantity Boiler::getQuantityType | ( | ) | const |
Gets the quantity type
| double Boiler::getQuantityValue | ( | ) | const |
Gets the quantity value
| double Boiler::getSteamMassFlow | ( | ) | const |
Gets the steam mass flow
| double Boiler::getSteamPressure | ( | ) | const |
Gets the steam pressure
|
inline |
| void Boiler::setBlowdownRate | ( | double | blowdownRate | ) |
Sets the blowdown rate
| blowdownRate | double, blowdown rate as a % of inlet mass flow |
| void Boiler::setCombustionEfficiency | ( | double | combustionEfficiency | ) |
Sets the combustion efficiency of the boiler
| combustionEfficiency | double, combustion efficiency as % |
| void Boiler::setDeaeratorPressure | ( | double | deaeratorPressure | ) |
Sets the deaerator pressure
| deaeratorPressure | double, pressure of the deaerator in MPa |
| void Boiler::setQuantityType | ( | SteamProperties::ThermodynamicQuantity | quantity | ) |
Sets the quantity type
| quantityType | SteamProperties::ThermodynamicQuantity, type of quantity (either temperature in K, enthalpy in kJ/kg, entropy in kJ/kg/K, or quality - unitless) |
| void Boiler::setQuantityValue | ( | double | quantityValue | ) |
Sets the quantity value
| quantityValue | double, value of quantity (either temperature in K, enthalpy in kJ/kg, entropy in kJ/kg/K, or quality - unitless) |
| void Boiler::setSteamMassFlow | ( | double | steamMassFlow | ) |
Sets the steam mass flow
| steamMassFlow | double, mass flow of steam in kg/hr |
| void Boiler::setSteamPressure | ( | double | steamPressure | ) |
Sets the steam pressure
| steamPressure | double, pressure of steam in MPa |
|
private |
|
private |
|
private |
|
private |