Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Seventh reconciliation PR from production/RRFS.v1 #236

Draft
wants to merge 1 commit into
base: ufs/dev
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions physics/SFC_Models/Land/RUC/module_sf_ruclsm.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1077,8 +1077,6 @@ SUBROUTINE LSMRUC(xlat,xlon, &
tso(i,k,j) = tso1d(k)
enddo

tso(i,nzs,j) = tbot(i,j)

do k=1,nzs
smfr3d(i,k,j) = smfrkeep(k)
keepfr3dflag(i,k,j) = keepfr (k)
Expand All @@ -1104,8 +1102,10 @@ SUBROUTINE LSMRUC(xlat,xlon, &
if(snow(i,j)==zero) EMISSL(i,j) = EMISBCK(i,j)
EMISS (I,J) = EMISSL(I,J)
! SNOW is in [mm], SNWE is in [m]; CANWAT is in mm, CANWATR is in m
SNOW (i,j) = SNWE*1000._kind_phys
SNOWH (I,J) = SNHEI
!-- 17 may 2024 - cap snow for points at high elevations where all year round skin temperatures are close to 0 C
!-- Snow density for these points will be 3000/7.5=400 [kg/m^3]
SNOW (i,j) = min(3._kind_phys,SNWE)*1000._kind_phys ! cap to be < 3 m
SNOWH (I,J) = min(7.5_kind_phys,SNHEI) ! cap to be < 7.5 m
CANWAT (I,J) = CANWATR*1000._kind_phys

if (debug_print) then
Expand Down