-
Notifications
You must be signed in to change notification settings - Fork 49
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
Expanding the data format structure of region to allow specifying three regions #318
Conversation
Expanding the data format structure of region to allow specifying three regions
Describing the change more accurately.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dear @MohElabbas could you please include some more details, and some examples with figures so that I can understand what you really need. i am sorry but with only this description it is not clear to me what you want to do
@sandrinecharousset, Let me first explain the context and then let's see if the description is clear or not. Let's say the interconnection between France and Spain has a flow of 500 MW. InfraCost will determine the agents responsible for this flow and how much each agent is contributing. For example, let's say the generators in Paris are responsible for 400 MW on this line and the generators in Berlin are responsible for 100 MW on this line. Then, the results will include: | model | scenario | region | variable | unit | subannual | 2015 | Based on this flow contribution of each region to the different interconnections, the model will also give the cost contribution of this region to the different interconnections. |
Adding new variables for InfraCost outputs
I have added four new variables to represent the output of InfraCost. These four variables will require specifying three regions, according to the proposed suggestion above or any other way. Please check the consistency of the variables' names and descriptions. |
Many thanks @MohElabbas this is clear now :-) |
@@ -28,13 +28,27 @@ | |||
- Network|Electricity|Active Power Flow: | |||
description: Active power flow through a line | |||
unit: MW | |||
- Network|Electricity|Active Power Flow Generation Contribution: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it really possible to identify a specific generator is contributing? I understand from your explanation that this is the share of power flow in the interconnection which is coming from a specific region (maybe produced in yet another one, bought and then sold through this interconnector?) I would remove the word Generation and keep only Active Power flox contribution. (if I have understood well your explanation), and write in the description sth like 'share of the flow in the interconnection region1>region2 which is sent from region3
- Network|Electricity|Active Power Flow Generation Contribution: | ||
description: The active power flow that a generator is causing on a line | ||
unit: MW | ||
- Network|Electricity|Active Power Flow Demand Contribution: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this the share of the flow in interconnector region1>region2 which is caused by power demand in region3?
- Network|Electricity|Generation Allocated Investment: | ||
description: Overnight investment (capital) cost in a transmission line of the | ||
power network allocated to a generator based on its electrical usage | ||
unit: [thousand EUR_2020/yr, thousand USD_2010/yr] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Who is really going to pay for this? I wouldn't think it is the generator, no? More the entity who is using the interco to send electricity from region 3 to somewhere via region1>region2 interco?
definitions/region/README.md
Outdated
@@ -142,6 +142,22 @@ Example: | |||
|
|||
> Norway>Germany | |||
|
|||
To represent data that refers to a flow or cost contribution of a region |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the readme should be updated with the explanations in the comments.
After looking at the variables I am not sure ... I understand that what you want to report is who are the responsible for the flow in an interco (and thus ask them to pay for it). The 'region' field is then region3:region1>region2 ; second part is clear, it is describing the interco frm region1 to region2. Region3 is not clear from the different variables and comments. Is it the region where the energy is produced? |
@sandrinecharousset Let me explain more about what the model does so that you can make sense of the variables (please also refer to the model description in the model catalogue if you want more details and see a simple example of the model application). The model traces all the physical flows in the network from where they start, i.e., their source/generation, to where they end, i.e., their sink/demand. Therefore, the flow on a line (not necessarily an interconnection but any line) will be attributed to both demand and generation. Now, I used the word "region" because my understanding is that this is the terminology for describing the spatial dimension, however, the model, in fact, works at the nodal or agent level, and then you can do whatever aggregation you want (region-wise, zone-wise, country-wise, TSO-wise...etc) but you still need to indicate whether this aggregation is an aggregation of demand nodes/agents or generation nodes/agents. That's why the variables (be it flow or cost) need to specify whether it is a demand or generation. |
Dear @MohElabbas now it is completely clear |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest to change the variable-name to better reflect the hierarchical nature of the variables, and to use an already-existing region-name in the example.
Fixing the Readme description and the variable hierarchy according to the received comments.
I have updated the PR according to the received comments. Please let me know if you see anything else that needs changing. Many thanks. |
Thanks, this looks good to me from a variable-naming structure and we can add the three-part-region modifications for your use case. @sandrinecharousset, are you satisfied with the documentation and description of variables? |
Included a more accurate hierarchy for the new variables.
@danielhuppmann I have made some slight modifications to the variable structure after discussing with Luis. Could you please re-check them? Thank you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you Mohamed for all the explanations and interesting discussion
Now it is all clear to me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @MohElabbas
@@ -142,6 +142,18 @@ Example: | |||
|
|||
> Norway>Germany | |||
|
|||
To represent data that refers to a flow or cost contribution of a generator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To represent data that refers to a flow or cost contribution of a generator | |
To represent data that refers to a flow or cost allocated to a generator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I understood well, there is an allocation of responsibilities in the flow of a particular transmission line here. Then, the word cost allocated is more precise.
Updated the README.md of region to describe the expansion we need to implement to the region definition so that we can integrate the output of InfraCost.
Please check the proposed expansion of the data format structure of region and advise on how to implement it.
With due thanks.