Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
-

### fixed
- **62_material** fixed inconsistency for historical bioplastic substrate demand
- **21_trade** included trade costs into exo realization
- **default.cfg** input data upgraded to rev4.120 to use corrected clusters using aligned population data

Expand Down
2 changes: 1 addition & 1 deletion config/default.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cfg$model <- "main.gms" #def = "main.gms"

# which input data sets should be used?
cfg$input <- c(regional = "rev4.121_h12_magpie.tgz",
cellular = "rev4.121_h12_fd712c0b_cellularmagpie_c200_MRI-ESM2-0-ssp370_lpjml-8e6c5eb1.tgz",
cellular = "rev4.121_h12_1b5c3817_cellularmagpie_c200_MRI-ESM2-0-ssp245_lpjml-8e6c5eb1.tgz",
validation = "rev4.121_h12_validation.tgz",
additional = "additional_data_rev4.63.tgz",
calibration = "calibration_H12_FAO_13Aug25.tgz")
Expand Down
2 changes: 1 addition & 1 deletion modules/62_material/exo_flexreg_apr16/presolve.gms
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ p62_scaling_factor(i)$(p62_dem_food_lastcalibyear(i) > 0) = sum(kfo, vm_dem_food
* it in the final biomass demand equation.
if (sum(sameas(t_past,t),1) = 1,
p62_bioplastic_substrate_double_counted(t,i,kall) = p62_bioplastic_substrate(t,i,kall);
p62_bioplastic_substrate_lastcalibyear(i,kall) = p62_bioplastic_substrate(t,i,kall);
p62_bioplastic_substrate_lastcalibyear(i,kall) = min(p62_bioplastic_substrate(t,i,kall), f62_dem_material(t,i,kall));
else
if (s62_include_bioplastic = 0,
p62_bioplastic_substrate_double_counted(t,i,kall) = 0;
Expand Down