Skip to content
Open
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
11 changes: 8 additions & 3 deletions GrasslandModels/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .phenograss import PhenoGrass, PhenoGrassNDVI
from .choler2011 import CholerPR1, CholerPR2, CholerPR3
from .choler2011_modified import CholerMPR2, CholerMPR3
from .choler2011 import CholerPR1, CholerPR2, CholerPR3, CholerPR1Gcc, CholerPR2Gcc, CholerPR3Gcc
from .choler2011_modified import CholerMPR2, CholerMPR3, CholerMPR2Gcc, CholerMPR3Gcc
from .choler2010 import CholerM1A, CholerM1B, CholerM2A, CholerM2B
from .naive import Naive, Naive2, NaiveMAPCorrected, Naive2MAPCorrected

Expand All @@ -18,5 +18,10 @@
'Naive',
'Naive2',
'NaiveMAPCorrected',
'Naive2MAPCorrected'
'Naive2MAPCorrected',
'CholerPR1Gcc',
'CholerPR2Gcc',
'CholerPR3Gcc',
'CholerMPR2Gcc',
'CholerMPR3Gcc',
]
4 changes: 2 additions & 2 deletions GrasslandModels/models/choler2010.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _apply_model_numpy(self,

# Contraints on vegetation.
Vmin = 0.001, # Needs to be small non-zero value
Vmax = 1., # 100% cause GCC is scaled 0-1
Vmax = 0.99, # 100% cause GCC is scaled 0-1
# Note in the original Choler 2010 paper, Vmax is a site
# specific value set to the maximum value observed at a site.
# This is not feasable for extrapolation though.
Expand Down Expand Up @@ -177,7 +177,7 @@ def _apply_model_numpy(self,

# Contraints on vegetation.
Vmin = 0.001, # Needs to be small non-zero value
Vmax = 1., # 100% cause GCC is scaled 0-1
Vmax = 0.99, # 100% cause GCC is scaled 0-1
# Note in the original Choler 2010 paper, Vmax is a site
# specific value set to the maximum value observed at a site.
# This is not feasable for extrapolation though.
Expand Down
Loading