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
exhaust_gas_EAF.h
Go to the documentation of this file.
1
13#ifndef TOOLS_SUITE_EXHAUSTGASEAF_H
14#define TOOLS_SUITE_EXHAUSTGASEAF_H
15
22 public:
33 ExhaustGasEAF(const double offGasTemp, const double CO, const double H2, const double combustibleGases,
34 const double vfr, const double dustLoading)
35 : offGasTemp(offGasTemp), CO(CO), H2(H2), combustibleGases(combustibleGases), vfr(vfr),
36 dustLoading(dustLoading) {}
37
38 double getTotalHeatExhaust();
39
40 private:
41 const double offGasTemp, CO, H2, combustibleGases, vfr, dustLoading;
42};
43
44#endif // TOOLS_SUITE_EXHAUSTGASEAF_H
ExhaustGasEAF(const double offGasTemp, const double CO, const double H2, const double combustibleGases, const double vfr, const double dustLoading)