Skip to content

Commit

Permalink
chgres_cube: Correct erroneously high soil temperatures at isolated p…
Browse files Browse the repository at this point in the history
…oints in GEFS data by replacing it with skin temperature.

Addresses Issue ufs-community#447
  • Loading branch information
LarissaReames-NOAA committed Apr 21, 2021
1 parent 0c0ff98 commit 01c4ad5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sorc/chgres_cube.fd/input_data.F90
Original file line number Diff line number Diff line change
Expand Up @@ -5394,6 +5394,7 @@ subroutine read_input_sfc_grib2_file(localpet)
do j = 1, j_input
do i = 1, i_input
if (slmsk_save(i,j) == 0_esmf_kind_i4 ) dummy3d(i,j,k) = tsk_save(i,j)
if (slmsk_save(i,j) == 1_esmf_kind_i4 .and. dummy3d(i,j,k) > 350.0_esmf_kind_r8) dummy3d(i,j,k) = tsk_save(i,j)
if (slmsk_save(i,j) == 2_esmf_kind_i4 ) dummy3d(i,j,k) = icet_default
enddo
enddo
Expand Down

0 comments on commit 01c4ad5

Please sign in to comment.