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

Correction of convective cloud condensate in prog closure for HR2 #639

Merged
merged 10 commits into from
Apr 6, 2023
3 changes: 0 additions & 3 deletions ccpp/data/GFS_typedefs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,6 @@ module GFS_typedefs
real (kind=kind_phys), pointer :: pfl_lsan(:,:) => null() !< instantaneous 3D flux of liquid nonconvective precipitation (kg m-2 s-1)

!-- prognostic updraft area fraction coupling in convection
real (kind=kind_phys), pointer :: tmf (:,:) => null() !< tmf to be passed from turublence scheme to convection
real (kind=kind_phys), pointer :: dqdt_qmicro(:,:) => null() !< instantanious microphysics tendency to be passed from MP to convection

contains
Expand Down Expand Up @@ -2889,8 +2888,6 @@ subroutine coupling_create (Coupling, IM, Model)
!--prognostic closure - moisture coupling
if(Model%progsigma)then
allocate(Coupling%dqdt_qmicro (IM,Model%levs))
allocate(Coupling%tmf (IM,Model%levs))
Coupling%tmf = clear_val
Coupling%dqdt_qmicro = clear_val
endif

Expand Down
8 changes: 0 additions & 8 deletions ccpp/data/GFS_typedefs.meta
Original file line number Diff line number Diff line change
Expand Up @@ -2493,14 +2493,6 @@
type = real
kind = kind_phys
active = (flag_for_surface_flux_coupling)
[tmf]
standard_name = instantaneous_tendency_of_specific_humidity_due_to_PBL
long_name = instantaneous_tendency_of_specific_humidity_due_to_PBL
units = kg kg-1 s-1
dimensions = (horizontal_loop_extent,vertical_layer_dimension)
type = real
kind = kind_phys
active = (do_prognostic_updraft_area_fraction)
[dqdt_qmicro]
standard_name = instantaneous_tendency_of_specific_humidity_due_to_microphysics
long_name = instantaneous_tendency_of_specific_humidity_due_to_microphysics
Expand Down