Skip to content

Commit

Permalink
fix compilation errors in YSU PBL and FA MP
Browse files Browse the repository at this point in the history
  • Loading branch information
grantfirl committed Aug 29, 2024
1 parent 965a00c commit d1695fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions physics/MP/Ferrier_Aligo/module_MP_FER_HIRES.F90
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ MODULE MODULE_MP_FER_HIRES
!-----------------------------------------------------------------------------

#ifdef MPI
USE mpi
USE mpi_f08
#endif
USE machine
!MZ
Expand Down Expand Up @@ -2448,7 +2448,7 @@ SUBROUTINE FERRIER_INIT_hr (GSMDT,MPI_COMM_COMP,MPIRANK,MPIROOT,THREADS, &
!-----------------------------------------------------------------------
!
#ifdef MPI
use mpi
use mpi_f08
#endif
IMPLICIT NONE
!
Expand All @@ -2466,7 +2466,7 @@ SUBROUTINE FERRIER_INIT_hr (GSMDT,MPI_COMM_COMP,MPIRANK,MPIROOT,THREADS, &
REAL, INTENT(IN) :: GSMDT
INTEGER, INTENT(IN) :: MPIRANK
INTEGER, INTENT(IN) :: MPIROOT
INTEGER, INTENT(IN) :: MPI_COMM_COMP
TYPE(MPI_Comm), INTENT(IN) :: MPI_COMM_COMP
INTEGER, INTENT(IN) :: THREADS
CHARACTER(LEN=*), INTENT(OUT) :: errmsg
INTEGER, INTENT(OUT) :: errflg
Expand Down
2 changes: 1 addition & 1 deletion physics/PBL/YSU/ysuvdif.F90
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ subroutine ysuvdif_run(im,km,ux,vx,tx,qx,p2d,p2di,pi2d,karman, &
intent(inout) :: utnp,vtnp,ttnp
real(kind=kind_phys), dimension( :,:,: ) , &
intent(inout) :: qtnp
real(kind=kind_phys), optional, intent(inout), optional :: dtend(:,:,:)
real(kind=kind_phys), intent(inout), optional :: dtend(:,:,:)
integer, intent(in) :: dtidx(:,:), ntqv, index_of_temperature, &
index_of_x_wind, index_of_y_wind, index_of_process_pbl
!
Expand Down

0 comments on commit d1695fa

Please sign in to comment.