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
RestarterService.h
1#ifndef TOOLS_SUITE_RESTARTERSERVICE_H
2#define TOOLS_SUITE_RESTARTERSERVICE_H
3
4#include <memory>
5
8
13 public:
14 void restartIfNotEnoughSteam(const std::shared_ptr<Turbine>& turbine, const double availableMassFlow,
15 const Boiler& boiler) const;
16
17 void restartIfNotEnoughSteam(const double additionalSteamNeeded, const Boiler& boiler) const;
18
19 private:
20 void logMessage(const std::string& message) const;
21};
22
23#endif // TOOLS_SUITE_RESTARTERSERVICE_H
Calculator for boiler.
Calculator for turbines for steam systems.