chrisroadmap / ar6

Figure and data generation for Chapter 7 of the IPCC's Sixth Assessment Report, Working Group 1 (plus assorted other contributions)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing anthropogenic forcing definition in 245

rguilcas opened this issue · comments

In Notebook 245, the anthropogenic part of the forcing is missing in the forcing[scenario] dictionaries.
Probably missing something like the total forcing:

for scenario in scenarios:
forcing[scenario]['total'] = (
forcing[scenario]['co2'] +
forcing[scenario]['ch4'] +
forcing[scenario]['n2o'] +
forcing[scenario]['other_wmghg'] +
forcing[scenario]['o3'] +
forcing[scenario]['h2o_stratospheric'] +
forcing[scenario]['contrails'] +
forcing[scenario]['aerosol-radiation_interactions'] +
forcing[scenario]['aerosol-cloud_interactions'] +
forcing[scenario]['bc_on_snow'] +
forcing[scenario]['land_use'] +
forcing[scenario]['solar'] +
forcing[scenario]['volcanic']
)

Hey, did you solve this in the end or is this still an issue?

Hey! This is still an issue in your notebook. I solved it by adding a similar block to the total forcing without volcanoes and solar forcing:

for scenario in scenarios:
forcing[scenario]['anthro'] = (
forcing[scenario]['co2'] +
forcing[scenario]['ch4'] +
forcing[scenario]['n2o'] +
forcing[scenario]['other_wmghg'] +
forcing[scenario]['o3'] +
forcing[scenario]['h2o_stratospheric'] +
forcing[scenario]['contrails'] +
forcing[scenario]['aerosol-radiation_interactions'] +
forcing[scenario]['aerosol-cloud_interactions'] +
forcing[scenario]['bc_on_snow'] +
forcing[scenario]['land_use']
)

Cool, if you want to make a pull request with the right changes in the notebook I can run it and merge it in if it works

Ok, I will try ! Not so sure how to do it, but tell me if it works!