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
MassFlowCalculator.h
1#pragma once
2
3#include <steamModeler/api/HeaderInput.h>
4
6 public:
7 double calcInitialMassFlow(const HeaderInput& headerInput) const;
8
9 double calc(const HeaderWithHighestPressure& header) const;
10
11 double calc(const std::shared_ptr<HeaderNotHighestPressure>& header) const;
12
13 double calc(const double processSteamUsage, const double condensationRecoveryRate) const;
14
15 double addToMassFlow(const std::string& objectName, double massFlow, const double mediumProcessSteamUsage) const;
16};
17