-
Notifications
You must be signed in to change notification settings - Fork 41
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
Attribute waste emissions to energy-related emissions of sectors based on historical shares and remove waste emissions variables from energy-related emissions taxonomy #641
Conversation
…|+|...) and attribute them to energy supply and demand sectors. Plastic waste incineration emissions are attributed based on historical IEA shares of sectoral waste flows. Non-plastic waste emissions are attributed to the industry sector.
A challenge that I see is that the fix for NAVIGATE and similar for AR6 will then yield the wrong result. But I would also prefer not to take it out because ideally piamInterfaces yields correct results also with older mif files. The a bit ugly solution I see is subtracting Then, after the next release is out, of course, kick these fixes all out. |
I would challenge this statement. They are removed from the automated summation checks, but the plus-notation does not constitute a taxonomy. Not in my view, and I expect not in the view of people only "consuming" REMIND output, which usually never see any variables with the plus-notation. Is my understanding correct that the |
I agree with Michaja on this one. We have such variables sometimes, such Which leads me to the question why it is |
Yes.
Sounds like a larger project.
Not sure I understand this right. So, you would like to rename Generally, people "consuming" REMIND mif-files without pluses (or without knowing what they mean) can, in theory, anyways only guess taxonomies. Like from the naming structure they would not know that they should not add up
The power of choosing variable names when there is no standard. |
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.
For checking the sectoral contributions, sectoral waste emissions variables were added. In case of industry, waste plastic emissions were accounted to the "Other Industry" sector. This is a simplification but given the small contributions of waste emissions overall, a further subdivision of waste emission into industry sectors does not appear to be necessary.
I think this is severely skewing the emissions and emission intensities of the industry subsectors, especially early on, where people in e.g. the ARIADNE project will look closest.
EU27_NZ_CCS100Mt 2025 | DEU (Mt) | DEU (%) | World (Mt) | World (%) |
---|---|---|---|---|
Cement | 12.0 | 9.5 % | 821 | 9.8 % |
Chemicals | 32.5 | 26 % | 1634 | 19 % |
Steel | 30.5 | 24 % | 2201 | 26 % |
Other Industry | 32.8 | 26 % | 2965 | 35 % |
Waste | 18.7 | 15 % | 795 | 9.4 % |
Other Industry + Waste | 51.5 | 41 % | 3760 | 45 % |
All waste is deemed to be solids (OK), but Other Industry is the subsector with the second lowest share of solids use. The most likely candidate would be Cement in my view, which is known to gobble up everything that is cheap and burns. Even steel throws some old tyres into blast furnaces. So this is something that might come back to bite us.
What is troublesome analytically is that there is no energy flow associated with Emi|CO2|Energy|Demand|Industry|Other Industry|Solids|+|Waste. I know it is beyond the scope of this fix, but this is skewing the carbon intensity of the Other Industry sector, which will require extra work to sort out if somebody is looking at that.
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.
Sounds plausible. So we have to live with mapping fixes for a while, but we will survive that.
… of solids in total industry solids
Attribution of waste emissions to industry subsectors is now based on sectoral solids share in total industry solids to minimize the issues raised above. |
The change addresses this issue by attributing the newly introduced waste emissions in REMIND to sectors via a post-processing in the reportEmi() function. Waste emissions are thereby removed from taxonomy of energy emissions (variables with
+
), such that e.g.Emi|CO2|Energy|+|Waste (Mt CO2/yr)
becomesEmi|CO2|Energy|Waste (Mt CO2/yr)
.The attribution to sectors happens in the following way:
Emi|CO2|Energy|Waste|Plastics Incineration
is distributed acrossSupply|Electricity
,Supply|Heat
,Demand|Industry
andDemand|Buildings
based on 2019 historical shares of waste energy use of the sectors from IEA data (derived by this function from @fbenke-pik ).Emi|CO2|Energy|Waste|Feedstocks unknown fate (Mt CO2/yr)
is attributed to industry in line with the accounting we had before the explicit feedstocks implementation. It refers to emissions from non-plastic materials. Note that accounting of these emissions is currently switched off in REMIND by default (cm_feedstockEmiUnknownFate is off) such that this only applies if chosen intentionally. In case of industry, waste emissions were attributed to subsectors (steel, cement etc.) by the FE solids share of a subsector in total industry solids.These are the reported waste emissions variables with this change:
It was checked that all variable summations affected by this change are fulfilled. Moreover, waste emissions were added to the cs2 plots.
See example scenario plots:
/p/projects/ariadne/remind/compScen-Check_WasteEmi_Reporting-2024-08-12_13.56.28-H12.pdf
.Tagging @robinhasse and @orichters fyi.