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

Update master branch to work with ccpp-physics master #196

Merged
merged 1 commit into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion ccpp/physics
6 changes: 6 additions & 0 deletions scm/src/GFS_typedefs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ module GFS_typedefs
real (kind=kind_phys), pointer :: zorl (:) => null() !< composite surface roughness in cm
real (kind=kind_phys), pointer :: zorlo (:) => null() !< ocean surface roughness in cm
real (kind=kind_phys), pointer :: zorll (:) => null() !< land surface roughness in cm
real (kind=kind_phys), pointer :: zorli (:) => null() !< ice surface roughness in cm
real (kind=kind_phys), pointer :: zorlw (:) => null() !< wave surface roughness in cm
real (kind=kind_phys), pointer :: fice (:) => null() !< ice fraction over open water grid
! real (kind=kind_phys), pointer :: hprim (:) => null() !< topographic standard deviation in m
real (kind=kind_phys), pointer :: hprime (:,:) => null() !< orographic metrics
Expand Down Expand Up @@ -2169,6 +2171,8 @@ subroutine sfcprop_create (Sfcprop, IM, Model)
allocate (Sfcprop%zorl (IM))
allocate (Sfcprop%zorlo (IM))
allocate (Sfcprop%zorll (IM))
allocate (Sfcprop%zorli (IM))
allocate (Sfcprop%zorlw (IM))
allocate (Sfcprop%fice (IM))
! allocate (Sfcprop%hprim (IM))
allocate (Sfcprop%hprime (IM,Model%nmtvr))
Expand All @@ -2187,6 +2191,8 @@ subroutine sfcprop_create (Sfcprop, IM, Model)
Sfcprop%zorl = clear_val
Sfcprop%zorlo = clear_val
Sfcprop%zorll = clear_val
Sfcprop%zorli = clear_val
Sfcprop%zorlw = clear_val
Sfcprop%fice = clear_val
! Sfcprop%hprim = clear_val
Sfcprop%hprime = clear_val
Expand Down
20 changes: 17 additions & 3 deletions scm/src/GFS_typedefs.meta
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,20 @@
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[zorli]
standard_name = surface_roughness_length_over_ice
long_name = surface roughness length over ice
units = cm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[zorlw]
standard_name = surface_roughness_length_from_wave_model
long_name = surface roughness length from wave model
units = cm
dimensions = (horizontal_dimension)
type = real
kind = kind_phys
[fice]
standard_name = sea_ice_concentration
long_name = ice fraction over open water
Expand Down Expand Up @@ -3626,21 +3640,21 @@
[min_lakeice]
standard_name = lake_ice_minimum
long_name = minimum lake ice value
units = ???
units = frac
dimensions = ()
type = real
kind = kind_phys
[min_seaice]
standard_name = sea_ice_minimum
long_name = minimum sea ice value
units = ???
units = frac
dimensions = ()
type = real
kind = kind_phys
[rho_h2o]
standard_name = density_of_fresh_water
long_name = density of fresh water
units = ???
units = kg m-3
dimensions = ()
type = real
kind = kind_phys
Expand Down