forked from magpiemodel/magpie
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request magpiemodel#510 from pfuehrlich-pik/develop
magpie release 4.6.3
- Loading branch information
Showing
62 changed files
with
801 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,8 +125,8 @@ authors: | |
email: [email protected] | ||
|
||
title: MAgPIE - An Open Source land-use modeling framework | ||
version: 4.6.2 | ||
date-released: 2023-01-12 | ||
version: 4.6.3 | ||
date-released: 2023-01-19 | ||
repository-code: https://github.com/magpiemodel/magpie | ||
keywords: | ||
- landuse | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,8 @@ https://www.pik-potsdam.de/research/projects/activities/land-use-modelling/magpi | |
A framework description paper has been published in | ||
Geoscientific Model Development (GMD): https://doi.org/10.5194/gmd-12-1299-2019 | ||
|
||
The model documentation for version 4.6.2 can be found at | ||
https://rse.pik-potsdam.de/doc/magpie/4.6.2/ | ||
The model documentation for version 4.6.3 can be found at | ||
https://rse.pik-potsdam.de/doc/magpie/4.6.3/ | ||
|
||
A most recent version of the documentation can also be extracted from the | ||
model source code via the R package goxygen | ||
|
@@ -188,7 +188,7 @@ [email protected] | |
Please contact [email protected] | ||
|
||
## CITATION | ||
See file CITATION.cff or the [How-to-Cite section](https://rse.pik-potsdam.de/doc/magpie/4.6.2/#how-to-cite) in the model documentation for information how to cite the model. | ||
See file CITATION.cff or the [How-to-Cite section](https://rse.pik-potsdam.de/doc/magpie/4.6.3/#how-to-cite) in the model documentation for information how to cite the model. | ||
|
||
## AUTHORS | ||
See list of authors in CITATION.cff | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,21 +5,19 @@ | |
*** | MAgPIE License Exception, version 1.0 (see LICENSE file). | ||
*** | Contact: [email protected] | ||
|
||
$ifthen "%c30_bioen_type%" == "all" bioen_type_30(kbe30) = yes; | ||
$else bioen_type_30("%c30_bioen_type%") = yes; | ||
$endif | ||
|
||
$ifthen "%c30_bioen_water%" == "all" bioen_water_30(w) = yes; | ||
$else bioen_water_30("%c30_bioen_water%") = yes; | ||
$endif | ||
|
||
*' @code | ||
*' First, all 2nd generation bioenergy area is fixed to zero, irrespective of type and | ||
*' rainfed/irrigation. | ||
vm_area.fx(j,kbe30,w)=0; | ||
*' Second, the bounds for 2nd generation bioenergy area are released depending on | ||
*' the dynamic sets bioen_type_30 and bioen_water_30. | ||
vm_area.up(j,bioen_type_30,bioen_water_30)=Inf; | ||
*' SSP2 default settings are used for the historic period. | ||
if(m_year(t) <= sm_fix_SSP2, | ||
vm_area.up(j,kbe30,"rainfed") = Inf; | ||
else | ||
vm_area.up(j,bioen_type_30,bioen_water_30) = Inf; | ||
); | ||
|
||
*' @stop | ||
|
||
*' No penalties or fallows exist in this realization | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.