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
ReturnCondensateCalculationsDomain.h
1#pragma once
2
4#include <steamModeler/SteamSystemModelerTool.h>
5
7 public:
8 std::shared_ptr<FlashTank> condensateFlashTank;
9 SteamSystemModelerTool::FluidProperties returnCondensateFlashed;
10
11 friend std::ostream& operator<<(std::ostream& stream, const ReturnCondensateCalculationsDomain& domain) {
12 stream << "ReturnCondensateCalculationsDomain[" << "condensateFlashTank=" << domain.condensateFlashTank
13 << ", returnCondensateFlashed=" << domain.returnCondensateFlashed << "]";
14 return stream;
15 }
16};
17
Calculator for the flash tank for steam systems.