@@ -514,7 +514,7 @@ SUBROUTINE init_dim_obs_f_pdaf(step, dim_obs_f)
514514 ! Dimension of full observation vector
515515 ! ------------------------------------
516516
517- ! add and broadcast size of local observation dimensions using mpi_allreduce
517+ ! add and broadcast size of PE- local observation dimensions using mpi_allreduce
518518 call mpi_allreduce(dim_obs_p, sum_dim_obs_p, 1 , MPI_INTEGER, MPI_SUM, &
519519 comm_filter, ierror)
520520
@@ -524,20 +524,20 @@ SUBROUTINE init_dim_obs_f_pdaf(step, dim_obs_f)
524524 ! Check sum of dimensions of PE-local observation vectors against
525525 ! dimension of full observation vector
526526 if (.not. sum_dim_obs_p == dim_obs) then
527- print * , " TSMP-PDAF mype(w)=" , mype_world, " : ERROR Sum of local observation dimensions"
527+ print * , " TSMP-PDAF mype(w)=" , mype_world, " : ERROR Sum of PE- local observation dimensions"
528528 print * , " sum_dim_obs_p=" , sum_dim_obs_p
529529 print * , " dim_obs=" , dim_obs
530530 call abort_parallel()
531531 end if
532532
533- ! Gather local observation dimensions and displacements in arrays
533+ ! Gather PE- local observation dimensions and displacements in arrays
534534 ! ----------------------------------------------------------------
535535
536- ! Allocate array of local observation dimensions
536+ ! Allocate array of PE- local observation dimensions
537537 IF (ALLOCATED (local_dims_obs)) DEALLOCATE (local_dims_obs)
538538 ALLOCATE (local_dims_obs(npes_filter))
539539
540- ! Gather array of local observation dimensions
540+ ! Gather array of PE- local observation dimensions
541541 call mpi_allgather(dim_obs_p, 1 , MPI_INTEGER, local_dims_obs, 1 , MPI_INTEGER, &
542542 comm_filter, ierror)
543543
0 commit comments