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
SteamUseCalculator.h
1#pragma once
2
3#include <steamModeler/api/HeaderInput.h>
4#include <steamModeler/api/TurbineInput.h>
6
8 public:
9 double calc(const int headerCountInput, const HeaderWithHighestPressure& highPressureHeaderInput,
10 const std::shared_ptr<HeaderNotHighestPressure>& lowPressureHeaderInput,
11 const std::shared_ptr<HeaderNotHighestPressure>& mediumPressureHeaderInput,
12 const double deaeratorInletSteamMassFlow, const CondensingTurbine& condensingTurbineInput,
13 const std::shared_ptr<Turbine>& condensingTurbine) const;
14
15 private:
16 double calcProcessSteamUsage(const int headerCountInput, const HeaderWithHighestPressure& highPressureHeaderInput,
17 const std::shared_ptr<HeaderNotHighestPressure>& lowPressureHeaderInput,
18 const std::shared_ptr<HeaderNotHighestPressure>& mediumPressureHeaderInput) const;
19};
20
Calculator for turbines for steam systems.