Changeset 3560 for palm/trunk/SOURCE
- Timestamp:
- Nov 23, 2018 9:20:21 AM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/lpm.f90
r2801 r3560 27 27 ! ----------------- 28 28 ! $Id$ 29 ! bugfix to guarantee correct particle releases in case that the release 30 ! interval is smaller than the model timestep 31 ! 32 ! 2801 2018-02-14 16:01:55Z thiele 29 33 ! Changed lpm from subroutine to module. 30 34 ! Introduce particle transfer in nested models. … … 172 176 USE particle_attributes, & 173 177 ONLY: collision_kernel, deleted_particles, deallocate_memory, & 174 dt_write_particle_data, dt_prel, end_time_prel, 175 grid_particles, merging, number_of_particles,&178 dt_write_particle_data, dt_prel, end_time_prel, grid_particles, & 179 last_particle_release_time, merging, number_of_particles, & 176 180 number_of_particle_groups, particles, particle_groups, & 177 prt_count, splitting, step_dealloc, time_ prel,&178 t ime_write_particle_data, trlp_count_sum, trlp_count_recv_sum,&179 trnp_count_ sum, trnp_count_recv_sum, trrp_count_sum, &180 tr rp_count_recv_sum, trsp_count_sum, trsp_count_recv_sum,&181 use_sgs_for_particles,write_particle_statistics181 prt_count, splitting, step_dealloc, time_write_particle_data, & 182 trlp_count_sum, trlp_count_recv_sum, trnp_count_sum, & 183 trnp_count_recv_sum, trrp_count_sum, trrp_count_recv_sum, & 184 trsp_count_sum, trsp_count_recv_sum, use_sgs_for_particles, & 185 write_particle_statistics 182 186 183 187 USE pegrid … … 274 278 ! 275 279 !-- If necessary, release new set of particles 276 IF ( time_prel >= dt_prel .AND. end_time_prel > simulated_time ) THEN 277 278 CALL lpm_create_particle(PHASE_RELEASE) 279 ! 280 !-- The MOD function allows for changes in the output interval with 281 !-- restart runs. 282 time_prel = MOD( time_prel, MAX( dt_prel, dt_3d ) ) 280 IF ( ( simulated_time - last_particle_release_time ) >= dt_prel .AND. end_time_prel > simulated_time ) & 281 THEN 282 283 DO WHILE ( ( simulated_time - last_particle_release_time ) >= dt_prel ) 284 285 CALL lpm_create_particle( phase_release ) 286 last_particle_release_time = last_particle_release_time + dt_prel 287 288 ENDDO 283 289 284 290 ENDIF … … 429 435 430 436 ! 431 !-- Increment time since last release432 IF ( dt_3d_reached ) time_prel = time_prel + dt_3d433 !434 437 !-- Apply splitting and merging algorithm 435 438 IF ( cloud_droplets ) THEN -
palm/trunk/SOURCE/lpm_init.f90
r3524 r3560 25 25 ! ----------------- 26 26 ! $Id$ 27 ! set the first particle release time 28 ! 29 ! 3524 2018-11-14 13:36:44Z raasch 27 30 ! added missing working precision 28 31 ! … … 260 263 curvature_solution_effects, density_ratio, grid_particles, & 261 264 isf,i_splitting_mode, initial_weighting_factor, ibc_par_b, & 262 ibc_par_lr, ibc_par_ns, ibc_par_t, iran_part, log_z_z0, & 265 ibc_par_lr, ibc_par_ns, ibc_par_t, iran_part, & 266 last_particle_release_time, log_z_z0, & 263 267 max_number_of_particle_groups, min_nr_particle, & 264 268 number_concentration, & … … 654 658 iran_part = iran_part + myid 655 659 656 CALL lpm_create_particle (PHASE_INIT) 660 ! 661 !-- Create the particle set, and set the initial particles 662 CALL lpm_create_particle( phase_init ) 663 last_particle_release_time = particle_advection_start 664 657 665 ! 658 666 !-- User modification of initial particles -
palm/trunk/SOURCE/lpm_read_restart_file.f90
r3049 r3560 25 25 ! ----------------- 26 26 ! $Id$ 27 ! time_prel replaced by last_particle_release_time 28 ! 29 ! 3049 2018-05-29 13:52:36Z Giersch 27 30 ! Error messages revised 28 31 ! … … 93 96 USE kinds 94 97 95 USE lpm_pack_and_sort_mod, 98 USE lpm_pack_and_sort_mod, & 96 99 ONLY: lpm_sort_in_subboxes 97 100 98 101 USE particle_attributes, & 99 102 ONLY: alloc_factor, bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, & 100 grid_particles, min_nr_particle, number_of_particles,&101 number_of_particle _groups, particle_groups, particle_type,&102 p rt_count, time_prel, time_write_particle_data, zero_particle103 grid_particles, last_particle_release_time, min_nr_particle, & 104 number_of_particles, number_of_particle_groups, particle_groups,& 105 particle_type, prt_count, time_write_particle_data, zero_particle 103 106 104 107 USE pegrid … … 153 156 !-- allocate them and read their contents. 154 157 READ ( 90 ) bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, & 155 number_of_particle_groups, particle_groups, time_prel, &156 time_write_particle_data158 last_particle_release_time, number_of_particle_groups, & 159 particle_groups, time_write_particle_data 157 160 158 161 ALLOCATE( prt_count(nzb:nzt+1,nysg:nyng,nxlg:nxrg), & -
palm/trunk/SOURCE/lpm_write_restart_file.f90
r2718 r3560 25 25 ! ----------------- 26 26 ! $Id$ 27 ! time_prel replaced by last_particle_release_time 28 ! 29 ! 2718 2018-01-02 08:49:38Z maronga 27 30 ! Corrected "Former revisions" section 28 31 ! … … 75 78 USE particle_attributes, & 76 79 ONLY: bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, grid_particles, & 77 number_of_particles, number_of_particle_groups,&78 particles, particle_groups, prt_count, time_prel,&79 time_write_particle_data80 last_particle_release_time, number_of_particles, & 81 number_of_particle_groups, particles, particle_groups, & 82 prt_count, time_write_particle_data 80 83 81 84 USE pegrid … … 119 122 !-- Write some particle parameters, the size of the particle arrays as 120 123 !-- well as other dvrp-plot variables. 121 WRITE ( 90 ) bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, &122 number_of_particle_groups, particle_groups, time_prel,&123 time_write_particle_data124 WRITE ( 90 ) bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, & 125 last_particle_release_time, number_of_particle_groups, & 126 particle_groups, time_write_particle_data 124 127 125 128 WRITE ( 90 ) prt_count -
palm/trunk/SOURCE/mod_particle_attributes.f90
r3405 r3560 25 25 ! ----------------- 26 26 ! $Id$ 27 ! time_prel replaced by last_particle_release_time 28 ! 29 ! 3405 2018-10-23 15:34:41Z raasch 27 30 ! bugfix: BIND attribute added to derived type particle_type 28 31 ! … … 186 189 REAL(wp) :: end_time_prel = 9999999.9_wp !< namelist parameter (see documentation) 187 190 REAL(wp) :: initial_weighting_factor = 1.0_wp !< namelist parameter (see documentation) 191 REAL(wp) :: last_particle_release_time = 0.0_wp !< last time of particle release 188 192 REAL(wp) :: log_sigma(3) = 1.0_wp !< namelist parameter (see documentation) 189 193 REAL(wp) :: na(3) = 0.0_wp !< namelist parameter (see documentation) … … 194 198 REAL(wp) :: rm(3) = 1.0E-6_wp !< namelist parameter (see documentation) 195 199 REAL(wp) :: sgs_wf_part !< parameter for sgs 196 REAL(wp) :: time_prel = 0.0_wp !< time for particle release197 200 REAL(wp) :: time_write_particle_data = 0.0_wp !< write particle data at current time on file 198 201 REAL(wp) :: weight_factor_merge = -1.0_wp !< namelist parameter (see documentation) -
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r3556 r3560 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! Some formatting adjustment22 ! 23 23 ! 24 24 ! Former revisions: 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Some formatting adjustment 28 ! 29 ! 3556 2018-11-22 14:11:57Z suehring 27 30 ! variables documented and unused variables removed 28 31 ! -
palm/trunk/SOURCE/surface_mod.f90
r3556 r3560 21 21 ! Current revisions: 22 22 ! ------------------ 23 ! Surface restoring in restarts commented. Some formatting.23 ! 24 24 ! 25 25 ! Former revisions: 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Surface restoring in restarts commented. Some formatting. 29 ! 30 ! 3556 2018-11-22 14:11:57Z suehring 28 31 ! variables documented 29 32 !
Note: See TracChangeset
for help on using the changeset viewer.