-
Notifications
You must be signed in to change notification settings - Fork 371
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
Add a modified infiltration scheme in ELM to improve surface water dynamics #5974
Add a modified infiltration scheme in ELM to improve surface water dynamics #5974
Conversation
…s for NLDAS domain
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.
@donghuix I have a few minor comments for you to address.
call ncd_pio_openfile (ncid, locfn, 0) | ||
call ncd_io(ncid=ncid, varname='pc', flag='read', data=this%pc, dim1name=grlnd, readvar=readvar) | ||
if (.not. readvar) then | ||
this%pc(:) = 0.4 |
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.
Change 0.4
to 0.4_r8
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.
Using 0.4_r8
will result in non BFB to the master branch. That is because pc
is set to 0.4 in the master (Please see next reply).
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.
In that case, leave it as is. Thanks.
components/elm/src/external_models/emi/src/elm_stub/utils/clm_varcon.F90
Outdated
Show resolved
Hide resolved
Are all the input files for the test on the input data server? Will Also, urls can't go into the git log, so do you have a citation that could be used instead? |
@bishtgautam I addressed your comments in the new commit. However, I cannot add @peterdschwartz Yes, @bishtgautam has uploaded a calibrated ELM surface dataset to the input data server for the test case. @bishtgautam Can you confirm it?
I changed the urls to citation in the log. Please let me know if additional modifications are needed. Thanks! |
@donghuix I should have been more precise. When I merge your PR, I'll copy/paste your PR description at the top of this page as the merge commit message. So, I just need this researchgate url replaced with the citation
Thanks |
You can use the DOI https://doi.org/10.21203/rs.3.rs-2733749/v1 |
Tried to run the new test on chrysalis and the input file is not available for download..... @donghuix @bishtgautam |
The |
Tests show DIFFs in these tests:
Appear to be only due to the new history field added. Could put an if statement around the new history field addition with the new namelist flag ? |
I removed the new variable in the history field, as it is not needed. Let me know if it passes the test now. |
Yes it looks like the DIFFs are resolved. |
…n-scheme' into next (PR #5974) In default, the infiltration rate is the same for the non-water surface and surface water storage within the grid cell. This assumption results in a significant underestimation of surface water because the infiltration in the surface water storage is not constrained. In this PR, we introduced a modified infiltration scheme to constrain the infiltration in the surface water storage. The infiltration rate in the surface water storage is smaller than the infiltration rate in the non-water surface. More details about this new scheme and corresponding evaluations can be found in the preprint: https://doi.org/10.21203/rs.3.rs-2733749/v1 The manuscript is still under review. The new infiltration scheme can be turned by adding use_modified_infil = .true. in user_nl_elm. We passed all the tests in e3sm_land_developer test suite. We also created a test for the simulation of surface water dynamics with the new infiltration scheme and calibrated parameter for NLDAS domain: surface_water_dynamics. This test was added into e3sm_land_developer test suite. [BFB] [STEALTH]
merged to next |
merged to master. Will wait till tomorrow to bless pm test |
In default, the infiltration rate is the same for the non-water surface and surface water storage within the grid cell. This assumption results in a significant underestimation of surface water because the infiltration in the surface water storage is not constrained.
In this PR, we introduced a modified infiltration scheme to constrain the infiltration in the surface water storage. The infiltration rate in the surface water storage is smaller than the infiltration rate in the non-water surface. More details about this new scheme and corresponding evaluations can be found in the preprint: https://doi.org/10.21203/rs.3.rs-2733749/v1 The manuscript is still under review.
The new infiltration scheme can be turned by adding
use_modified_infil = .true.
inuser_nl_elm
.We passed all the tests in
e3sm_land_developer
test suite.We also created a test for the simulation of surface water dynamics with the new infiltration scheme and calibrated parameter for NLDAS domain:
surface_water_dynamics
. This test was added intoe3sm_land_developer
test suite.[BFB]