forked from ESCOMP/CTSM
-
Notifications
You must be signed in to change notification settings - Fork 1
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.3.008' into matrixcnon-no-include
PPE change to sa_leaf in CanopyFluxesMod.F90 Add change to sa_leaf that was in PPE branch but did not get on master. Larger than roundoff changes in answers are explained in this post ESCOMP#2777 (comment) and the diagnostics are here https://webext.cgd.ucar.edu/I2000/ctsm53n04ctsm52028_f09_saleaf/lnd/ctsm53n04ctsm52028_f09_saleaf_2000_2001_2004-ctsm53n04ctsm52028_f09_2000_2001_2004/setsIndex.html
- Loading branch information
Showing
26 changed files
with
732 additions
and
370 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
16 changes: 14 additions & 2 deletions
16
cime_config/testdefs/testmods_dirs/clm/Hillslope/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 |
---|---|---|
@@ -1,7 +1,19 @@ | ||
./xmlchange CLM_BLDNML_OPTS="-bgc sp" | ||
DIN_LOC_ROOT=$(./xmlquery --value DIN_LOC_ROOT) | ||
meshfile=$DIN_LOC_ROOT/lnd/clm2/testdata/ESMFmesh_10x15_synthetic_cosphill_1.0.nc | ||
./xmlchange ATM_DOMAIN_MESH=${meshfile},LND_DOMAIN_MESH=${meshfile} | ||
|
||
# Set hillslope_file. Needed for any grids without default hillslope_file already set by CTSM. | ||
lnd_grid=$(./xmlquery --value LND_GRID) | ||
if [[ ${lnd_grid} == "10x15" ]]; then | ||
# Synthetic data | ||
hillslope_file='$DIN_LOC_ROOT/lnd/clm2/testdata/surfdata_10x15_hist_1850_78pfts_c240216.synth_hillslopes_241001.nc' | ||
elif [[ ${lnd_grid} == "5x5_amazon" ]]; then | ||
# Real data | ||
hillslope_file='/glade/derecho/scratch/samrabin/hillslopes_5x5_amazon/hand_analysis_global/combined/hilldata_5x5_amazon_hist_2000_78pfts_c240216.nc' | ||
else | ||
echo "ERROR: Hillslope file not found for LND_GRID=${lnd_grid}" >&2 | ||
exit 1 | ||
fi | ||
echo -e "hillslope_file = '${hillslope_file}'\n" >> user_nl_clm | ||
|
||
# -ignore_warnings is needed as long as we don't allow use_hillslope and use_init_interp together | ||
./xmlchange --append CLM_BLDNML_OPTS=-ignore_warnings |
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.