Skip to content

Commit

Permalink
Increase initial soil moisture in fates runs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica F Needham committed Mar 6, 2023
1 parent a3d082c commit c6f43d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/elm/src/data_types/ColumnDataType.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1616,8 +1616,8 @@ subroutine col_ws_init(this, begc, endc, h2osno_input, snow_depth_input, watsat_
if (j > nlevbed) then
this%h2osoi_vol(c,j) = 0.0_r8
else
if (use_fates_planthydro .or. use_hydrstress) then
this%h2osoi_vol(c,j) = 0.70_r8*watsat_input(c,j) !0.15_r8 to avoid very dry conditions that cause errors in FATES HYDRO
if (use_fates .or. use_hydrstress) then
this%h2osoi_vol(c,j) = 0.70_r8*watsat_input(c,j) !0.15_r8 to avoid very dry conditions that cause errors in FATES
else
this%h2osoi_vol(c,j) = 0.15_r8
endif
Expand Down

0 comments on commit c6f43d3

Please sign in to comment.