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