-
Dear magpie community, I would like to run magpie under different scenarios. Should I only change the settings for the two main drivers of the model below?
I also noticed that some other parameters also have scenario options. For example: cfg$gms$c70_feed_scen <- "ssp2" If what I mentioned above is right, do I need to change them as well or keep the default setting (ssp2)? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
In case you mean different SSP scenarios, have a look at the We also have a |
Beta Was this translation helpful? Give feedback.
-
The code snippet you pasted in principle could work (I did not test it) but
While this is true, you should always be careful of not setting for example a SSP3 food demand for SSP2 population and gdp development.
We do not need to, the
This will not be correct (conceptually at least). In case you want to set up a model run like this, you have to be careful and explicit in describing your scenario setup and model assumptions. |
Beta Was this translation helpful? Give feedback.
The code snippet you pasted in principle could work (I did not test it) but
setScenario(cfg,c(ssp))
already takes care of setting the right switch forcfg$gms$c15_food_scenario
so that line is not needed.While this is true, you should always be careful of not setting for example a SSP3 food demand for SSP2 population and gdp development.
We do not need to, the
scenario_config.csv
file summarizes the places where SSP specific changes need to be made. You …