- Timestamp:
- Oct 11, 2007 3:27:59 AM (17 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/CURRENT_MODIFICATIONS
r116 r117 11 11 advec_particles after the end of this loop. 12 12 13 advec_particles, check_parameters, init_grid, init_pegrid, modules, package_parin, read_var_list, user_interface, write_var_list13 advec_particles, check_parameters, header, init_grid, init_particles, init_pegrid, modules, package_parin, read_var_list, user_interface, write_var_list 14 14 15 15 -
palm/trunk/SOURCE/header.f90
r110 r117 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! Output of sorting frequency of particles 7 7 ! 8 8 ! Former revisions: … … 1136 1136 WRITE ( io, 480 ) particle_advection_start, dt_prel, bc_par_lr, & 1137 1137 bc_par_ns, bc_par_b, bc_par_t, particle_maximum_age, & 1138 end_time_prel 1138 end_time_prel, dt_sort_particles 1139 1139 IF ( use_sgs_for_particles ) WRITE ( io, 488 ) dt_min_part 1140 1140 IF ( random_start_position ) WRITE ( io, 481 ) … … 1511 1511 ' bottom: ', A, ' top: ', A/& 1512 1512 ' Maximum particle age: ',F9.1,' s'/ & 1513 ' Advection stopped at t = ',F9.1,' s'/) 1513 ' Advection stopped at t = ',F9.1,' s'/ & 1514 ' Particles are sorted every ',F9.1,' s'/) 1514 1515 481 FORMAT (' Particles have random start positions'/) 1515 1516 482 FORMAT (' Particles are advected only horizontally'/) -
palm/trunk/SOURCE/init_particles.f90
r110 r117 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! 6 ! Sorting of particles only in case of cloud droplets 7 7 ! 8 8 ! Former revisions: … … 387 387 388 388 ! 389 !-- Sort particles in the sequence the gridboxes are stored in the memory 390 CALL sort_particles 389 !-- Sort particles in the sequence the gridboxes are stored in the memory. 390 !-- Only required if cloud droplets are used. 391 IF ( cloud_droplets ) CALL sort_particles 391 392 392 393 !
Note: See TracChangeset
for help on using the changeset viewer.