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
LowPressureHeaderCalculator.h
1#pragma once
2
3#include <steamModeler/domain/FluidPropertiesFactory.h>
4#include <steamModeler/domain/HeaderFactory.h>
5#include <steamModeler/domain/LowPressureFlashedSteamIntoHeaderCalculatorDomain.h>
6#include <steamModeler/SteamSystemModelerTool.h>
7
9 public:
11 calc(const int headerCountInput, const std::shared_ptr<HeaderNotHighestPressure>& lowPressureHeaderInput,
12 const PressureTurbine& highToLowTurbineInput, const PressureTurbine& mediumToLowTurbineInput,
13 const BoilerInput& boilerInput, const std::shared_ptr<PrvWithoutDesuperheating>& lowPressurePrv,
14 const std::shared_ptr<FlashTank>& blowdownFlashTank,
15 const LowPressureFlashedSteamIntoHeaderCalculatorDomain& lowPressureFlashedSteamIntoHeaderCalculatorDomain,
16 const HighPressureHeaderCalculationsDomain& highPressureHeaderCalculationsDomain,
17 const std::shared_ptr<MediumPressureHeaderCalculationsDomain>& mediumPressureHeaderCalculationsDomain) const;
18
19 private:
20 const FluidPropertiesFactory fluidPropertiesFactory = FluidPropertiesFactory();
21 const HeaderFactory headerFactory = HeaderFactory();
22};
23