- Timestamp:
- Mar 13, 2007 4:51:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/advec_particles.f90
r63 r64 7 7 ! particle_boundary_conds, 8 8 ! vertical walls are regarded in the SGS model, 9 ! + user_advec_particles, particles-package is now part of the defaut code 9 ! + user_advec_particles, particles-package is now part of the defaut code, 10 ! array arguments in sendrecv calls have to refer to first element (1) due to 11 ! mpich (mpiI) interface requirements 10 12 ! TEST: PRINT statements on unit 9 (commented out) 11 13 ! … … 2315 2317 ENDIF 2316 2318 2317 CALL MPI_SENDRECV( trlp(1) , trlp_count, mpi_particle_type, pleft, 1,&2318 p articles(number_of_particles+1), trrp_count_recv,&2319 mpi_particle_type, pright, 1,&2319 CALL MPI_SENDRECV( trlp(1)%age, trlp_count, mpi_particle_type, & 2320 pleft, 1, particles(number_of_particles+1)%age, & 2321 trrp_count_recv, mpi_particle_type, pright, 1, & 2320 2322 comm2d, status, ierr ) 2321 2323 … … 2392 2394 ENDIF 2393 2395 2394 CALL MPI_SENDRECV( trrp(1) , trrp_count, mpi_particle_type, pright, 1,&2395 p articles(number_of_particles+1), trlp_count_recv,&2396 mpi_particle_type, pleft, 1,&2396 CALL MPI_SENDRECV( trrp(1)%age, trrp_count, mpi_particle_type, & 2397 pright, 1, particles(number_of_particles+1)%age, & 2398 trlp_count_recv, mpi_particle_type, pleft, 1, & 2397 2399 comm2d, status, ierr ) 2398 2400 … … 2756 2758 ENDIF 2757 2759 2758 CALL MPI_SENDRECV( trsp(1) , trsp_count, mpi_particle_type, psouth, 1,&2759 p articles(number_of_particles+1), trnp_count_recv,&2760 mpi_particle_type, pnorth, 1,&2760 CALL MPI_SENDRECV( trsp(1)%age, trsp_count, mpi_particle_type, & 2761 psouth, 1, particles(number_of_particles+1)%age, & 2762 trnp_count_recv, mpi_particle_type, pnorth, 1, & 2761 2763 comm2d, status, ierr ) 2762 2764 … … 2833 2835 ENDIF 2834 2836 2835 CALL MPI_SENDRECV( trnp(1) , trnp_count, mpi_particle_type, pnorth, 1,&2836 p articles(number_of_particles+1), trsp_count_recv,&2837 mpi_particle_type, psouth, 1,&2837 CALL MPI_SENDRECV( trnp(1)%age, trnp_count, mpi_particle_type, & 2838 pnorth, 1, particles(number_of_particles+1)%age, & 2839 trsp_count_recv, mpi_particle_type, psouth, 1, & 2838 2840 comm2d, status, ierr ) 2839 2841
Note: See TracChangeset
for help on using the changeset viewer.