diff --git a/src/LIB/SURCOUCHE/src/mode_splittingz_ll.f90 b/src/LIB/SURCOUCHE/src/mode_splittingz_ll.f90 index c09b6fd31c39082ad5cd38da4563a6857c082214..9e8fcd46b1128cef71fe85c41a419b2efbf1f30d 100644 --- a/src/LIB/SURCOUCHE/src/mode_splittingz_ll.f90 +++ b/src/LIB/SURCOUCHE/src/mode_splittingz_ll.f90 @@ -49,6 +49,8 @@ MODULE MODE_SPLITTINGZ_ll ! USE MODE_SPLITTING_ll ! + LOGICAL,SAVE :: LINI_PARAZ = .FALSE. !Useful to know if a call to INI_PARAZ_ll or INI_PARAZ_CHILD_ll has already be done + ! CONTAINS ! ################################ SUBROUTINE INI_PARAZ_ll(KINFO_ll) @@ -471,6 +473,7 @@ CONTAINS ! DEALLOCATE(TZDZP) ! + LINI_PARAZ = .TRUE. !------------------------------------------------------------------------------- ! END SUBROUTINE INI_PARAZ_ll @@ -860,6 +863,7 @@ CONTAINS ! DEALLOCATE(TZDZP) ! + LINI_PARAZ = .TRUE. !------------------------------------------------------------------------------- ! CONTAINS diff --git a/src/SURFEX/mode_gridtype_conf_proj.F90 b/src/SURFEX/mode_gridtype_conf_proj.F90 index 2e78c77c1f1cf3ccbfc6b74080dc026dc8142d53..d083f55756da3e5e55caff95de2aeb7c9f07f410 100644 --- a/src/SURFEX/mode_gridtype_conf_proj.F90 +++ b/src/SURFEX/mode_gridtype_conf_proj.F90 @@ -42,6 +42,7 @@ USE MODD_SURF_PAR, ONLY : XUNDEF, NUNDEF #ifdef MNH_PARALLEL USE MODD_VAR_ll, ONLY : NPROC, IP, MPI_PRECISION, NMNH_COMM_WORLD, YSPLITTING USE MODD_MPIF +USE MODE_SPLITTINGZ_ll, ONLY : LINI_PARAZ USE MODE_TOOLS_ll, ONLY : GET_OR_ll #endif ! @@ -114,7 +115,8 @@ END IF #ifdef MNH_PARALLEL !get the index of the process with IL>0 that own the southmost and the westmost point !then broadcast the value of PDX and PDY at these points -IF ( NPROC > 1 ) THEN +!Call this only if INI_PARAZ_ll has already been called (to prevent problemns in GET_OR_ll) +IF ( NPROC > 1 .AND. LINI_PARAZ) THEN ! we need to determine wich processes own the southmost and the westmost point CALL GET_OR_ll( YSPLITTING, IXOR, IYOR ) IF ( IL==0 ) THEN ! we don't consider processes with IL==0