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
FlashTankFactory.h
1#pragma once
2
3#include <steamModeler/api/BoilerInput.h>
4#include <steamModeler/api/HeaderInput.h>
7#include <steamModeler/Header.h>
8
10 public:
11 std::shared_ptr<FlashTank> make(const HeaderInput& headerInput, const BoilerInput& boilerInput,
12 const Boiler& boiler) const;
13
14 FlashTank make(const double pressure, const Boiler& boiler) const;
15
16 FlashTank make(const double pressure, const SteamSystemModelerTool::FluidProperties& condensate) const;
17
18 FlashTank make(const std::shared_ptr<Header>& header,
19 const std::shared_ptr<HeaderNotHighestPressure>& headerNotHighestPressure) const;
20
21 FlashTank make(const SteamSystemModelerTool::FluidProperties& properties) const;
22};
23
Calculator for boiler.
Calculator for the flash tank for steam systems.