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
HeatLossFactory.h
1#ifndef TOOLS_SUITE_HEATLOSSFACTORY_H
2#define TOOLS_SUITE_HEATLOSSFACTORY_H
3
4#include <steamModeler/api/HeaderInput.h>
5
6#include "steamModeler/Header.h"
8
10 public:
11 const HeatLoss make(const HeaderWithHighestPressure& highestPressureHeaderInput,
12 const SteamSystemModelerTool::FluidProperties& headerOutput) const;
13
14 const HeatLoss make(const std::shared_ptr<HeaderNotHighestPressure>& notHighestPressureHeaderInput,
15 const SteamSystemModelerTool::FluidProperties& headerOutput) const;
16
17 const HeatLoss make(const SteamSystemModelerTool::FluidProperties& headerOutput,
18 const double percentHeatLoss) const;
19};
20
21#endif // TOOLS_SUITE_HEATLOSSFACTORY_H
Calculator for the heat loss for steam systems.