[1764] | 1 | MODULE PMC_handle_communicator |
---|
[1762] | 2 | |
---|
| 3 | !--------------------------------------------------------------------------------! |
---|
| 4 | ! This file is part of PALM. |
---|
| 5 | ! |
---|
| 6 | ! PALM is free software: you can redistribute it and/or modify it under the terms |
---|
| 7 | ! of the GNU General Public License as published by the Free Software Foundation, |
---|
| 8 | ! either version 3 of the License, or (at your option) any later version. |
---|
| 9 | ! |
---|
| 10 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 11 | ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 12 | ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
| 13 | ! |
---|
| 14 | ! You should have received a copy of the GNU General Public License along with |
---|
| 15 | ! PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 16 | ! |
---|
[1818] | 17 | ! Copyright 1997-2016 Leibniz Universitaet Hannover |
---|
[1762] | 18 | !--------------------------------------------------------------------------------! |
---|
| 19 | ! |
---|
| 20 | ! Current revisions: |
---|
| 21 | ! ------------------ |
---|
[1851] | 22 | ! |
---|
| 23 | ! |
---|
[1792] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: pmc_handle_communicator_mod.f90 1851 2016-04-08 13:32:50Z raasch $ |
---|
| 27 | ! |
---|
[1851] | 28 | ! 1850 2016-04-08 13:29:27Z maronga |
---|
| 29 | ! Module renamed |
---|
| 30 | ! |
---|
| 31 | ! |
---|
[1809] | 32 | ! 1808 2016-04-05 19:44:00Z raasch |
---|
| 33 | ! MPI module used by default on all machines |
---|
| 34 | ! |
---|
[1798] | 35 | ! 1797 2016-03-21 16:50:28Z raasch |
---|
| 36 | ! introduction of different datatransfer modes, |
---|
| 37 | ! export of comm_world_nesting |
---|
| 38 | ! |
---|
[1792] | 39 | ! 1791 2016-03-11 10:41:25Z raasch |
---|
[1791] | 40 | ! m_nrofcpl renamed m_ncpl, |
---|
| 41 | ! pmc_get_local_model_info renamed pmc_get_model_info, some keywords also |
---|
| 42 | ! renamed and some added, |
---|
| 43 | ! debug write-statements commented out |
---|
[1765] | 44 | ! |
---|
[1787] | 45 | ! 1786 2016-03-08 05:49:27Z raasch |
---|
| 46 | ! Bugfix: nesting_mode is broadcast now |
---|
| 47 | ! |
---|
[1780] | 48 | ! 1779 2016-03-03 08:01:28Z raasch |
---|
| 49 | ! only the total number of PEs is given in the nestpar-NAMELIST, |
---|
| 50 | ! additional comments included |
---|
| 51 | ! |
---|
[1765] | 52 | ! 1764 2016-02-28 12:45:19Z raasch |
---|
[1764] | 53 | ! pmc_layout type: comm_cpl and comm_parent removed, character "name" moved at |
---|
| 54 | ! the beginning of the variable list, |
---|
| 55 | ! domain layout is read with new NAMELIST nestpar from standard file PARIN, |
---|
| 56 | ! MPI-datatype REAL8 replaced by REAL, kind=8 replaced by wp, |
---|
| 57 | ! variable domain_layouts instead of m_couplers introduced for this NAMELIST, |
---|
| 58 | ! general format changed to PALM style |
---|
[1762] | 59 | ! |
---|
[1763] | 60 | ! 1762 2016-02-25 12:31:13Z hellstea |
---|
| 61 | ! Initial revision by K. Ketelsen |
---|
| 62 | ! |
---|
[1762] | 63 | ! Description: |
---|
| 64 | ! ------------ |
---|
[1764] | 65 | ! Handle MPI communicator in PALM model coupler |
---|
[1762] | 66 | !------------------------------------------------------------------------------! |
---|
| 67 | |
---|
[1764] | 68 | #if defined( __parallel ) |
---|
| 69 | USE kinds |
---|
[1762] | 70 | |
---|
[1808] | 71 | #if defined( __mpifh ) |
---|
| 72 | INCLUDE "mpif.h" |
---|
| 73 | #else |
---|
[1764] | 74 | USE MPI |
---|
| 75 | #endif |
---|
[1762] | 76 | |
---|
[1764] | 77 | USE pmc_general, & |
---|
| 78 | ONLY: pmc_status_ok, pmc_status_error, pmc_max_modell |
---|
[1762] | 79 | |
---|
[1764] | 80 | IMPLICIT NONE |
---|
[1762] | 81 | |
---|
[1764] | 82 | TYPE pmc_layout |
---|
[1762] | 83 | |
---|
[1764] | 84 | CHARACTER(len=32) :: name |
---|
[1762] | 85 | |
---|
[1764] | 86 | INTEGER :: id |
---|
| 87 | INTEGER :: parent_id |
---|
[1779] | 88 | INTEGER :: npe_total |
---|
[1762] | 89 | |
---|
[1764] | 90 | REAL(wp) :: lower_left_x |
---|
| 91 | REAL(wp) :: lower_left_y |
---|
[1762] | 92 | |
---|
[1764] | 93 | END TYPE pmc_layout |
---|
| 94 | |
---|
| 95 | PUBLIC pmc_status_ok, pmc_status_error |
---|
| 96 | |
---|
| 97 | INTEGER, PARAMETER, PUBLIC :: pmc_error_npes = 1 ! illegal number of PEs |
---|
| 98 | INTEGER, PARAMETER, PUBLIC :: pmc_namelist_error = 2 ! error(s) in nestpar namelist |
---|
| 99 | INTEGER, PARAMETER, PUBLIC :: pmc_no_namelist_found = 3 ! No couple layout file found |
---|
| 100 | |
---|
[1762] | 101 | ! Coupler Setup |
---|
| 102 | |
---|
[1797] | 103 | INTEGER :: m_world_comm !global nesting communicator |
---|
[1762] | 104 | INTEGER :: m_my_CPL_id !Coupler id of this model |
---|
| 105 | INTEGER :: m_Parent_id !Coupler id of parent of this model |
---|
[1791] | 106 | INTEGER :: m_ncpl !Number of Couplers in layout file |
---|
[1762] | 107 | |
---|
[1791] | 108 | TYPE(PMC_layout),DIMENSION(PMC_MAX_MODELL) :: m_couplers !Information of all couplers |
---|
| 109 | |
---|
[1762] | 110 | ! MPI settings |
---|
| 111 | |
---|
| 112 | INTEGER,PUBLIC :: m_model_comm !Communicator of this model |
---|
| 113 | INTEGER,PUBLIC :: m_to_server_comm !Communicator to the server |
---|
| 114 | INTEGER,DIMENSION(PMC_MAX_MODELL) :: m_to_client_comm !Communicator to the client(s) |
---|
| 115 | INTEGER,PUBLIC :: m_world_rank |
---|
| 116 | INTEGER :: m_world_npes |
---|
| 117 | INTEGER,PUBLIC :: m_model_rank |
---|
| 118 | INTEGER,PUBLIC :: m_model_npes |
---|
| 119 | INTEGER :: m_server_remote_size !Number of Server PE's |
---|
| 120 | |
---|
| 121 | PUBLIC m_to_client_comm |
---|
| 122 | |
---|
| 123 | !Indicates this PE is server for Cleint NR |
---|
| 124 | |
---|
| 125 | INTEGER,DIMENSION(:),POINTER,PUBLIC :: PMC_Server_for_Client |
---|
| 126 | |
---|
[1764] | 127 | INTERFACE pmc_is_rootmodel |
---|
| 128 | MODULE PROCEDURE pmc_is_rootmodel |
---|
| 129 | END INTERFACE pmc_is_rootmodel |
---|
[1762] | 130 | |
---|
[1791] | 131 | INTERFACE pmc_get_model_info |
---|
| 132 | MODULE PROCEDURE pmc_get_model_info |
---|
| 133 | END INTERFACE pmc_get_model_info |
---|
[1762] | 134 | |
---|
[1791] | 135 | PUBLIC pmc_get_model_info, pmc_init_model, pmc_is_rootmodel |
---|
[1762] | 136 | |
---|
[1764] | 137 | CONTAINS |
---|
[1762] | 138 | |
---|
[1797] | 139 | SUBROUTINE pmc_init_model( comm, nesting_datatransfer_mode, nesting_mode, & |
---|
| 140 | pmc_status ) |
---|
[1762] | 141 | |
---|
[1764] | 142 | USE control_parameters, & |
---|
| 143 | ONLY: message_string |
---|
| 144 | |
---|
| 145 | USE pegrid, & |
---|
| 146 | ONLY: myid |
---|
| 147 | |
---|
| 148 | IMPLICIT NONE |
---|
| 149 | |
---|
| 150 | CHARACTER(LEN=7), INTENT(OUT) :: nesting_mode |
---|
[1797] | 151 | CHARACTER(LEN=7), INTENT(OUT) :: nesting_datatransfer_mode |
---|
[1764] | 152 | |
---|
| 153 | INTEGER, INTENT(OUT) :: comm |
---|
| 154 | INTEGER, INTENT(OUT) :: pmc_status |
---|
| 155 | |
---|
| 156 | INTEGER :: i, ierr, istat |
---|
| 157 | INTEGER,DIMENSION(pmc_max_modell+1) :: start_pe |
---|
| 158 | INTEGER :: m_my_cpl_rank |
---|
| 159 | INTEGER :: tag, clientcount |
---|
| 160 | INTEGER,DIMENSION(pmc_max_modell) :: activeserver ! I am active server for this client ID |
---|
| 161 | |
---|
| 162 | pmc_status = pmc_status_ok |
---|
[1762] | 163 | comm = -1 |
---|
[1797] | 164 | m_world_comm = MPI_COMM_WORLD |
---|
[1764] | 165 | m_my_cpl_id = -1 |
---|
| 166 | clientcount = 0 |
---|
| 167 | activeserver = -1 |
---|
| 168 | start_pe(:) = 0 |
---|
[1762] | 169 | |
---|
[1764] | 170 | CALL MPI_COMM_RANK( MPI_COMM_WORLD, m_world_rank, istat ) |
---|
| 171 | CALL MPI_COMM_SIZE( MPI_COMM_WORLD, m_world_npes, istat ) |
---|
| 172 | ! |
---|
| 173 | !-- Only PE 0 of root model reads |
---|
| 174 | IF ( m_world_rank == 0 ) THEN |
---|
[1762] | 175 | |
---|
[1797] | 176 | CALL read_coupling_layout( nesting_datatransfer_mode, nesting_mode, & |
---|
| 177 | pmc_status ) |
---|
[1762] | 178 | |
---|
[1764] | 179 | IF ( pmc_status /= pmc_no_namelist_found .AND. & |
---|
| 180 | pmc_status /= pmc_namelist_error ) & |
---|
| 181 | THEN |
---|
| 182 | ! |
---|
| 183 | !-- Calculate start PE of every model |
---|
| 184 | start_pe(1) = 0 |
---|
[1791] | 185 | DO i = 2, m_ncpl+1 |
---|
[1779] | 186 | start_pe(i) = start_pe(i-1) + m_couplers(i-1)%npe_total |
---|
[1764] | 187 | ENDDO |
---|
[1762] | 188 | |
---|
[1764] | 189 | ! |
---|
| 190 | !-- The number of cores provided with the run must be the same as the |
---|
| 191 | !-- total sum of cores required by all nest domains |
---|
[1791] | 192 | IF ( start_pe(m_ncpl+1) /= m_world_npes ) THEN |
---|
[1779] | 193 | WRITE ( message_string, '(A,I6,A,I6,A)' ) & |
---|
| 194 | 'nesting-setup requires more MPI procs (', & |
---|
[1791] | 195 | start_pe(m_ncpl+1), ') than provided (', & |
---|
[1779] | 196 | m_world_npes,')' |
---|
| 197 | CALL message( 'pmc_init_model', 'PA0229', 3, 2, 0, 6, 0 ) |
---|
[1764] | 198 | ENDIF |
---|
[1762] | 199 | |
---|
[1764] | 200 | ENDIF |
---|
[1762] | 201 | |
---|
[1764] | 202 | ENDIF |
---|
| 203 | ! |
---|
| 204 | !-- Broadcast the read status. This synchronises all other PEs with PE 0 of |
---|
| 205 | !-- the root model. Without synchronisation, they would not behave in the |
---|
| 206 | !-- correct way (e.g. they would not return in case of a missing NAMELIST) |
---|
| 207 | CALL MPI_BCAST( pmc_status, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat ) |
---|
[1762] | 208 | |
---|
[1764] | 209 | IF ( pmc_status == pmc_no_namelist_found ) THEN |
---|
| 210 | ! |
---|
| 211 | !-- Not a nested run; return the MPI_WORLD communicator |
---|
| 212 | comm = MPI_COMM_WORLD |
---|
| 213 | RETURN |
---|
[1762] | 214 | |
---|
[1764] | 215 | ELSEIF ( pmc_status == pmc_namelist_error ) THEN |
---|
| 216 | ! |
---|
| 217 | !-- Only the root model gives the error message. Others are aborted by the |
---|
| 218 | !-- message-routine with MPI_ABORT. Must be done this way since myid and |
---|
| 219 | !-- comm2d have not yet been assigned at this point. |
---|
| 220 | IF ( m_world_rank == 0 ) THEN |
---|
| 221 | message_string = 'errors in \$nestpar' |
---|
| 222 | CALL message( 'pmc_init_model', 'PA0223', 3, 2, 0, 6, 0 ) |
---|
| 223 | ENDIF |
---|
[1762] | 224 | |
---|
[1764] | 225 | ENDIF |
---|
[1762] | 226 | |
---|
[1791] | 227 | CALL MPI_BCAST( m_ncpl, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat) |
---|
| 228 | CALL MPI_BCAST( start_pe, m_ncpl+1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat) |
---|
[1762] | 229 | |
---|
[1764] | 230 | ! |
---|
| 231 | !-- Broadcast coupling layout |
---|
[1791] | 232 | DO i = 1, m_ncpl |
---|
[1764] | 233 | CALL MPI_BCAST( m_couplers(i)%name, LEN( m_couplers(i)%name ), MPI_CHARACTER, 0, MPI_COMM_WORLD, istat ) |
---|
| 234 | CALL MPI_BCAST( m_couplers(i)%id, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat ) |
---|
| 235 | CALL MPI_BCAST( m_couplers(i)%Parent_id, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat ) |
---|
[1779] | 236 | CALL MPI_BCAST( m_couplers(i)%npe_total, 1, MPI_INTEGER, 0, MPI_COMM_WORLD, istat ) |
---|
[1764] | 237 | CALL MPI_BCAST( m_couplers(i)%lower_left_x, 1, MPI_REAL, 0, MPI_COMM_WORLD, istat ) |
---|
| 238 | CALL MPI_BCAST( m_couplers(i)%lower_left_y, 1, MPI_REAL, 0, MPI_COMM_WORLD, istat ) |
---|
[1797] | 239 | !-- TO_DO: the next two calls can and should probably moved outside this loop |
---|
[1786] | 240 | CALL MPI_BCAST( nesting_mode, LEN( nesting_mode ), MPI_CHARACTER, 0, MPI_COMM_WORLD, istat ) |
---|
[1797] | 241 | CALL MPI_BCAST( nesting_datatransfer_mode, LEN(nesting_datatransfer_mode), MPI_CHARACTER, 0, MPI_COMM_WORLD, istat ) |
---|
[1764] | 242 | ENDDO |
---|
[1762] | 243 | |
---|
[1764] | 244 | ! |
---|
| 245 | !-- Assign global MPI processes to individual models by setting the couple id |
---|
[1791] | 246 | DO i = 1, m_ncpl |
---|
[1764] | 247 | IF ( m_world_rank >= start_pe(i) .AND. m_world_rank < start_pe(i+1) ) & |
---|
| 248 | THEN |
---|
| 249 | m_my_cpl_id = i |
---|
| 250 | EXIT |
---|
| 251 | ENDIF |
---|
| 252 | ENDDO |
---|
| 253 | m_my_cpl_rank = m_world_rank - start_pe(i) |
---|
[1762] | 254 | |
---|
[1764] | 255 | ! |
---|
| 256 | !-- MPI_COMM_WORLD is the communicator for ALL models (MPI-1 approach). |
---|
| 257 | !-- The communictors for the individual models as created by MPI_COMM_SPLIT. |
---|
| 258 | !-- The color of the model is represented by the coupler id |
---|
| 259 | CALL MPI_COMM_SPLIT( MPI_COMM_WORLD, m_my_cpl_id, m_my_cpl_rank, comm, & |
---|
| 260 | istat ) |
---|
| 261 | ! |
---|
| 262 | !-- Get size and rank of the model running on this PE |
---|
| 263 | CALL MPI_COMM_RANK( comm, m_model_rank, istat ) |
---|
| 264 | CALL MPI_COMM_SIZE( comm, m_model_npes, istat ) |
---|
[1762] | 265 | |
---|
[1764] | 266 | ! |
---|
| 267 | !-- Broadcast (from PE 0) the parent id and id of every model |
---|
[1791] | 268 | DO i = 1, m_ncpl |
---|
[1764] | 269 | CALL MPI_BCAST( m_couplers(i)%parent_id, 1, MPI_INTEGER, 0, & |
---|
| 270 | MPI_COMM_WORLD, istat ) |
---|
| 271 | CALL MPI_BCAST( m_couplers(i)%id, 1, MPI_INTEGER, 0, & |
---|
| 272 | MPI_COMM_WORLD, istat ) |
---|
| 273 | ENDDO |
---|
[1762] | 274 | |
---|
[1764] | 275 | ! |
---|
[1779] | 276 | !-- Save the current model communicator for PMC internal use |
---|
[1762] | 277 | m_model_comm = comm |
---|
| 278 | |
---|
[1764] | 279 | ! |
---|
| 280 | !-- Create intercommunicator between server and clients. |
---|
| 281 | !-- MPI_INTERCOMM_CREATE creates an intercommunicator between 2 groups of |
---|
| 282 | !-- different colors. |
---|
| 283 | !-- The grouping was done above with MPI_COMM_SPLIT |
---|
[1791] | 284 | DO i = 2, m_ncpl |
---|
[1762] | 285 | |
---|
[1764] | 286 | IF ( m_couplers(i)%parent_id == m_my_cpl_id ) THEN |
---|
| 287 | ! |
---|
[1779] | 288 | !-- Collect server PEs. |
---|
| 289 | !-- Every model exept the root model has a parent model which acts as |
---|
| 290 | !-- server model. Create an intercommunicator to connect current PE to |
---|
| 291 | !-- all client PEs |
---|
[1764] | 292 | tag = 500 + i |
---|
| 293 | CALL MPI_INTERCOMM_CREATE( comm, 0, MPI_COMM_WORLD, start_pe(i), & |
---|
| 294 | tag, m_to_client_comm(i), istat) |
---|
| 295 | clientcount = clientcount + 1 |
---|
| 296 | activeserver(i) = 1 |
---|
[1762] | 297 | |
---|
[1764] | 298 | ELSEIF ( i == m_my_cpl_id) THEN |
---|
| 299 | ! |
---|
[1779] | 300 | !-- Collect client PEs. |
---|
| 301 | !-- Every model exept the root model has a paremt model which acts as |
---|
| 302 | !-- server model. Create an intercommunicator to connect current PE to |
---|
| 303 | !-- all server PEs |
---|
[1764] | 304 | tag = 500 + i |
---|
| 305 | CALL MPI_INTERCOMM_CREATE( comm, 0, MPI_COMM_WORLD, & |
---|
| 306 | start_pe(m_couplers(i)%parent_id), & |
---|
| 307 | tag, m_to_server_comm, istat ) |
---|
| 308 | ENDIF |
---|
[1762] | 309 | |
---|
[1764] | 310 | ENDDO |
---|
[1762] | 311 | |
---|
[1764] | 312 | ! |
---|
| 313 | !-- If I am server, count the number of clients that I have |
---|
| 314 | !-- Although this loop is symmetric on all processes, the "activeserver" flag |
---|
| 315 | !-- is true (==1) on the respective individual PE only. |
---|
| 316 | ALLOCATE( pmc_server_for_client(clientcount+1) ) |
---|
[1762] | 317 | |
---|
[1764] | 318 | clientcount = 0 |
---|
[1791] | 319 | DO i = 2, m_ncpl |
---|
[1764] | 320 | IF ( activeserver(i) == 1 ) THEN |
---|
| 321 | clientcount = clientcount + 1 |
---|
| 322 | pmc_server_for_client(clientcount) = i |
---|
| 323 | ENDIF |
---|
| 324 | ENDDO |
---|
| 325 | ! |
---|
| 326 | !-- Get the size of the server model |
---|
| 327 | IF ( m_my_cpl_id > 1 ) THEN |
---|
| 328 | CALL MPI_COMM_REMOTE_SIZE( m_to_server_comm, m_server_remote_size, & |
---|
| 329 | istat) |
---|
| 330 | ELSE |
---|
| 331 | ! |
---|
| 332 | !-- The root model does not have a server |
---|
| 333 | m_server_remote_size = -1 ! |
---|
| 334 | ENDIF |
---|
| 335 | ! |
---|
| 336 | !-- Set myid to non-tero value except for the root domain. This is a setting |
---|
| 337 | !-- for the message routine which is called at the end of pmci_init. That |
---|
| 338 | !-- routine outputs messages for myid = 0, only. However, myid has not been |
---|
| 339 | !-- assigened so far, so that all PEs of the root model would output a |
---|
| 340 | !-- message. To avoid this, set myid to some other value except for PE0 of the |
---|
| 341 | !-- root domain. |
---|
| 342 | IF ( m_world_rank /= 0 ) myid = 1 |
---|
[1762] | 343 | |
---|
| 344 | END SUBROUTINE PMC_init_model |
---|
| 345 | |
---|
| 346 | |
---|
[1764] | 347 | ! |
---|
[1791] | 348 | !-- Provide module private variables of the pmc for PALM |
---|
[1797] | 349 | SUBROUTINE pmc_get_model_info( comm_world_nesting, cpl_id, cpl_name, & |
---|
| 350 | cpl_parent_id, lower_left_x, lower_left_y, & |
---|
| 351 | ncpl, npe_total, request_for_cpl_id ) |
---|
[1762] | 352 | |
---|
[1764] | 353 | USE kinds |
---|
[1762] | 354 | |
---|
[1764] | 355 | IMPLICIT NONE |
---|
[1762] | 356 | |
---|
[1764] | 357 | CHARACTER(LEN=*), INTENT(OUT), OPTIONAL :: cpl_name |
---|
[1762] | 358 | |
---|
[1791] | 359 | INTEGER, INTENT(IN), OPTIONAL :: request_for_cpl_id |
---|
[1762] | 360 | |
---|
[1797] | 361 | INTEGER, INTENT(OUT), OPTIONAL :: comm_world_nesting |
---|
[1791] | 362 | INTEGER, INTENT(OUT), OPTIONAL :: cpl_id |
---|
| 363 | INTEGER, INTENT(OUT), OPTIONAL :: cpl_parent_id |
---|
| 364 | INTEGER, INTENT(OUT), OPTIONAL :: ncpl |
---|
| 365 | INTEGER, INTENT(OUT), OPTIONAL :: npe_total |
---|
[1762] | 366 | |
---|
[1791] | 367 | INTEGER :: requested_cpl_id |
---|
[1764] | 368 | |
---|
[1791] | 369 | REAL(wp), INTENT(OUT), OPTIONAL :: lower_left_x |
---|
| 370 | REAL(wp), INTENT(OUT), OPTIONAL :: lower_left_y |
---|
[1764] | 371 | |
---|
[1791] | 372 | ! |
---|
| 373 | !-- Set the requested coupler id |
---|
| 374 | IF ( PRESENT( request_for_cpl_id ) ) THEN |
---|
| 375 | requested_cpl_id = request_for_cpl_id |
---|
| 376 | ! |
---|
| 377 | !-- Check for allowed range of values |
---|
| 378 | IF ( requested_cpl_id < 1 .OR. requested_cpl_id > m_ncpl ) RETURN |
---|
| 379 | ELSE |
---|
| 380 | requested_cpl_id = m_my_cpl_id |
---|
| 381 | ENDIF |
---|
| 382 | |
---|
| 383 | ! |
---|
| 384 | !-- Return the requested information |
---|
[1797] | 385 | IF ( PRESENT( comm_world_nesting ) ) THEN |
---|
| 386 | comm_world_nesting = m_world_comm |
---|
| 387 | ENDIF |
---|
[1791] | 388 | IF ( PRESENT( cpl_id ) ) THEN |
---|
[1797] | 389 | cpl_id = requested_cpl_id |
---|
[1791] | 390 | ENDIF |
---|
| 391 | IF ( PRESENT( cpl_parent_id ) ) THEN |
---|
| 392 | cpl_parent_id = m_couplers(requested_cpl_id)%parent_id |
---|
| 393 | ENDIF |
---|
| 394 | IF ( PRESENT( cpl_name ) ) THEN |
---|
[1797] | 395 | cpl_name = m_couplers(requested_cpl_id)%name |
---|
[1791] | 396 | ENDIF |
---|
| 397 | IF ( PRESENT( ncpl ) ) THEN |
---|
[1797] | 398 | ncpl = m_ncpl |
---|
[1791] | 399 | ENDIF |
---|
| 400 | IF ( PRESENT( npe_total ) ) THEN |
---|
[1797] | 401 | npe_total = m_couplers(requested_cpl_id)%npe_total |
---|
[1791] | 402 | ENDIF |
---|
| 403 | IF ( PRESENT( lower_left_x ) ) THEN |
---|
[1797] | 404 | lower_left_x = m_couplers(requested_cpl_id)%lower_left_x |
---|
[1791] | 405 | ENDIF |
---|
| 406 | IF ( PRESENT( lower_left_y ) ) THEN |
---|
[1797] | 407 | lower_left_y = m_couplers(requested_cpl_id)%lower_left_y |
---|
[1791] | 408 | ENDIF |
---|
| 409 | |
---|
| 410 | END SUBROUTINE pmc_get_model_info |
---|
| 411 | |
---|
| 412 | |
---|
| 413 | |
---|
[1764] | 414 | LOGICAL function pmc_is_rootmodel( ) |
---|
| 415 | |
---|
| 416 | IMPLICIT NONE |
---|
| 417 | |
---|
| 418 | pmc_is_rootmodel = ( m_my_cpl_id == 1 ) |
---|
| 419 | |
---|
| 420 | END FUNCTION pmc_is_rootmodel |
---|
| 421 | |
---|
| 422 | |
---|
| 423 | |
---|
[1797] | 424 | SUBROUTINE read_coupling_layout( nesting_datatransfer_mode, nesting_mode, & |
---|
| 425 | pmc_status ) |
---|
[1762] | 426 | |
---|
[1764] | 427 | IMPLICIT NONE |
---|
[1762] | 428 | |
---|
[1797] | 429 | CHARACTER(LEN=7), INTENT(INOUT) :: nesting_mode |
---|
| 430 | CHARACTER(LEN=7), INTENT(INOUT) :: nesting_datatransfer_mode |
---|
[1764] | 431 | |
---|
| 432 | INTEGER, INTENT(INOUT) :: pmc_status |
---|
[1791] | 433 | INTEGER :: i, istat |
---|
[1764] | 434 | |
---|
| 435 | TYPE(pmc_layout), DIMENSION(pmc_max_modell) :: domain_layouts |
---|
| 436 | |
---|
| 437 | |
---|
[1797] | 438 | NAMELIST /nestpar/ domain_layouts, nesting_datatransfer_mode, nesting_mode |
---|
[1764] | 439 | |
---|
| 440 | ! |
---|
| 441 | !-- Initialize some coupling variables |
---|
| 442 | domain_layouts(1:pmc_max_modell)%id = -1 |
---|
[1791] | 443 | m_ncpl = 0 |
---|
[1762] | 444 | |
---|
[1764] | 445 | pmc_status = pmc_status_ok |
---|
| 446 | |
---|
| 447 | ! |
---|
| 448 | !-- Open the NAMELIST-file and read the nesting layout |
---|
| 449 | CALL check_open( 11 ) |
---|
| 450 | READ ( 11, nestpar, IOSTAT=istat ) |
---|
| 451 | |
---|
| 452 | IF ( istat < 0 ) THEN |
---|
| 453 | ! |
---|
| 454 | !-- No nestpar-NAMELIST found |
---|
| 455 | pmc_status = pmc_no_namelist_found |
---|
| 456 | ! |
---|
| 457 | !-- Set filepointer to the beginning of the file. Otherwise PE0 will later |
---|
| 458 | !-- be unable to read the inipar-NAMELIST |
---|
| 459 | REWIND ( 11 ) |
---|
[1762] | 460 | RETURN |
---|
| 461 | |
---|
[1764] | 462 | ELSEIF ( istat > 0 ) THEN |
---|
| 463 | ! |
---|
| 464 | !-- Errors in reading nestpar-NAMELIST |
---|
| 465 | pmc_status = pmc_namelist_error |
---|
| 466 | RETURN |
---|
[1762] | 467 | |
---|
[1764] | 468 | ENDIF |
---|
[1762] | 469 | |
---|
[1764] | 470 | ! |
---|
| 471 | !-- Output location message |
---|
| 472 | CALL location_message( 'initialize communicators for nesting', .FALSE. ) |
---|
| 473 | ! |
---|
| 474 | !-- Assign the layout to the internally used variable |
---|
| 475 | m_couplers = domain_layouts |
---|
[1762] | 476 | |
---|
[1764] | 477 | ! |
---|
| 478 | !-- Get the number of nested models given in the nestpar-NAMELIST |
---|
| 479 | DO i = 1, pmc_max_modell |
---|
| 480 | ! |
---|
[1791] | 481 | !-- When id=-1 is found for the first time, the list of domains is finished |
---|
| 482 | IF ( m_couplers(i)%id == -1 .OR. i == pmc_max_modell ) THEN |
---|
| 483 | IF ( m_couplers(i)%id == -1 ) THEN |
---|
| 484 | m_ncpl = i - 1 |
---|
| 485 | EXIT |
---|
| 486 | ELSE |
---|
| 487 | m_ncpl = pmc_max_modell |
---|
| 488 | ENDIF |
---|
[1764] | 489 | ENDIF |
---|
| 490 | |
---|
| 491 | ENDDO |
---|
| 492 | |
---|
| 493 | END SUBROUTINE read_coupling_layout |
---|
| 494 | |
---|
| 495 | #endif |
---|
| 496 | END MODULE pmc_handle_communicator |
---|