Skip to content

Commit

Permalink
Enable starting from restart files generated with Noah
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerkclark committed Jun 14, 2024
1 parent b59bb08 commit 1138dad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions FV3GFS/FV3GFS_io.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1308,6 +1308,7 @@ subroutine sfc_prop_restart_read (Sfcprop, Atm_block, Model, fv_domain, enforce_
Sfcprop(nb)%albivis(ix) = missing_value
Sfcprop(nb)%albinir(ix) = missing_value
Sfcprop(nb)%emiss(ix) = missing_value
Sfcprop(nb)%scolor(ix) = 0.0

Sfcprop(nb)%snowxy (ix) = missing_value
Sfcprop(nb)%snicexy(ix, -2:0) = missing_value
Expand Down Expand Up @@ -1533,6 +1534,11 @@ subroutine sfc_prop_restart_read (Sfcprop, Atm_block, Model, fv_domain, enforce_
Sfcprop(nb)%deeprechxy(ix) = 0.0
Sfcprop(nb)%rechxy(ix) = 0.0

! Use a default value of 4 for the soil color category over
! land when cold starting. Note this will get overridden during
! cycling if soil color data is provided. If soil color data is
! not provided then the soil color will remain 4 over land.
Sfcprop(nb)%scolor(ix) = 4.0
endif !end if slmsk>0.01 (land only)

enddo ! ix
Expand Down

0 comments on commit 1138dad

Please sign in to comment.