Changeset 4180 for palm/trunk/SOURCE/lagrangian_particle_model_mod.f90
- Timestamp:
- Aug 21, 2019 2:37:54 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/lagrangian_particle_model_mod.f90
r4168 r4180 71 71 ! interval is smaller than the model timestep 72 72 ! 73 ! 2801 2018-02-14 16:01:55Z thiele74 ! Changed lpm from subroutine to module.75 ! Introduce particle transfer in nested models.76 !77 ! 2718 2018-01-02 08:49:38Z maronga78 ! Corrected "Former revisions" section79 !80 ! 2701 2017-12-15 15:40:50Z suehring81 ! Changes from last commit documented82 !83 ! 2698 2017-12-14 18:46:24Z suehring84 ! Grid indices passed to lpm_boundary_conds. (responsible Philipp Thiele)85 !86 ! 2696 2017-12-14 17:12:51Z kanani87 ! Change in file header (GPL part)88 !89 ! 2606 2017-11-10 10:36:31Z schwenkel90 ! Changed particle box locations: center of particle box now coincides91 ! with scalar grid point of same index.92 ! Renamed module and subroutines: lpm_pack_arrays_mod -> lpm_pack_and_sort_mod93 ! lpm_pack_all_arrays -> lpm_sort_and_delete, lpm_pack_arrays -> lpm_pack94 ! lpm_sort -> lpm_sort_timeloop_done95 !96 ! 2418 2017-09-06 15:24:24Z suehring97 ! Major bugfixes in modeling SGS particle speeds (since revision 1359).98 ! Particle sorting added to distinguish between already completed and99 ! non-completed particles.100 !101 ! 2263 2017-06-08 14:59:01Z schwenkel102 ! Implemented splitting and merging algorithm103 !104 ! 2233 2017-05-30 18:08:54Z suehring105 !106 ! 2232 2017-05-30 17:47:52Z suehring107 ! Adjustments to new topography concept108 !109 ! 2000 2016-08-20 18:09:15Z knoop110 ! Forced header and separation lines into 80 columns111 !112 ! 1936 2016-06-13 13:37:44Z suehring113 ! Call routine for deallocation of unused memory.114 ! Formatting adjustments115 !116 ! 1929 2016-06-09 16:25:25Z suehring117 ! Call wall boundary conditions only if particles are in the vertical range of118 ! topography.119 !120 ! 1822 2016-04-07 07:49:42Z hoffmann121 ! Tails removed.122 !123 ! Initialization of sgs model not necessary for the use of cloud_droplets and124 ! use_sgs_for_particles.125 !126 ! lpm_release_set integrated.127 !128 ! Unused variabled removed.129 !130 ! 1682 2015-10-07 23:56:08Z knoop131 ! Code annotations made doxygen readable132 !133 ! 1416 2014-06-04 16:04:03Z suehring134 ! user_lpm_advec is called for each gridpoint.135 ! Bugfix: in order to prevent an infinite loop, time_loop_done is set .TRUE.136 ! at the head of the do-loop.137 !138 ! 1359 2014-04-11 17:15:14Z hoffmann139 ! New particle structure integrated.140 ! Kind definition added to all floating point numbers.141 !142 ! 1320 2014-03-20 08:40:49Z raasch143 ! ONLY-attribute added to USE-statements,144 ! kind-parameters added to all INTEGER and REAL declaration statements,145 ! kinds are defined in new module kinds,146 ! revision history before 2012 removed,147 ! comment fields (!:) to be used for variable explanations added to148 ! all variable declaration statements149 !150 ! 1318 2014-03-17 13:35:16Z raasch151 ! module interfaces removed152 !153 ! 1036 2012-10-22 13:43:42Z raasch154 ! code put under GPL (PALM 3.9)155 !156 ! 851 2012-03-15 14:32:58Z raasch157 ! Bugfix: resetting of particle_mask and tail mask moved from routine158 ! lpm_exchange_horiz to here (end of sub-timestep loop)159 !160 ! 849 2012-03-15 10:35:09Z raasch161 ! original routine advec_particles split into several subroutines and renamed162 ! lpm163 !164 ! 831 2012-02-22 00:29:39Z raasch165 ! thermal_conductivity_l and diff_coeff_l now depend on temperature and166 ! pressure167 !168 ! 828 2012-02-21 12:00:36Z raasch169 ! fast hall/wang kernels with fixed radius/dissipation classes added,170 ! particle feature color renamed class, routine colker renamed171 ! recalculate_kernel,172 ! lower limit for droplet radius changed from 1E-7 to 1E-8173 !174 ! Bugfix: transformation factor for dissipation changed from 1E5 to 1E4175 !176 ! 825 2012-02-19 03:03:44Z raasch177 ! droplet growth by condensation may include curvature and solution effects,178 ! initialisation of temporary particle array for resorting removed,179 ! particle attributes speed_x|y|z_sgs renamed rvar1|2|3,180 ! module wang_kernel_mod renamed lpm_collision_kernels_mod,181 ! wang_collision_kernel renamed wang_kernel182 !183 !184 ! Revision 1.1 1999/11/25 16:16:06 raasch185 ! Initial revision186 !187 73 ! 188 74 ! Description:
Note: See TracChangeset
for help on using the changeset viewer.