- Timestamp:
- Jun 8, 2017 7:55:13 AM (7 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/header.f90
r2233 r2258 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix, add pre-preprocessor directives to enable non-parrallel mode 28 ! 29 ! 2233 2017-05-30 18:08:54Z suehring 27 30 ! 28 31 ! 2232 2017-05-30 17:47:52Z suehring … … 353 356 USE plant_canopy_model_mod, & 354 357 ONLY: pcm_header, plant_canopy 355 358 359 #if defined( __parallel ) 356 360 USE pmc_handle_communicator, & 357 361 ONLY: pmc_get_model_info 362 #endif 358 363 359 364 USE pmc_interface, & … … 547 552 WRITE ( io, 600 ) TRIM( nesting_mode ), & 548 553 TRIM( nesting_datatransfer_mode ) 554 #if defined( __parallel ) 549 555 CALL pmc_get_model_info( ncpl = ncpl, cpl_id = my_cpl_id ) 550 556 … … 564 570 TRIM( cpl_name ) 565 571 ENDDO 572 #endif 566 573 ENDIF 567 574 WRITE ( io, 99 ) -
palm/trunk/SOURCE/pmc_interface_mod.f90
r2241 r2258 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Bugfix, add pre-preprocessor directives to enable non-parrallel mode 29 ! 30 ! 2241 2017-06-01 13:46:13Z hellstea 28 31 ! A minor indexing error in pmci_init_loglaw_correction is corrected. 29 32 ! … … 3954 3957 3955 3958 SUBROUTINE pmci_set_swaplevel( swaplevel ) 3959 3956 3960 ! 3957 3961 !-- After each Runge-Kutta sub-timestep, alternately set buffer one or buffer … … 3966 3970 INTEGER(iwp) :: m !: 3967 3971 3972 #if defined( __parallel ) 3968 3973 DO m = 1, SIZE( pmc_parent_for_child )-1 3969 3974 child_id = pmc_parent_for_child(m) 3970 3975 CALL pmc_s_set_active_data_array( child_id, swaplevel ) 3971 3976 ENDDO 3972 3977 #endif 3973 3978 END SUBROUTINE pmci_set_swaplevel 3974 3979 -
palm/trunk/SOURCE/timestep.f90
r2131 r2258 21 21 ! ------------------ 22 22 ! 23 ! 23 ! 24 24 ! Former revisions: 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix, add pre-preprocessor directives to enable non-parrallel mode 28 ! 29 ! 2168 2017-03-06 13:08:38Z suehring 27 30 ! 28 31 ! 2130 2017-01-24 16:25:39Z raasch … … 353 356 IF ( nested_run ) THEN 354 357 stop_dt_local = stop_dt 358 #if defined( __parallel ) 355 359 CALL MPI_ALLREDUCE( stop_dt_local, stop_dt, 1, MPI_LOGICAL, MPI_LOR, & 356 360 MPI_COMM_WORLD, ierr ) 361 #endif 357 362 ENDIF 358 363 -
palm/trunk/SOURCE/urban_surface_mod.f90
r2233 r2258 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Bugfix, add pre-preprocessor directives to enable non-parrallel mode 29 ! 30 ! 2233 2017-05-30 18:08:54Z suehring 28 31 ! 29 32 ! 2232 2017-05-30 17:47:52Z suehring … … 299 302 REAL(wp), DIMENSION(:), ALLOCATABLE :: crlens !< array of crossing lengths of ray for particular grid boxes 300 303 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: lad_ip !< array of numbers of process where lad is stored 304 #if defined( __parallel ) 301 305 INTEGER(kind=MPI_ADDRESS_KIND), & 302 306 DIMENSION(:), ALLOCATABLE :: lad_disp !< array of displaycements of lad in local array of proc lad_ip 307 #endif 303 308 REAL(wp), DIMENSION(:), ALLOCATABLE :: lad_s_ray !< array of received lad_s for appropriate gridboxes crossed by ray 304 309 … … 1797 1802 REAL(wp), DIMENSION(:,:,:), POINTER :: lad_s_rma !< fortran pointer, but lower bounds are 1 1798 1803 TYPE(c_ptr) :: lad_s_rma_p !< allocated c pointer 1804 #if defined( __parallel ) 1799 1805 INTEGER(kind=MPI_ADDRESS_KIND) :: size_lad_rma 1806 #endif 1800 1807 ! 1801 1808 !-- calculation of the SVF
Note: See TracChangeset
for help on using the changeset viewer.