|
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.
|
Water reduction calculations for treasure hunt measures. More...
Classes | |
| struct | BucketMethodData |
| Input data for the bucket measurement method. More... | |
| struct | MeteredFlowMethodData |
| Input data for the metered flow measurement method. More... | |
| struct | VolumeMeterMethodData |
| Input data for the volume meter measurement method. More... | |
| struct | WaterOtherMethodData |
| Input data for the other (direct consumption) measurement method. More... | |
| struct | WaterReductionInput |
| Input data for a single water reduction measure. More... | |
| struct | WaterReductionOutput |
| Output data for a water reduction calculation. More... | |
Enumerations | |
| enum class | WaterReductionMeasurementMethod { Metered = 0 , Volume = 1 , Bucket = 2 , Other = 3 } |
Functions | |
| WaterReductionOutput | waterReduction (const std::vector< WaterReductionInput > &input_vec) |
| Calculates total annual water use and cost for a collection of water reduction measures. | |
| WaterReductionOutput | meteredFlowReduction (const MeteredFlowMethodData &data, int operating_hours, double water_cost) |
| Calculates annual water use and cost using the metered flow method. | |
| WaterReductionOutput | volumeMeterReduction (const VolumeMeterMethodData &data, int operating_hours, double water_cost) |
| Calculates annual water use and cost using the volume meter method. | |
| WaterReductionOutput | bucketReduction (const BucketMethodData &data, int operating_hours, double water_cost) |
| Calculates annual water use and cost using the bucket measurement method. | |
| WaterReductionOutput | otherReduction (const WaterOtherMethodData &data, double water_cost) |
| Calculates annual water use and cost using a directly supplied consumption value. | |
Provides a function-based API for estimating annual water use and cost savings for water reduction measures identified during an energy treasure hunt or water efficiency assessment. Supports four measurement methods: metered flow, volume meter, bucket, and other.
|
strong |
Definition at line 80 of file water_reduction.h.