-
Notifications
You must be signed in to change notification settings - Fork 4
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 #226 from DrylandEcology/feature_vegestab
Resurrect "vegetation establishment" * `SOILWAT2` is updated to v6.7.0 which fixed vegetation establishment. * Functionality to calculate and output establishment/recruitment of species now works and is covered by tests (issue #225, @dschlaep). Note that this functionality assesses yearly the chances of species to recruit/establish based on simulated daily conditions; however, establishment/recruitment outcomes are not utilized to inform the simulation.
- Loading branch information
Showing
23 changed files
with
79 additions
and
37 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
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
Binary file not shown.
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
19 changes: 10 additions & 9 deletions
19
inst/extdata/example1/Input/bouteloua.estab → ...data/example1/Input/estab/bouteloua.estab
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 |
---|---|---|
@@ -1,18 +1,19 @@ | ||
bogr # 4-char name of species | ||
bogr # 4-char name of species | ||
3 # Vegetation type of species (0, trees; 1, shrubs; 2, forbs; 3 grasses) | ||
# soil layer parameters | ||
2 # number of layers affecting establishment | ||
10. # SWP (bars) requirement for germination (top layer) | ||
15. # SWP (bars) requirement for establishment (average of top layers) | ||
# timing parameters in days | ||
60 # first possible day of germination | ||
180 # last possible day of germination | ||
180 # last possible day of germination | ||
2 # min number of consecutive "wet" days for germination to occur | ||
40 # max number of consecutive "dry" days after germination allowing estab | ||
40 # max number of consecutive "dry" days after germination allowing estab | ||
5 # min number of consecutive "wet" days after germination before establishment | ||
15 # min number of days between germination and establishment | ||
75 # max number of days between germination and establishment | ||
15 # min number of days between germination and establishment | ||
75 # max number of days between germination and establishment | ||
# temperature parameters in C | ||
5. # min temp threshold for germination | ||
20. # max temp threshold for germination | ||
0. # min temp threshold for establishment | ||
20. # max temp threshold for establishment | ||
5. # min temp threshold for germination | ||
20. # max temp threshold for germination | ||
0. # min temp threshold for establishment | ||
20. # max temp threshold for establishment |
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
Submodule SOILWAT2
updated
11 files
+16 −0 | NEWS.md | |
+1 −1 | SW_Control.c | |
+2 −0 | SW_Control.h | |
+7 −10 | SW_Output.c | |
+1 −2 | SW_Output.h | |
+182 −60 | SW_VegEstab.c | |
+4 −2 | SW_VegEstab.h | |
+36 −0 | test/test_SW_VegEstab.cc | |
+3 −2 | testing/Input/estab.in | |
+10 −9 | testing/Input/estab/bouteloua.estab | |
+3 −2 | testing/Input/estab/bromus.estab |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.