Skip to content

Commit

Permalink
Don't set t_soisno below freezing when FATES is on
Browse files Browse the repository at this point in the history
  • Loading branch information
olyson committed Feb 20, 2024
1 parent e4dde90 commit 04167dc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/biogeophys/TemperatureType.F90
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,11 @@ subroutine InitCold(this, bounds, &
end if
end if
else
this%t_soisno_col(c,1:nlevgrnd) = 272._r8
if (use_fates) then
this%t_soisno_col(c,1:nlevgrnd) = 274._r8
else
this%t_soisno_col(c,1:nlevgrnd) = 272._r8
end if
if (use_excess_ice .and. (lun%itype(l) == istsoil .or. lun%itype(l) == istcrop)) then
this%t_soisno_col(c,1:nlevgrnd) = SHR_CONST_TKFRZ - 5.0_r8 !needs to be below freezing to properly initiate excess ice
end if
Expand Down

0 comments on commit 04167dc

Please sign in to comment.