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#pragma once
2
22 public:
34 GasCoolingLosses(const double flowRate, const double initialTemperature, const double finalTemperature,
35 const double specificHeat, const double correctionFactor, const double gasDensity)
36 : flowRate(flowRate), initialTemperature(initialTemperature), finalTemperature(finalTemperature),
37 specificHeat(specificHeat), correctionFactor(correctionFactor), gasDensity(gasDensity) {}
38
43 double getHeatLoss() const;
44
45 private:
46 const double flowRate, initialTemperature, finalTemperature, specificHeat, correctionFactor, gasDensity;
47};
GasCoolingLosses(const double flowRate, const double initialTemperature, const double finalTemperature, const double specificHeat, const double correctionFactor, const double gasDensity)
double getHeatLoss() const