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
PowerBalanceCheckerCalculationsDomain.h
1#pragma once
2
3#include <memory>
4
5#include <steamModeler/SteamSystemModelerTool.h>
6
7#include "LowPressureVentedSteamCalculationsDomain.h"
8
10 public:
11 double steamBalance;
12 std::shared_ptr<LowPressureVentedSteamCalculationsDomain> lowPressureVentedSteamCalculationsDomain;
13 std::shared_ptr<SteamSystemModelerTool::FluidProperties> lowPressureVentedSteam;
14
15 friend std::ostream& operator<<(std::ostream& stream, const PowerBalanceCheckerCalculationsDomain& domain) {
16 stream << "PowerBalanceCheckerCalculationsDomain[" << "steamBalance=" << domain.steamBalance
17 << ", lowPressureVentedSteamCalculationsDomain=" << domain.lowPressureVentedSteamCalculationsDomain
18 << ", lowPressureVentedSteam=" << domain.lowPressureVentedSteam << "]";
19 return stream;
20 }
21};
22