How to change the soil depth in e3sm-2.1.0? #5954
Replies: 3 comments
-
@bishtgautam any advice on this? |
Beta Was this translation helpful? Give feedback.
-
@LianGong98, The z-value at the centroid of the soil layer ( |
Beta Was this translation helpful? Give feedback.
-
@bishtgautam I was trying some tests with ELM-FATES to address #7297, and updated the code above to the following: subroutine initVertical(bounds, snow_depth, thick_wall, thick_roof)
[...]
real(r8) :: scalez = 0.030_r8 ! Soil layer thickness discretization (m)
real(r8) :: scalee = 0.56_r8 ! Soil layer exponential factor
[...]
do j = 1, nlevgrnd
zsoi(j) = scalez*(exp(scalee*(j-0.5_r8))-1._r8) !node depths
enddo
[...]
end subroutine initVertical So zsoi for layer j=10 (nlevsoi) would be 6.101516 m, and much deeper than the default. The layers in the output look as expected with these updated parameters. However, when I looked at variables like |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I am try to modify the soil depth in E3SM, in the default model setting, there are a total of 10 soil layers 3.5m? if I want to change it to 6 m, how should I do ?
Extremely grateful for any assistance
Beta Was this translation helpful? Give feedback.
All reactions