diff options
| author | Dylan Bolger <dylan.bolger00@gmail.com> | 2024-06-09 14:49:16 -0500 |
|---|---|---|
| committer | Dylan Bolger <dylan.bolger00@gmail.com> | 2024-06-09 14:49:16 -0500 |
| commit | 61f47dd7798b5c1bc6a6a0716a9fcf7248520d83 (patch) | |
| tree | 83208de160bd8dc5214cfcb7f3821ef54e54f7ae /app/utils/calculate/constants.py | |
| parent | afb2cd37ceb8bff93fcc94be81b7e32b80dd95c0 (diff) | |
| download | city-utilities-restful-wrapper-61f47dd7798b5c1bc6a6a0716a9fcf7248520d83.tar.xz city-utilities-restful-wrapper-61f47dd7798b5c1bc6a6a0716a9fcf7248520d83.zip | |
implement calculation endpointcalculate
Diffstat (limited to 'app/utils/calculate/constants.py')
| -rw-r--r-- | app/utils/calculate/constants.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/utils/calculate/constants.py b/app/utils/calculate/constants.py new file mode 100644 index 0000000..dfd2646 --- /dev/null +++ b/app/utils/calculate/constants.py @@ -0,0 +1,26 @@ +# Electric +## Residental + +electric_residential_base = 12.50 +electric_residential_per_kwh = 0.0585 + +# October to May +winter_demand_per_kwh = 0.0453 # First 900 kWH +winter_demand_extended_per_kwh = 0.0355 # After the first 900 kWh + +# June to September +summer_demand_per_kwh = 0.0453 # First 500 kWh +summer_demand_extended_per_kwh = 0.0683 # After the first 500 kWh + +# Water +## Residental + +water_residential_base = 19.60 # 19.25 + 0.35? + +# October to May +winter_demand_per_ccf = 2.97 + +# June to September +summer_demand_initial_per_ccf = 2.97 # First 5 CCF +summer_demand_secondary_per_ccf = 3.64 # For the next 10 CCF +summer_demand_extended_per_ccf = 4.32 # For any more CCF |
