Git Product home page Git Product logo

Comments (23)

MattJeanes avatar MattJeanes commented on September 20, 2024 2

Thanks for your feedback, it seems clear this would be useful to lots of people!

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024 2

Thank you for the info everyone, this is gonna take some effort to do but it seems clear that it's worth doing 😄

from teslamateagile.

nunofgs avatar nunofgs commented on September 20, 2024 1

In my case it’s actually the same for all energy providers in Portugal. It’s what they call the “weekly dual-schedule tariff”. If I were to change energy providers, the hours would stay the same.

Since it’s not provider specific, there very well may be an API somewhere. I’ll look into it and report back if I find one.

from teslamateagile.

robinbrisa avatar robinbrisa commented on September 20, 2024 1

We also have this kind of pricing here in France with EDF.

from teslamateagile.

adjego avatar adjego commented on September 20, 2024 1

In the Netherlands you also have weekend/evening rates and working day peak rates.

Two (standard) types in NL:

  • Peak rate from 7:00 - 21:00 on weekdays -> all the rest is off-peak, so from 21:00 - 7:00 on weekdays and from friday 21:00 till monday 7:00.
  • Peak rate from 7:00 - 23:00 on weekdays -> all the rest is off-peak, so from 23:00 - 7:00 on weekdays and from friday 23:00 till monday 7:00.

from teslamateagile.

epmatsw avatar epmatsw commented on September 20, 2024 1

As another example, Denver also now has this structure: https://co.my.xcelenergy.com/s/billing-payment/residential-rates/time-of-use-pricing

Times (weekdays, non-holidays):

On-Peak is 3 p.m. -7 p.m.
Mid-Peak is 1 p.m.-3 p.m.
Off-Peak is 7 p.m.- 1 p.m.

Winter Prices:

On-Peak = 17 cents per kWh
Mid-Peak = 14 cents per kWh
Off-Peak = 10 cents per kWh

Summer Prices:

On-Peak = 28 cents per kWh
Mid-Peak = 19 cents per kWh
Off-Peak = 10 cents per kWh

from teslamateagile.

arcdigital avatar arcdigital commented on September 20, 2024 1

In California we have rate plans with separate weekend + summer/winter pricing as well

https://www.sce.com/sites/default/files/inline-files/TOU-D-PRIME_Fact_Sheet_0320_WCAG.pdf

from teslamateagile.

itsmjeu avatar itsmjeu commented on September 20, 2024 1

Hm this could be added yes but this seems like a very atypical use case. Do you know if your energy provider provides some kind of endpoint or API to retrieve this data?

No in fact is very common and usual at least for national holidays and weekend prices, we also have it in Belgium

Would also be great to have a start or end date of the rate in case you move the provider for example

from teslamateagile.

bryhall avatar bryhall commented on September 20, 2024 1

Also adding my vote to this request. I'm in California. Time of Use (ToU) rates differ between weekdays/weekends, as well as Summer/Winter. As an example, here are the various ToU rates for Southern California Edison: https://www.sce.com/residential/rates/Time-Of-Use-Residential-Rate-Plans

from teslamateagile.

SirSheik avatar SirSheik commented on September 20, 2024 1

Hello.
I don't know if it will be simpler or more complicated. But I would like to suggest the idea that the price could be read from a MQTT topic.
I don't know what you think.
Thank you very much for this project.
Best regards

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

Hm this could be added yes but this seems like a very atypical use case. Do you know if your energy provider provides some kind of endpoint or API to retrieve this data?

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

Okay cool let me know, I think this is a relatively unusual scenario but it may be worth adding if they don't have some kind of API for this.

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

Closing due to inactivity

from teslamateagile.

panaut0lordv avatar panaut0lordv commented on September 20, 2024

In Poland a tariff that one would use for EV charging can be also somewhat like @nunofgs shows (would be named G12w) or a simplified scenario G12 would be as follows:

Winter (1.10. – 31.03.):
22-6 - offpeak (half the price of regular G11 which is a single fixed price for all times)
6-13 - regular (slightly more expensive than G11)
13-15 - offpeak
15-22 - regular

Summer (1.04. – 30.09.):
22-6 - offpeak
6-15 - regular
15-17 - offpeak
17-22 - regular

As you might have guessed I'm on such a tariff and I'm preparing for having EV so if we can add optional conditions apart from hours to also check dates and days of the week would be great. I might be able to provide you with some sort of PoC if you point me to code lines that do the schedule check.

Cheers!

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

Hm, okay! I think I'll re-open this then!

from teslamateagile.

loganfuller avatar loganfuller commented on September 20, 2024

I'd also be interested in this. In my area (Kitchener-Waterloo in Ontario, Canada) we have three tiers of time of use rates plus a separate off-peak rate that is applied all weekend.

from teslamateagile.

khorton avatar khorton commented on September 20, 2024

Wisconsin also has different rates on the weekend and specific holidays if you opt into Three-Tier Time-of-Use, and the timings for the various rates vary with between summer and winter. Sadly, they don't seem to provide an API.

from teslamateagile.

kinteseay avatar kinteseay commented on September 20, 2024

Did this feature e er get implemented?

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

It has not yet been implemented, apologies

from teslamateagile.

goncal avatar goncal commented on September 20, 2024

Also in Spain, most electricity providers have the following billing structure:

Mo-Fri:
00:00-08:00: Price3
08:00-10:00: Price2
10:00-14:00: Price1
14:00-18:00: Price2
18:00-22:00: Price1
22:00-24:00: Price2
Sat-Sun (and national holidays):
00:00-24:00: Price3 (For the sake of simplicity I would exclude the case of national holidays in the implementation)

Where Price1 < Price2 < Price3

Thus, also here, it would be very useful to have the possibility to specify different prices for different weekdays.

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

I think the main issue with real-time feeds is that the charge is ultimately not calculated in real-time and needs access to historical data, so I'm not too sure MQTT would be the right approach for this.

This is on my radar by the way, but I don't have a lot of free time unfortunately these days. I'm always open to contributors if someone wants to give it a crack before I get to it!

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

Hey, so I've had an idea which I've written down in another issue that could solve this, at least, if you have Home Assistant or are willing to set it up

Let me know what you think: #35 (comment)

from teslamateagile.

MattJeanes avatar MattJeanes commented on September 20, 2024

v1.12.0 has now been released with support for Home Assistant, configurable lookback days and more which will allow you to create your own pricing as advanced as you like using Home Assistant. This is the currently recommended approach for advanced scenarios that the FixedPrice provider cannot handle.

I may re-visit this at some point and provide native support for this so you don't need Home Assistant, but I do not see that happening soon (without someone else submitting a PR anyway😉) so I am going to close this issue.

from teslamateagile.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.