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
HighPressureFlashTankCalculator.h
1#pragma once
2
3#include <steamModeler/api/HeaderInput.h>
4#include <steamModeler/domain/FlashTankFactory.h>
6#include <steamModeler/SteamSystemModelerTool.h>
7
9 public:
10 const std::shared_ptr<FlashTank> calc(const int headerCountInput,
11 const std::shared_ptr<HeaderNotHighestPressure>& mediumPressureHeaderInput,
12 const std::shared_ptr<HeaderNotHighestPressure>& lowPressureHeaderInput,
13 const SteamSystemModelerTool::FluidProperties& highPressureCondensate) const;
14
15 private:
16 const FlashTankFactory flashTankFactory = FlashTankFactory();
17};
18
Calculator for the flash tank for steam systems.