From 61f47dd7798b5c1bc6a6a0716a9fcf7248520d83 Mon Sep 17 00:00:00 2001 From: Dylan Bolger Date: Sun, 9 Jun 2024 14:49:16 -0500 Subject: implement calculation endpoint --- app/utils/calculate/constants.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/utils/calculate/constants.py (limited to 'app/utils/calculate/constants.py') 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 -- cgit v1.2.3