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.
Loading...
Searching...
No Matches
gas_cooling_losses.h
Go to the documentation of this file.
1
13#ifndef TOOLS_SUITE_GASCOOLINGLOSSES_H
14#define TOOLS_SUITE_GASCOOLINGLOSSES_H
15
23 public:
35 GasCoolingLosses(const double flowRate, const double initialTemperature, const double finalTemperature,
36 const double specificHeat, const double correctionFactor, const double gasDensity)
37 : flowRate(flowRate), initialTemperature(initialTemperature), finalTemperature(finalTemperature),
38 specificHeat(specificHeat), correctionFactor(correctionFactor), gasDensity(gasDensity) {}
39
44 double getHeatLoss() const;
45
46 private:
47 const double flowRate, initialTemperature, finalTemperature, specificHeat, correctionFactor, gasDensity;
48};
49#endif // TOOLS_SUITE_GASCOOLINGLOSSES_H
GasCoolingLosses(const double flowRate, const double initialTemperature, const double finalTemperature, const double specificHeat, const double correctionFactor, const double gasDensity)
double getHeatLoss() const