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
HeatExchangerCalculator.h
1#pragma once
2
3#include <memory>
4
5#include <steamModeler/api/BoilerInput.h>
6#include <steamModeler/domain/FluidPropertiesFactory.h>
8#include <steamModeler/HeatExchanger.h>
9
11 public:
12 std::shared_ptr<HeatExchanger::Output> calc(const BoilerInput& boilerInput, const Boiler& boiler,
13 const SteamSystemModelerTool::FluidProperties& makeupWaterAndMassFlow,
14 const std::shared_ptr<FlashTank>& blowdownFlashTank) const;
15
16 private:
17 const FluidPropertiesFactory fluidPropertiesFactory = FluidPropertiesFactory();
18};
19
Calculator for the flash tank for steam systems.