- Timestamp:
- Apr 20, 2016 9:36:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/lpm_collision_kernels.f90
r1874 r1880 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! Bugfix: The index of the larger particle has to be chosen for interpolation. 22 22 ! 23 23 ! Former revisions: … … 27 27 ! 1873 2016-04-18 14:50:06Z maronga 28 28 ! Module renamed (removed _mod) 29 !30 29 ! 31 30 ! 1858 2016-04-13 13:12:11Z hoffmann … … 786 785 DO i = 1, j 787 786 788 ir = ira(j)787 ir = MAX( ira(i), ira(j) ) 789 788 rq = MIN( radclass(i) / radclass(j), radclass(j) / radclass(i) ) 790 789 iq = INT( rq * 20 ) + 1 … … 945 944 DO i = 1, j 946 945 947 ir = ira(j)946 ir = MAX( ira(i), ira(j) ) 948 947 rq = MIN( radclass(i) / radclass(j), radclass(j) / radclass(i) ) 949 948
Note: See TracChangeset
for help on using the changeset viewer.