Changeset 805 for palm/trunk
- Timestamp:
- Jan 17, 2012 3:53:28 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/modules.f90
r802 r805 5 5 ! Current revisions: 6 6 ! ----------------- 7 ! particle arrays (particles, parrticles_temp) implemented as pointers, 8 ! +particles_1, particles_2, sort_count 7 ! Bugfix collective_wait must be out of parallel branch for runs in serial mode 9 8 ! 10 9 ! Former revisions: … … 16 15 ! sums_ws2_ws_l, sums_wspts_ws_l, sums_wsqs_ws_l, sums_wssas_ws_l increased. 17 16 ! for thread-safe summation in advec_ws. 17 ! 18 ! 792 2011-12-01 01:23:23Z raasch 19 ! particle arrays (particles, parrticles_temp) implemented as pointers, 20 ! +particles_1, particles_2, sort_count 18 21 ! 19 22 ! 790 2011-11-29 03:11:20Z raasch … … 1265 1268 hor_index_bounds_previous_run 1266 1269 1270 LOGICAL :: collective_wait = .FALSE. 1271 1267 1272 #if defined( __parallel ) 1268 1273 #if defined( __mpi2 ) … … 1281 1286 INTEGER, DIMENSION(:), ALLOCATABLE :: ngp_yz, type_xz, type_yz 1282 1287 1283 LOGICAL :: collective_wait = .FALSE., left_border_pe = .FALSE.,&1284 north_border_pe = .FALSE., reorder = .TRUE.,&1285 right_border_pe = .FALSE.,south_border_pe = .FALSE.1288 LOGICAL :: left_border_pe = .FALSE., north_border_pe = .FALSE., & 1289 reorder = .TRUE., right_border_pe = .FALSE., & 1290 south_border_pe = .FALSE. 1286 1291 1287 1292 LOGICAL, DIMENSION(2) :: cyclic = (/ .TRUE. , .TRUE. /), &
Note: See TracChangeset
for help on using the changeset viewer.