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
BoilerInput.h
1#pragma once
2
3#include <iostream>
4
9 public:
10 BoilerInput(double fuelType, double fuel, double combustionEfficiency, double blowdownRate, bool blowdownFlashed,
11 bool preheatMakeupWater, double steamTemperature, double deaeratorVentRate, double deaeratorPressure,
12 double approachTemperature);
13
14 friend std::ostream& operator<<(std::ostream& stream, const BoilerInput& bi);
15
16 double getFuelType() const;
17
18 double getFuel() const;
19
20 double getCombustionEfficiency() const;
21
22 double getBlowdownRate() const;
23
24 bool isBlowdownFlashed() const;
25
26 bool isPreheatMakeupWater() const;
27
28 double getSteamTemperature() const;
29
30 double getDeaeratorVentRate() const;
31
32 double getDeaeratorPressure() const;
33
34 double getApproachTemperature() const;
35
36 private:
37 double fuelType;
38 double fuel;
39 double combustionEfficiency;
40 double blowdownRate;
41 bool blowdownFlashed;
42 bool preheatMakeupWater;
43 double steamTemperature;
44 double deaeratorVentRate;
45 double deaeratorPressure;
46 double approachTemperature;
47};
48