other new tariffs

This commit is contained in:
Josh Deprez 2021-08-19 12:35:01 +10:00
parent 86e33d9b30
commit b480a70fda

View file

@ -4,14 +4,19 @@ import (
"time" "time"
) )
const dailySupplyCharge = 105.750 / 100 //const dailySupplyCharge = 105.750 / 100 // 1 July 2020 - 30 June 2021
const dailySupplyCharge = 98.234 / 100 // 1 July 2021 - 30 June 2022
var ( var (
//solarFeedInTariff = fixedTariff(8.471 / 100) // 1 July 2020 - 30 June 2021 //solarFeedInTariff = fixedTariff(8.471 / 100) // 1 July 2020 - 30 June 2021
solarFeedInTariff = fixedTariff(6.501 / 100) // 1 July 2021 - 30 June 2022 solarFeedInTariff = fixedTariff(6.501 / 100) // 1 July 2021 - 30 June 2022
tariff93 = &onOffPeakTariff{ tariff93 = &onOffPeakTariff{
onPeak: 32.137 / 100, // 1 July 2020 - 30 June 2021:
offPeak: 14.963 / 100, //onPeak: 32.137 / 100,
//offPeak: 14.963 / 100,
// 1 July 2021 - 30 June 2022:
onPeak: 29.852 / 100,
offPeak: 13.9 / 100,
isPeak: (&weekdayHours{ isPeak: (&weekdayHours{
zone: time.FixedZone("UTC+10", +10*60*60), zone: time.FixedZone("UTC+10", +10*60*60),
on: [24]bool{ on: [24]bool{