Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
flohump committed Jun 4, 2024
1 parent 11a5680 commit 48c1208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/32_forestry/dynamic_may24/presolve.gms
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ v32_land_reduction.fx(j,type32,ac_est) = 0;
* Suitable area (`p32_aff_pot`) for NPI/NDC afforestation
p32_aff_pot(t,j) = sum((kcr,w),vm_area.l(j,kcr,w) - vm_area.lo(j,kcr,w)) + (vm_land.l(j,"past") - vm_land.lo(j,"past")) - pm_land_conservation(t,j,"other","restore");
*** NDC/NPI re/afforesation is further constrained by the remaining forest establishment potential
p32_aff_pot(t,j)$(p32_aff_pot(t,j) > pcm_max_forest_est(j)) = pcm_max_forest_est(j);
p32_aff_pot(t,j)$(p32_aff_pot(t,j) > pcm_max_forest_est(t,j)) = pcm_max_forest_est(t,j);
* suitable area `p32_aff_pot` can be negative, if land restoration is switched on (level smaller than lower bound), therefore set negative values to 0
p32_aff_pot(t,j)$(p32_aff_pot(t,j) < 0) = 0;
* Limit prescribed NPI/NDC afforestation in `p32_aff_pol_timestep` if not enough suitable area (`p32_aff_pot`) for afforestation is available
Expand Down

0 comments on commit 48c1208

Please sign in to comment.