Skip to content

Commit 95e677f

Browse files
committed
doc: init_dim_obs, change "local" to "PE-local"
as there are the two concepts - PE-local (per processor from domain decomposition) - local in the sense of the local filters (usually one gridcell/column)
1 parent dfa1282 commit 95e677f

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

bldsva/intf_DA/pdaf/framework/init_dim_obs_f_pdaf.F90

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

bldsva/intf_DA/pdaf/framework/init_dim_obs_pdaf.F90

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -510,27 +510,27 @@ SUBROUTINE init_dim_obs_pdaf(step, dim_obs_p)
510510
! Dimension of full observation vector
511511
! ------------------------------------
512512

513-
! add and broadcast size of local observation dimensions using mpi_allreduce
513+
! add and broadcast size of PE-local observation dimensions using mpi_allreduce
514514
call mpi_allreduce(dim_obs_p, sum_dim_obs_p, 1, MPI_INTEGER, MPI_SUM, &
515515
comm_filter, ierror)
516516

517517
! Check sum of dimensions of PE-local observation vectors against
518518
! dimension of full observation vector
519519
if (.not. sum_dim_obs_p == dim_obs) then
520-
print *, "TSMP-PDAF mype(w)=", mype_world, ": ERROR Sum of local observation dimensions"
520+
print *, "TSMP-PDAF mype(w)=", mype_world, ": ERROR Sum of PE-local observation dimensions"
521521
print *, "sum_dim_obs_p=", sum_dim_obs_p
522522
print *, "dim_obs=", dim_obs
523523
call abort_parallel()
524524
end if
525525

526-
! Gather local observation dimensions and displacements in arrays
526+
! Gather PE-local observation dimensions and displacements in arrays
527527
! ----------------------------------------------------------------
528528

529-
! Allocate array of local observation dimensions
529+
! Allocate array of PE-local observation dimensions
530530
IF (ALLOCATED(local_dims_obs)) DEALLOCATE(local_dims_obs)
531531
ALLOCATE(local_dims_obs(npes_filter))
532532

533-
! Gather array of local observation dimensions
533+
! Gather array of PE-local observation dimensions
534534
call mpi_allgather(dim_obs_p, 1, MPI_INTEGER, local_dims_obs, 1, MPI_INTEGER, &
535535
comm_filter, ierror)
536536

0 commit comments

Comments
 (0)