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
EnergyFlowCalculator.h
1#ifndef TOOLS_SUITE_ENERGYFLOWCALCULATOR_H
2#define TOOLS_SUITE_ENERGYFLOWCALCULATOR_H
3
5#include <steamModeler/SteamSystemModelerTool.h>
6
8 public:
9 double calc(const double massFlow, const Boiler& boiler) const;
10
11 double calc(const double massFlow,
12 const SteamSystemModelerTool::SteamPropertiesOutput& steamPropertiesOutput) const;
13
14 double calc(const double massFlow, const double specificEnthalpy) const;
15};
16
17#endif // TOOLS_SUITE_ENERGYFLOWCALCULATOR_H
Calculator for boiler.