Skip to content

Commit

Permalink
Merge pull request #1401 from orichters/pm_macSwitch
Browse files Browse the repository at this point in the history
set pm_macSwitch(emiMacMagpie) = 0 also for 45/NPi
  • Loading branch information
orichters authored Sep 11, 2023
2 parents 674d880 + d9e2d0d commit 99861eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### fixed
- fixed weights of energy carriers in `pm_IndstCO2Captured`
[[#1354](https://github.com/remindmodel/remind/pull/1354)]
- switch off MAgPIE emission abatement for 45/NPi realization
[[#1401](https://github.com/remindmodel/remind/pull/1401)]

## [3.2.1] - 2023-07-13 (incomplete)

Expand Down
3 changes: 2 additions & 1 deletion core/datainput.gms
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,8 @@ if(c_macscen eq 1,
*pm_macCostSwitch(enty)=pm_macSwitch(enty);

*** for NDC and NPi switch off landuse MACs
$if %carbonprice% == "NDC" pm_macSwitch(emiMacMagpie) = 0;
$if %carbonprice% == "NDC" pm_macSwitch(emiMacMagpie) = 0;
$if %carbonprice% == "NPi" pm_macSwitch(emiMacMagpie) = 0;
$if %carbonprice% == "NPi2018" pm_macSwitch(emiMacMagpie) = 0;

*DK* LU emissions are abated in MAgPIE in coupling mode
Expand Down
2 changes: 1 addition & 1 deletion main.gms
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ parameter
cm_iterative_target_adj = 0; !! def = 0 !! regexp = 0|2|3|4|5|6|7|9
*' * (0): no iterative adjustment
*' * (2): iterative adjustment II based on magicc calculated forcing (for both budget and tax runs), see modules/ 0 /magicc/postsolve.gms for direct algorithms of adjustment
*' * (3): [requires 45_carbonprice = "NDC" and emiscen = 9] iterative adjustment III for tax based on 2025 or 2030 regionally differentiated emissions, see module/45_carbonprice/<NDC/NPi2018>/postsolve.gms for algorithm of adjustment
*' * (3): [requires 45_carbonprice = "NDC" and emiscen = 9] iterative adjustment III for tax based on 2025 or 2030 regionally differentiated emissions, see module/45_carbonprice/NDC/postsolve.gms for algorithm of adjustment
*' * (4): iterative adjustment IV for both budget and tax runs based on CO2 FF&I emissions 2020-2100, see core/postsolve.gms for direct algorithms of adjustment
*' * (5): iterative adjustment V for both budget and tax runs based on CO2 emissions 2020-2100, see core/postsolve.gms for direct algorithms of adjustment
*' * (6): iterative adjustment VI for both budget and tax runs based on peak CO2 emissions budget, without changing temporal profile (i.e. with overshoot), see core/postsolve.gms for direct algorithms of adjustment
Expand Down

0 comments on commit 99861eb

Please sign in to comment.