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#pragma once
2
3#include <memory>
4
6
8 public:
9 std::shared_ptr<FlashTank> mediumPressureCondensateFlashTank;
10
12 std::shared_ptr<FlashTank> highPressureCondensateFlashTank;
13
14 friend std::ostream& operator<<(std::ostream& stream,
16 stream << "LowPressureFlashedSteamIntoHeaderCalculatorDomain["
17 << "mediumPressureCondensateFlashTank=" << domain.mediumPressureCondensateFlashTank
18 << ", highPressureCondensateFlashTank=" << domain.highPressureCondensateFlashTank << "]";
19
20 return stream;
21 }
22};
23
Calculator for the flash tank for steam systems.