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