-
Notifications
You must be signed in to change notification settings - Fork 345
Add a FATES namelist option for land use transition logic #3728
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 6 commits
a5efb18
819a84e
caa106e
782c977
66189be
62e0961
a8fc8d1
08999a5
ef1ffc8
2a838fb
72a9074
3a176e5
0e02bcb
33c68e0
37ebbc7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2674,6 +2674,7 @@ lnd/clm2/surfdata_esmf/NEON/ctsm5.4.0/surfdata_1x1_NEON_TOOL_hist_2000_78pfts_c2 | |
| <fates_spitfire_mode use_fates=".true.">0</fates_spitfire_mode> | ||
| <fates_spitfire_mode use_fates=".true." use_fates_managed_fire=".true." >1</fates_spitfire_mode> | ||
| <fates_harvest_mode use_fates=".true.">no_harvest</fates_harvest_mode> | ||
| <fates_lu_transition_logic use_fates=".true.">4</fates_lu_transition_logic> | ||
| <fates_stomatal_model use_fates=".true.">ballberry1987</fates_stomatal_model> | ||
| <fates_stomatal_assimilation use_fates=".true.">net</fates_stomatal_assimilation> | ||
| <fates_leafresp_model use_fates=".true.">ryan1991</fates_leafresp_model> | ||
|
|
@@ -2697,6 +2698,15 @@ lnd/clm2/surfdata_esmf/NEON/ctsm5.4.0/surfdata_1x1_NEON_TOOL_hist_2000_78pfts_c2 | |
| <use_fates_luh use_fates=".true." use_fates_lupft=".true.">.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." use_fates_potentialveg=".true.">.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." >.false.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="1" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="2" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="3" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="4" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="5" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="6" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="7" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="8" >.true.</use_fates_luh> | ||
| <use_fates_luh use_fates=".true." fates_lu_transition_logic="9" >.true.</use_fates_luh> | ||
|
||
| <fates_parteh_mode use_fates=".true.">1</fates_parteh_mode> | ||
| <fates_seeddisp_cadence use_fates=".true.">0</fates_seeddisp_cadence> | ||
| <use_fates_nocomp use_fates=".true." use_fates_sp=".true." >.true.</use_fates_nocomp> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -945,6 +945,13 @@ which processes the raw land use data from the THEMIS tool data sets | |
| (https://doi.org/10.5065/29s7-7b41) | ||
| </entry> | ||
|
|
||
| <entry id="fates_lu_transition_logic" type="integer" category="physics" | ||
| group="clm_inparm" valid_values="1,2,3,4,5,6,7,8,9"> | ||
| Select the logic for land use class transitions. | ||
| Allowed values are 1-9. See the FATES user guide for an explanation of the options. | ||
| (Only relevant if FATES with land use is on) | ||
| </entry> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not currently in the FATES UG. And I didn't see documentation changes in the FATES PR for this (or is the FATES UG located in a different repo?). The FATES PR does point to Table 1 in this paper: https://gmd.copernicus.org/articles/13/3203/2020/ which does explain it. So pointing to that table might be the best thing here.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you are going for a principle of having the documentation in one place, which is a good goal. It's just that right now that place doesn't exist, so we need a source that can be looked up. It's also easier for users if it is in place and has more visibility. So it's more usable, but less maintainable. But, I also think this is a part that is unlikely to change -- except maybe on a future CMIP cycle. So even though it means duplicating some of this across HLM's the goal of making it easier for users might be OK Although another thing that could be considered is to tell the user what FATES Fortran code file to look at. Although that's again something that can be changed out from under the documentation here. So I'm not sure the best way of doing this.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think pointing the user to the FATES user's guide should be the most direct option. I added an issue to the FATES user's guide to make sure we get documentation on this there: NGEET/fates-users-guide#110
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks @glemieux , I will add changes to FATES documentation to your PR.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ekluzek we've updated the user's guide to describe the various options via NGEET/fates-users-guide#111. @JessicaNeedham added the table that corresponds to the valid values. |
||
|
|
||
| <entry id="use_luna" type="logical" category="physics" | ||
| group="clm_inparm" valid_values="" value=".false."> | ||
| Toggle to turn on the LUNA model, to effect Photosynthesis by leaf Nitrogen | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -332,6 +332,7 @@ module clm_varctl | |
| ! > 1 for external data (lightning and/or anthropogenic ignitions) | ||
| ! see bld/namelist_files/namelist_definition_clm4_5.xml for details | ||
| logical, public :: use_fates_managed_fire = .false. ! true => turn on managed fire | ||
| integer, public :: fates_lu_transition_logic = -9 ! controls logic around transition between land use classes | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does the code check and make sure it was changed from the default value of -9? And that it's within the right range in the Fortran code? The namelist scripts ensure it's between 1 and 9, but the Fortran code should as well.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've added a check in the CLMBuildNamelist to check for valid values: https://github.com/JessicaNeedham/ctsm/pull/4/changes#diff-c5398a7bf444c79516bff3ba46c0fcc5789d003af843d18b96448d2624d27b18 Is that accomplish what you're thinking about here @ekluzek? |
||
| logical, public :: use_fates_tree_damage = .false. ! true => turn on tree damage module | ||
| character(len=256), public :: fates_harvest_mode = '' ! five different harvest modes; see namelist definition | ||
| character(len=256), public :: fates_stomatal_model = '' ! stomatal conductance model, Ball-berry or Medlyn | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since, it's just an integer, it would be good to have a comment to explain that 4 means
"default value of ruleset 4 above means that plants are not cleared during land use change transitions to rangeland, whereas plants are cleared in transitions to pasturelands and croplands."
(taking language from the FATES PR)
Some of the other integer values I find more acceptable, because there's a smaller list, and for example fates_spitfire_mode has a natural progression. This one is more complex and needs an explaination.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @ekluzek, good idea. I've added a comment explaining what the default value means.