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
HeatExchangerCalculator.h
1#ifndef TOOLS_SUITE_HEATEXCHANGERCALCULATOR_H
2#define TOOLS_SUITE_HEATEXCHANGERCALCULATOR_H
3
4#include <memory>
5
6#include <steamModeler/api/BoilerInput.h>
7#include <steamModeler/domain/FluidPropertiesFactory.h>
9#include <steamModeler/HeatExchanger.h>
10
12 public:
13 std::shared_ptr<HeatExchanger::Output> calc(const BoilerInput& boilerInput, const Boiler& boiler,
14 const SteamSystemModelerTool::FluidProperties& makeupWaterAndMassFlow,
15 const std::shared_ptr<FlashTank>& blowdownFlashTank) const;
16
17 private:
18 const FluidPropertiesFactory fluidPropertiesFactory = FluidPropertiesFactory();
19};
20
21#endif // TOOLS_SUITE_HEATEXCHANGERCALCULATOR_H
Calculator for the flash tank for steam systems.