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
LowPressureFlashedSteamIntoHeaderCalculatorDomain.h
1#ifndef TOOLS_SUITE_LOWPRESSUREFLASHEDSTEAMINTOHEADERCALCULATORDOMAIN_H
2#define TOOLS_SUITE_LOWPRESSUREFLASHEDSTEAMINTOHEADERCALCULATORDOMAIN_H
3
4#include <memory>
5
7
9 public:
10 std::shared_ptr<FlashTank> mediumPressureCondensateFlashTank;
11
13 std::shared_ptr<FlashTank> highPressureCondensateFlashTank;
14
15 friend std::ostream& operator<<(std::ostream& stream,
17 stream << "LowPressureFlashedSteamIntoHeaderCalculatorDomain["
18 << "mediumPressureCondensateFlashTank=" << domain.mediumPressureCondensateFlashTank
19 << ", highPressureCondensateFlashTank=" << domain.highPressureCondensateFlashTank << "]";
20
21 return stream;
22 }
23};
24
25#endif // TOOLS_SUITE_LOWPRESSUREFLASHEDSTEAMINTOHEADERCALCULATORDOMAIN_H
Calculator for the flash tank for steam systems.