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
HighPressureCondensateCalculator.h
1#pragma once
2
3#include <steamModeler/api/HeaderInput.h>
5#include <steamModeler/domain/FluidPropertiesFactory.h>
6#include <steamModeler/service/EnergyFlowCalculator.h>
7#include <steamModeler/service/MassFlowCalculator.h>
8#include <steamModeler/SteamSystemModelerTool.h>
9
11 public:
12 const SteamSystemModelerTool::FluidProperties calc(const HeaderWithHighestPressure& highPressureHeaderInput,
13 const Boiler& boiler) const;
14
15 private:
16 const EnergyFlowCalculator energyFlowCalculator = EnergyFlowCalculator();
17 const FluidPropertiesFactory fluidPropertiesFactory = FluidPropertiesFactory();
18 const MassFlowCalculator massFlowCalculator = MassFlowCalculator();
19};
20
Calculator for boiler.