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
#pragma once
2
21
class
GasCoolingLosses
{
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
Definition
gas_cooling_losses.h:21
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:34
GasCoolingLosses::getHeatLoss
double getHeatLoss() const
Generated by
1.9.8