Skip to content

Commit

Permalink
Merge pull request #1 from grantfirl/HR4-GWD-update_gjf
Browse files Browse the repository at this point in the history
Minor fixes for HR4 GWD update
  • Loading branch information
Qingfu-Liu authored Jun 3, 2024
2 parents 4b797cb + 5e51ce5 commit 64840cd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions ccpp/data/GFS_typedefs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2752,12 +2752,13 @@ subroutine sfcprop_create (Sfcprop, IM, Model)
!
end if

allocate (Sfcprop%rmol (IM ))
allocate (Sfcprop%flhc (IM ))
allocate (Sfcprop%flqc (IM ))
Sfcprop%rmol = clear_val
Sfcprop%flhc = clear_val
Sfcprop%flqc = clear_val
allocate (Sfcprop%rmol (IM ))
allocate (Sfcprop%flhc (IM ))
allocate (Sfcprop%flqc (IM ))
Sfcprop%rmol = clear_val
Sfcprop%flhc = clear_val
Sfcprop%flqc = clear_val

if (Model%do_mynnsfclay) then
! For MYNN surface layer scheme
!print*,"Allocating all MYNN-sfclay variables"
Expand Down
4 changes: 2 additions & 2 deletions ccpp/data/GFS_typedefs.meta
Original file line number Diff line number Diff line change
Expand Up @@ -5629,7 +5629,7 @@
[alpha_fd]
standard_name = alpha_coefficient_for_turbulent_orographic_form_drag
long_name = alpha coefficient for Beljaars et al turbulent orographic form drag
units = none
units = 1
dimensions = ()
type = real
kind = kind_phys
Expand Down Expand Up @@ -7468,7 +7468,7 @@
[gwd_z0m_factor]
standard_name = momentum_roughness_factor_in_turbulent_form_drag
long_name = multiplication of Z0m in PSL turbulent form drag
units = count
units = 1
dimensions = ()
type = real
kind = kind_phys
Expand Down

0 comments on commit 64840cd

Please sign in to comment.