Skip to content

Commit

Permalink
Merge pull request #1823 from fschreyer/SmallDevs
Browse files Browse the repository at this point in the history
Add Adjustment Cost to Synthetic Fuel/Gas Technologies and adapt adjustment cost of electrolysis and centralized heat pumps
  • Loading branch information
fschreyer committed Oct 1, 2024
2 parents b2c730d + f349cf1 commit 500462f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- moved to edgeTransport 2.0 version [[#1749](https://github.com/remindmodel/remind/pull/1749)]
- **scripts** in readCheckScenarioConfig(), do not automatically remove path_gdx_bau if allegedly 'not needed'
[[#1809](https://github.com/remindmodel/remind/pull/1809)]
- **core** changed adjustment cost of geohe (central heat pumps), elh2 (electrolysis), MeOH (FT-Synthesis: H2-to-Liquids)
and h22ch4 (methanation: H2-to-Gas) to better reflect upscaling dynamics
[[#1823](https://github.com/remindmodel/remind/pull/1823)]

### added
- **50_damages**, **51_internalizeDamages** add KotzWenz realization based on Kotz & Wenz (2024)
Expand Down
11 changes: 9 additions & 2 deletions core/datainput.gms
Original file line number Diff line number Diff line change
Expand Up @@ -1187,11 +1187,13 @@ loop(ttot$(ttot.val ge 2005),
p_adj_seed_te(ttot,regi,'dac') = 0.25;
p_adj_seed_te(ttot,regi,'oae_ng') = 0.25;
p_adj_seed_te(ttot,regi,'oae_el') = 0.25;
p_adj_seed_te(ttot,regi,'geohe') = 0.33;
$ifthen.cm_subsec_model_steel "%cm_subsec_model_steel%" == "processes"
p_adj_seed_te(ttot,regi,"bfcc") = 0.05;
p_adj_seed_te(ttot,regi,"idrcc") = 0.05;
$endif.cm_subsec_model_steel
p_adj_seed_te(ttot,regi,"elh2") = 0.5;
p_adj_seed_te(ttot,regi,"MeOH") = 0.5;
p_adj_seed_te(ttot,regi,"h22ch4") = 0.5;

*RP: for comparison of different technologies:
*** pm_conv_cap_2_MioLDV <- 650 # The world has slightly below 800million cars in 2005 (IEA TECO2), so with a global vm_cap of 1.2, this gives ~650
Expand Down Expand Up @@ -1219,7 +1221,6 @@ $endif.cm_subsec_model_steel
p_adj_coeff(ttot,regi,"spv") = 0.15;
p_adj_coeff(ttot,regi,"windon") = 0.25;
p_adj_coeff(ttot,regi,"windoff") = 0.35;
p_adj_coeff(ttot,regi,"geohe") = 0.6;
$ifthen.cm_subsec_model_steel "%cm_subsec_model_steel%" == "processes"
p_adj_coeff(ttot,regi,"bfcc") = 1.0;
p_adj_coeff(ttot,regi,"idrcc") = 1.0;
Expand All @@ -1230,6 +1231,12 @@ $endif.cm_subsec_model_steel
p_adj_coeff(ttot,regi,'oae_el') = 0.8;
p_adj_coeff(ttot,regi,teGrid) = 0.3;
p_adj_coeff(ttot,regi,teStor) = 0.05;

p_adj_coeff(ttot,regi,"elh2") = 0.5;
p_adj_coeff(ttot,regi,"MeOH") = 0.5;
p_adj_coeff(ttot,regi,"h22ch4") = 0.5;


);

***Rescaling adj seed and coeff if adj cost multiplier switches are on
Expand Down
1 change: 1 addition & 0 deletions modules/39_CCU/on/sets.gms
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ enty(enty_ccu39) = YES;
te(te_ccu39) = YES;
se2se(se2se_ccu39) = YES;
teSe2rlf(teCCU2rlf) = YES;
teAdj(te_ccu39) = YES;

*** EOF ./modules/39_CCU/on/sets.gms

0 comments on commit 500462f

Please sign in to comment.