Skip to content
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

I want to change the global solar resource for each time period. How do I do that? #472

Open
Rishabhvarma25 opened this issue Sep 19, 2024 · 1 comment

Comments

@Rishabhvarma25
Copy link

I am trying to look at a scenario where the global temperature changes in future and it affects the total solar potential of a region. The change in solar potential is based on various calculation done out of the model which includes changing climate factors. Till now I have only used the model to change the solar potential which is fixed for all time periods, but for this exercise I want to change the Solar potential for each time period. How do i do that in GCAM?

@Rishabhvarma25 Rishabhvarma25 changed the title I want to change the global solar resource for each time period. How do i do that? I want to change the global solar resource for each time period. How do I do that? Sep 19, 2024
@pkyle
Copy link
Contributor

pkyle commented Sep 20, 2024

The way solar power production is represented in GCAM is not very amenable to this sort of change. The model does not track the flow of energy from the sun into a solar panel; rather, the PV technologies are represented by their power output, and the total costs of producing the power. One of the key input assumptions that determines this cost is the capacity factor, which is currently region-specific but is not assumed to vary over time. One could easily revise that assumption, by increasing the capacity factor over time in order to represent more power production per unit of installed capacity, which will lower the levelized costs of electricity production. That said, the model is not well set up to represent the increased power output of an installed base. Increasing the capacity factor over time will make the technology more competitive (for the structrure just see the electricity_water.xml file and search for the string capacity-factor), and allow it to gain more market share, but in GCAM an existing stock of capital would not similarly change over time. There is a survival curve that is assigned to each cohort, but the functional form that is used for the survival curve does not allow for an increase in output from the initial level. There is a parameter called exogenous-shutdown-decider in the more recent versions of the model that does allow a user to prescribe the output of an individual cohort over time; each future year in which a cohort is operating can be assigned a multiplier called output-scalar. I don't know if the multiplier is allowed to exceed 1, but if that works then that could allow a user to increase the electricity output of a cohort over time. Here is what the XML looks like:

                    <period year="2015">
                        <s-curve-shutdown-decider delete="1" name="s-curve"/>
                        <exogenous-shutdown-decider name="exogenous-shutdown">
                            <output-scalar year="2015">1</output-scalar>
                            <output-scalar year="2020">0.38</output-scalar>
                            <output-scalar year="2025">0.48</output-scalar>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants