JGCRI / gcam-core

GCAM -- The Global Change Analysis Model
http://jgcri.github.io/gcam-doc/
Other
263 stars 159 forks source link

Extreme large H2 production cost for CCS related technologies #394

Closed Youyi77 closed 4 months ago

Youyi77 commented 4 months ago

Hi team,

I was running the reference scenario (default after download) and found that these CCS H2 production technologies are extremely high starting from 2020.

image

I went back and checked the NE costs for these CCS technologies in hydrogen.xml. They are within the normal range.

Wondering what could be the cause of these high values or is there any recommendations on which part I should go back to double check?

Thanks for any guidance on this!

pkyle commented 4 months ago

All CCS technologies are assigned extremely high costs if the CO2 price is zero. It's just a hack to avoid having the logit sharing equation allocate market share to these technologies when they're always more expensive than what they're competing against, in scenarios and time periods when there's no reason to be capturing the emissions. You can over-ride this just by reading in a nominal carbon price (e.g., 0.1 $/t in all periods). Or, if you compile your own code to build executables and are comfortable revising the C++, the relevant code that does this is in standard_capture_component.cpp, and power_plant_capture_component.cpp:

    if( carbonMarketPrice == Marketplace::NO_MARKET_PRICE || carbonMarketPrice == 0.0 ){
        return util::getLargeNumber();
    }
Youyi77 commented 4 months ago

Hi Page! Got it! That makes more sense. Thank you so much.