Changeset 1519
- Timestamp:
- Jan 8, 2015 10:20:42 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/lpm_collision_kernels.f90
r1360 r1519 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Bugfix: Using the new particle structure, particles are not sorted by size. 23 ! Hence, computation of collision efficiencies must ensure that the ratio of 24 ! two colliding droplets is < 1. 23 25 ! 24 26 ! Former revisions: … … 846 848 847 849 ir = ira(j) 848 rq = radclass(i) / radclass(j)850 rq = MIN( radclass(i) / radclass(j), radclass(j) / radclass(i) ) 849 851 iq = INT( rq * 20 ) + 1 850 852 iq = MAX( iq , 2) … … 1003 1005 1004 1006 ir = ira(j) 1005 rq = radclass(i) / radclass(j)1007 rq = MIN( radclass(i) / radclass(j), radclass(j) / radclass(i) ) 1006 1008 1007 1009 DO kk = 2, 11
Note: See TracChangeset
for help on using the changeset viewer.