Skip to content

Commit

Permalink
update soil freezing in btran calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaNeedham committed Nov 5, 2023
1 parent 03aa382 commit 6963650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biogeophys/EDBtranMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ logical function check_layer_water(h2o_liq_vol, tempk)
check_layer_water = .false.

if ( h2o_liq_vol .gt. 0._r8 ) then
if ( tempk .gt. soil_tfrz_thresh) then
if ( tempk .gt. soil_tfrz_thresh + tfrz) then
check_layer_water = .true.
end if
end if
Expand Down

0 comments on commit 6963650

Please sign in to comment.