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
HighToMediumPrvCalculator.h
1#pragma once
2
3#include <steamModeler/api/HeaderInput.h>
4#include <steamModeler/api/TurbineInput.h>
6#include <steamModeler/PRV.h>
7#include <steamModeler/SteamSystemModelerTool.h>
9
10#include "steamModeler/service/PrvCalculator.h"
11
13 public:
14 const std::shared_ptr<PrvWithoutDesuperheating>
15 calc(const HeaderWithHighestPressure& highPressureHeaderInput,
16 const std::shared_ptr<HeaderNotHighestPressure>& mediumPressureHeaderInput,
17 const PressureTurbine& highToLowTurbineInput, const PressureTurbine& highToMediumTurbineInput,
18 const CondensingTurbine& condensingTurbineInput, const std::shared_ptr<Turbine>& highToLowPressureTurbine,
19 const std::shared_ptr<Turbine>& highToMediumPressureTurbine, const std::shared_ptr<Turbine>& condensingTurbine,
20 const Boiler& boiler, const SteamSystemModelerTool::FluidProperties& highPressureHeaderOutput) const;
21
22 private:
23 const PrvCalculator prvCalculator = PrvCalculator();
24};
25
Calculator for boiler.
Calculator for the steam properties after after a pressure drop for steam systems.
Calculator for turbines for steam systems.