diff --git a/CHANGELOG.md b/CHANGELOG.md index bb93209f9..69416f8c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/core/datainput.gms b/core/datainput.gms index db30a704f..cc1fca607 100644 --- a/core/datainput.gms +++ b/core/datainput.gms @@ -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 diff --git a/main.gms b/main.gms index 234fcc629..22e37a621 100755 --- a/main.gms +++ b/main.gms @@ -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//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