Skip to content

Commit

Permalink
Merge pull request #75 from climbfuji/shinhong_ysu_bugfix_3d_tendencies
Browse files Browse the repository at this point in the history
Bugfixes for Shinhong and YSU 3d tendency arrays
  • Loading branch information
DomHeinzeller authored Jan 16, 2021
2 parents acf281a + dc7f954 commit 042c61d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion physics/shinhongvdif.F90
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ subroutine shinhongvdif_run(im,km,ux,vx,tx,qx,p2d,p2di,pi2d, &
ttnp
real(kind=kind_phys), dimension(im, km, ntrac ) , &
intent(inout) :: qtnp
real(kind=kind_phys), dimension(im,km) , &
real(kind=kind_phys), dimension(:,:) , &
intent(inout) :: du3dt_PBL, dv3dt_PBL, dt3dt_PBL, dq3dt_PBL, do3dt_PBL
! 2D in
integer, dimension(im) , &
Expand Down
2 changes: 1 addition & 1 deletion physics/ysuvdif.F90
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ subroutine ysuvdif_run(im,km,ux,vx,tx,qx,p2d,p2di,pi2d, &
intent(inout) :: utnp,vtnp,ttnp
real(kind=kind_phys), dimension( im,km,ntrac ) , &
intent(inout) :: qtnp
real(kind=kind_phys), dimension(im,km) , &
real(kind=kind_phys), dimension(:,:) , &
intent(inout) :: du3dt_PBL, dv3dt_PBL, dt3dt_PBL, dq3dt_PBL, do3dt_PBL
!
!---------------------------------------------------------------------------------
Expand Down

0 comments on commit 042c61d

Please sign in to comment.