Skip to content
Open
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
16 changes: 8 additions & 8 deletions src/physics/cam/gw_drag_cam.F90
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,6 @@ module gw_drag_cam
integer :: pgwv_long = -1
real(r8) :: gw_dc_long = unset_r8

! New couplings from CLUBB
real(r8), pointer :: ttend_clubb(:,:)
real(r8), pointer :: thlp2_clubb_gw(:,:)
real(r8), pointer :: wpthlp_clubb_gw(:,:)
real(r8), pointer :: upwp_clubb_gw(:,:)
real(r8), pointer :: vpwp_clubb_gw(:,:)
real(r8), pointer :: vort4gw(:,:)

! Gravity wave Ridge scheme namelist
logical :: gw_rdg_do_divstream, gw_rdg_do_smooth_regimes, gw_rdg_do_adjust_tauoro, &
Expand Down Expand Up @@ -1280,10 +1273,17 @@ subroutine gw_drag_cam_tend(state, pbuf, dt, ptend, cam_in, flx_heat)

integer :: i, k, m

! New couplings from CLUBB
real(r8), pointer :: ttend_clubb(:,:)
real(r8), pointer :: thlp2_clubb_gw(:,:)
real(r8), pointer :: wpthlp_clubb_gw(:,:)
real(r8), pointer :: upwp_clubb_gw(:,:)
real(r8), pointer :: vpwp_clubb_gw(:,:)
real(r8), pointer :: vort4gw(:,:)

! Temperature tendencies from diffusion and kinetic energy.
real(r8) :: dttdf(pcols,pver)
real(r8) :: dttke(pcols,pver)

! pbuf fields
! Molecular diffusivity
real(r8), pointer :: kvt_in(:,:)
Expand Down
Loading