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