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
include
processHeat
losses
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
22
class
GasCoolingLosses
{
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
Definition
gas_cooling_losses.h:22
GasCoolingLosses::GasCoolingLosses
GasCoolingLosses(const double flowRate, const double initialTemperature, const double finalTemperature, const double specificHeat, const double correctionFactor, const double gasDensity)
Definition
gas_cooling_losses.h:35
GasCoolingLosses::getHeatLoss
double getHeatLoss() const
Generated by
1.9.8