Skip to content

Commit

Permalink
fix array dimension issue
Browse files Browse the repository at this point in the history
  • Loading branch information
grantfirl committed Mar 7, 2024
1 parent df5d9d4 commit 633f8d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions physics/CONV/Chikira_Sugiyama/cs_conv.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3139,7 +3139,7 @@ END SUBROUTINE CUMSBW
!>\ingroup cs_scheme
!! This subroution calculates freeze, melt and evaporation in cumulus downdraft.
SUBROUTINE CUMDWN & ! Freeze & Melt & Evaporation
( IM , IJSDIM, KMAX , NTR , ntrq, & !DD dimensions
( IM , IJSDIM, KMAX , NTR,ntrq,nctp, & !DD dimensions
GTT , GTQ , GTU , GTV , & ! modified
GMFLX , & ! modified
GPRCP , GSNWP , GTEVP , GMDD , & ! output
Expand Down Expand Up @@ -3905,7 +3905,7 @@ SUBROUTINE CUMFXR & ! Tracer mass fixe
INTEGER, INTENT(IN) :: IM, IJSDIM, KMAX, NTR !! DD, for GFS, pass in
!
! [MODIFY]
REAL(kind_phys) GTR (IJSDIM, KMAX) ! tracer tendency
REAL(kind_phys) GTR (IJSDIM, KMAX, NTR) ! tracer tendency
!
! [INPUT]
REAL(kind_phys) GDR (IJSDIM, KMAX, NTR) ! tracer
Expand Down

0 comments on commit 633f8d1

Please sign in to comment.