From 0e243c9e493505c41c876614d6a94c2099dc3782 Mon Sep 17 00:00:00 2001 From: tabeado Date: Mon, 27 Jul 2026 10:16:25 +0200 Subject: [PATCH 1/2] biochar 2030 bounds --- core/bounds.gms | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/bounds.gms b/core/bounds.gms index f213705ff..035964b55 100755 --- a/core/bounds.gms +++ b/core/bounds.gms @@ -315,7 +315,8 @@ loop(teBiopyr(te) $ (not sameas(te, "biopyrliq")), !! established industrial tec vm_cap.up("2020",regi,te,rlf) = p_boundCapBiochar("2020",regi) * sm_tBC_2_TWa / 3; vm_cap.lo("2025",regi,te,rlf) = p_boundCapBiochar("2025",regi) * sm_tBC_2_TWa / 3; !! set upper bound to 70% above the lower bound which is based on 2024 values - vm_cap.up("2025",regi,te,rlf) = 1.7 * p_boundCapBiochar("2025",regi) * sm_tBC_2_TWa / 3; + vm_cap.up("2025",regi,te,rlf) = 1.7 * p_boundCapBiochar("2025",regi) * sm_tBC_2_TWa / 3; + vm_cap.up("2030",regi,te,rlf) = (1.7)**5 * vm_cap.up("2025",regi,te,rlf); !! short-term upscaling limit based on recent growth rates in EUR ); ); From 779d691a04e0668c847ebd085605e558812c25ae Mon Sep 17 00:00:00 2001 From: Tabea Dorndorf <117268634+tabeado@users.noreply.github.com> Date: Mon, 27 Jul 2026 10:49:17 +0200 Subject: [PATCH 2/2] rewriting Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- core/bounds.gms | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bounds.gms b/core/bounds.gms index 035964b55..19cc37f71 100755 --- a/core/bounds.gms +++ b/core/bounds.gms @@ -316,7 +316,7 @@ loop(teBiopyr(te) $ (not sameas(te, "biopyrliq")), !! established industrial tec vm_cap.lo("2025",regi,te,rlf) = p_boundCapBiochar("2025",regi) * sm_tBC_2_TWa / 3; !! set upper bound to 70% above the lower bound which is based on 2024 values vm_cap.up("2025",regi,te,rlf) = 1.7 * p_boundCapBiochar("2025",regi) * sm_tBC_2_TWa / 3; - vm_cap.up("2030",regi,te,rlf) = (1.7)**5 * vm_cap.up("2025",regi,te,rlf); !! short-term upscaling limit based on recent growth rates in EUR + vm_cap.up("2030",regi,te,rlf) = power(1.7, 5) * vm_cap.up("2025",regi,te,rlf); !! short-term upscaling limit based on recent growth rates in EUR ); );