Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion core/bounds.gms
Original file line number Diff line number Diff line change
Expand Up @@ -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) = power(1.7, 5) * vm_cap.up("2025",regi,te,rlf); !! short-term upscaling limit based on recent growth rates in EUR
);
);

Expand Down