Skip to content

Commit

Permalink
Bugfix in physics/mp_thompson.F90: aerosol arrays may not be allocate…
Browse files Browse the repository at this point in the history
…d, use assumed size arrays
  • Loading branch information
climbfuji committed Apr 1, 2020
1 parent efb68b5 commit dc8a5cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions physics/mp_thompson.F90
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ subroutine mp_thompson_init(ncol, nlev, is_aerosol_aware, &
integer, intent(in) :: ncol
integer, intent(in) :: nlev
logical, intent(in) :: is_aerosol_aware
real(kind_phys), optional, intent(inout) :: nwfa2d(1:ncol)
real(kind_phys), optional, intent(inout) :: nifa2d(1:ncol)
real(kind_phys), optional, intent(inout) :: nwfa(1:ncol,1:nlev)
real(kind_phys), optional, intent(inout) :: nifa(1:ncol,1:nlev)
real(kind_phys), optional, intent(inout) :: nwfa2d(:)
real(kind_phys), optional, intent(inout) :: nifa2d(:)
real(kind_phys), optional, intent(inout) :: nwfa(:,:)
real(kind_phys), optional, intent(inout) :: nifa(:,:)
integer, intent(in) :: mpicomm
integer, intent(in) :: mpirank
integer, intent(in) :: mpiroot
Expand Down

0 comments on commit dc8a5cc

Please sign in to comment.