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
OperationsInput.h
1#ifndef TOOLS_SUITE_OPERATIONSINPUT_H
2#define TOOLS_SUITE_OPERATIONSINPUT_H
3
4#include <iostream>
5
10 public:
11 OperationsInput(double sitePowerImport, double makeUpWaterTemperature, double operatingHoursPerYear,
12 double fuelCosts, double electricityCosts, double makeUpWaterCosts);
13
14 friend std::ostream& operator<<(std::ostream& stream, const OperationsInput& oi);
15
16 double getSitePowerImport() const;
17
18 double getMakeUpWaterTemperature() const;
19
20 double getOperatingHoursPerYear() const;
21
22 double getFuelCosts() const;
23
24 double getElectricityCosts() const;
25
26 double getMakeUpWaterCosts() const;
27
28 private:
29 double sitePowerImport;
30 double makeUpWaterTemperature;
31 double operatingHoursPerYear;
32 double fuelCosts;
33 double electricityCosts;
34 double makeUpWaterCosts;
35};
36
37#endif // TOOLS_SUITE_OPERATIONSINPUT_H