forked from ESCOMP/CTSM
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'ctsm5.1.dev074' into cn-matrix_v3
Introducing new option to solve below ground decomposition: MIMICSWieder2015. The old option (CENTURYKoven2013) remains available. User will select one or the other via the namelist variable soil_decomp_method. Elin's MIMICS+ github issue relates: ESCOMP#1260. MIMICS spinup issues relate and are listed in caveats for users. Conflicts: src/biogeochem/CNDriverMod.F90 src/biogeochem/CNGapMortalityMod.F90 src/biogeochem/CNVegCarbonFluxType.F90 src/biogeochem/CNVegNitrogenStateType.F90 src/main/clm_varpar.F90 src/soilbiogeochem/SoilBiogeochemCarbonFluxType.F90 src/soilbiogeochem/SoilBiogeochemCarbonStateType.F90 src/soilbiogeochem/SoilBiogeochemDecompCascadeBGCMod.F90 src/soilbiogeochem/SoilBiogeochemDecompMod.F90 src/soilbiogeochem/SoilBiogeochemNitrogenStateType.F90
- Loading branch information
Showing
45 changed files
with
2,209 additions
and
249 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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
paramfile = '/glade/p/cesm/cseg/inputdata/lnd/clm2/paramdata/ctsm51_params.c210827.nc' | ||
paramfile = '/glade/p/cesm/cseg/inputdata/lnd/clm2/paramdata/ctsm51_ciso_cwd_hr_params.c211112.nc' | ||
hist_fincl1 = 'CWDC_HR','C13_CWDC_HR','C14_CWDC_HR','CWD_HR_L2','CWD_HR_L2_vr','CWD_HR_L3','CWD_HR_L3_vr' |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
This test mod turns on the MIMICS instead of the CENTURY below-ground | ||
biogeochemistry. | ||
|
||
As of 2021/11/15 this test inherits mods from the ../coldStart directory; | ||
however the plan is to change that to ../default when we have an acceptable | ||
spun up finidat file to initialize MIMICS with. |
1 change: 1 addition & 0 deletions
1
cime_config/testdefs/testmods_dirs/clm/mimics/include_user_mods
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../coldStart |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
soil_decomp_method = 'MIMICSWieder2015' |
8 changes: 8 additions & 0 deletions
8
cime_config/testdefs/testmods_dirs/clm/newton_krylov_spinup/README
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
slevis 2022/2/1: | ||
This testmod tests the newton_krylov_spinup usermod found in | ||
cime_config/usermods_dirs/newton_krylov_spinup | ||
combined with the mimics testmod. | ||
|
||
By default this usermod runs for 20 yrs and writes a history file at that | ||
time. To save time running the test-suite, we're changing | ||
hist_nhtfrq = 0,-43800 (from 0,-175200) |
2 changes: 2 additions & 0 deletions
2
cime_config/testdefs/testmods_dirs/clm/newton_krylov_spinup/include_user_mods
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
../mimics | ||
../../../../usermods_dirs/newton_krylov_spinup |
1 change: 1 addition & 0 deletions
1
cime_config/testdefs/testmods_dirs/clm/newton_krylov_spinup/user_nl_clm
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
hist_nhtfrq = 0,-43800 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
user_nl_clm contains this line: | ||
hist_nhtfrq = 0,-175200 | ||
0 means monthly history frequency and | ||
-175200 means 20 years history frequency (indicated in hours) |
3 changes: 3 additions & 0 deletions
3
cime_config/usermods_dirs/newton_krylov_spinup/shell_commands
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
./xmlchange CLM_FORCE_COLDSTART="on" | ||
|
15 changes: 15 additions & 0 deletions
15
cime_config/usermods_dirs/newton_krylov_spinup/user_nl_clm
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
hist_dov2xy = .true.,.false. | ||
hist_nhtfrq = 0,-175200 | ||
hist_mfilt = 1,1 | ||
hist_fincl2 = 'FPI_vr', 'K_PAS_SOM', 'K_SLO_SOM', 'K_ACT_SOM', | ||
'K_CWD', 'K_CEL_LIT', 'K_LIG_LIT', 'K_MET_LIT', | ||
'CWD_PATHFRAC_L2_vr', 'CWD_RESP_FRAC_L2_vr', | ||
'CWD_PATHFRAC_L3_vr', 'CWD_RESP_FRAC_L3_vr', | ||
'L1_PATHFRAC_S1_vr', 'L1_RESP_FRAC_S1_vr', | ||
'L2_PATHFRAC_S1_vr', 'L2_RESP_FRAC_S1_vr', | ||
'L3_PATHFRAC_S2_vr', 'L3_RESP_FRAC_S2_vr', | ||
'S1_PATHFRAC_S2_vr', 'S1_RESP_FRAC_S2_vr' | ||
'S1_PATHFRAC_S3_vr', 'S1_RESP_FRAC_S3_vr' | ||
'S2_PATHFRAC_S1_vr', 'S2_RESP_FRAC_S1_vr' | ||
'S2_PATHFRAC_S3_vr', 'S2_RESP_FRAC_S3_vr' | ||
'S3_PATHFRAC_S1_vr', 'S3_RESP_FRAC_S1_vr' |
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
Oops, something went wrong.