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
HighPressureHeaderModeler.h
1#pragma once
2
3#include <steamModeler/api/HeaderInput.h>
4#include <steamModeler/api/TurbineInput.h>
6#include <steamModeler/domain/HeatLossFactory.h>
7#include <steamModeler/domain/HighPressureHeaderCalculationsDomain.h>
9#include <steamModeler/SteamSystemModelerTool.h>
11
12#include "CondensingTurbineCalculator.h"
13#include "HighPressureCondensateCalculator.h"
14#include "HighPressureFlashTankCalculator.h"
15#include "HighPressureHeaderCalculator.h"
16#include "HighToLowSteamTurbineCalculator.h"
17#include "HighToMediumSteamTurbineCalculator.h"
18
20 public:
22 model(const int headerCountInput, const HeaderWithHighestPressure& highPressureHeaderInput,
23 const std::shared_ptr<HeaderNotHighestPressure>& mediumPressureHeaderInput,
24 const std::shared_ptr<HeaderNotHighestPressure>& lowPressureHeaderInput,
25 const PressureTurbine& highToMediumTurbineInput, const PressureTurbine& highToLowTurbineInput,
26 const CondensingTurbine& condensingTurbineInput, const Boiler& boiler) const;
27
28 HighToMediumSteamTurbineCalculationsDomain calcHighToMediumSteamTurbine(
29 const int headerCountInput, const HeaderWithHighestPressure& highPressureHeaderInput,
30 const std::shared_ptr<HeaderNotHighestPressure>& mediumPressureHeaderInput,
31 const std::shared_ptr<HeaderNotHighestPressure>& lowPressureHeaderInput,
32 const PressureTurbine& highToMediumTurbineInput, const PressureTurbine& highToLowTurbineInput,
33 const CondensingTurbine& condensingTurbineInput, const Boiler& boiler,
34 const SteamSystemModelerTool::FluidProperties& highPressureHeaderOutput,
35 const std::shared_ptr<Turbine>& condensingTurbine, const std::shared_ptr<Turbine>& highToLowPressureTurbine,
36 const std::shared_ptr<Turbine>& highToLowPressureTurbineIdeal) const;
37
38 private:
39 const CondensingTurbineCalculator condensingTurbineCalculator = CondensingTurbineCalculator();
40 const FluidPropertiesFactory fluidPropertiesFactory = FluidPropertiesFactory();
41 const HeatLossFactory heatLossFactory = HeatLossFactory();
42 const HighPressureCondensateCalculator highPressureCondensateCalculator = HighPressureCondensateCalculator();
43 const HighPressureFlashTankCalculator highPressureFlashTankCalculator = HighPressureFlashTankCalculator();
44 const HighPressureHeaderCalculator highPressureHeaderCalculator = HighPressureHeaderCalculator();
45 const HighToLowSteamTurbineCalculator highToLowSteamTurbineCalculator = HighToLowSteamTurbineCalculator();
46 const HighToMediumSteamTurbineCalculator highToMediumSteamTurbineCalculator = HighToMediumSteamTurbineCalculator();
47};
48
Calculator for boiler.
Calculator for the flash tank for steam systems.
Calculator for turbines for steam systems.