-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split between individual and aggregated load profiles is not always practical #1528
Comments
@grdw can you pick this up? |
An other option is that the difference between individual and aggregated profiles is just defined in the name of the profile. So, not all profiles can be used for all numbers of households. Like it is for water heating. I prefer this option. |
We could make this way more easy. The easiest way would be getting rid of the |
I'm not sure of the best solution, but I absolutely agree with this. We can't apply one set of rules to the normal interface and another to CSVs, otherwise things will break in unpredictable ways when you try to edit these LESes. I, too, wish we could get rid of the CSV import (export is fine). It might be useful to know in which ways editing a CSV is easier than the normal technology editor, and try to improve it until the CSV import feature is no longer needed. That's a bit off-topic though... |
It's worth noting that there is a difference between the individual and aggregated household technologies other than the profiles that may be chosen. Individual households (<31 units) permit use of the "postponing" strategy, while aggregated households use "saving". An individual household technology (<31 units) with an "aggregated" profile will still use the "postponing" strategy.
I think this may be the right way to go. When importing a new scenario from ETE we could apply the same approach as we do today: <31 units = individual, ≥31 = aggregated. If the user wants to override that by manually adding an aggregated household with only 20 units, or an individual household with 40, why not let them? |
Sounds good to me |
Good ideas everybody!
Let's do it! 👍 |
I am currently exploring this issue and @ChaelKruip came with a really great suggestion. He suggested to determine the behavior based on the chosen So that way I assume there will only be a single |
The exact technology behavior is determined by InstalledTechnology#behavior_with_curve: base_load = InstalledTechnology.new(type: 'base_load')
base_load.behavior_with_curve(:inflex)
# => "generic"
base_load.behavior_with_curve(:flex)
# => "deferrable" (aka postponing)
# ---------------
base_load_edsn = InstalledTechnology.new(type: 'base_load_edsn')
base_load_edsn.behavior_with_curve(:inflex)
# => "generic"
base_load_edsn.behavior_with_curve(:flex)
# => "optional" (aka saving) I'm a bit on the fence about this. It would definitely be a easier from the user's perspective to not have to choose between "individual" and "aggregated", but changing the technology behavior by selecting a different profile does feel a bit "magic" and not obvious. We'd have to add a table/columns so that you could select which strategy applies when uploading base load profiles, and add a special case inside InstalledTechnology to trigger the correct behavior in the network calculation. At the moment the technology behavior is defined in the YAML file, but now we have to special-case some technologies and profiles? Its easy for a user, but is it simple? |
I also agree with this. ⚖ |
I'm also not convinced about this solution to be honest. |
Allright I think we should keep the distinction between a |
So, what would happen if someone chooses an individual ( Or the other way around: would the postpone strategy applied to aggregated (edsn) profiles try to postpone the flexible part of the aggregated profile? Both wouldn't work as the flexible parts of the two types of profiles are very different. What I think would be perhaps more robust is that we allow the user to adjust the number of units of either the base_load or base_load_edsn technology importing without applying the threshold automatically. Still keeping the profiles exclusive for each technology. |
You can't pick an individual profile for a |
Current situation:
Currently for <31 units an individual load profile for electricity has to be selected.
For >30 households an aggregated profile has to be selected.
Problem:
There are cases when I want to assign an aggregated profile to <31 households.
For example when I have different end nodes to represent different stakeholders. But, on the network these nodes are connected to one transformer. In this case the individual profiles are way too spiky.
Possible solutions:
The text was updated successfully, but these errors were encountered: