Changeset 212 for palm/trunk/SOURCE
- Timestamp:
- Nov 11, 2008 9:09:24 AM (16 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/CURRENT_MODIFICATIONS
r211 r212 42 42 dwdy, dvdx and dwdx. (production_e) 43 43 44 combine_plot_fields, header, production_e 44 Bugfix in calculating k index in case of oceans runs. (sort_particles) 45 46 advec_particles, combine_plot_fields, header, production_e -
palm/trunk/SOURCE/advec_particles.f90
r198 r212 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! Bugfix in calculating k index in case of oceans runs (sort_particles) 6 7 ! TEST: PRINT statements on unit 9 (commented out) 7 8 ! … … 1875 1876 1876 1877 ! 1877 !-- User-defined actions after the evaluation of the new particle position1878 !-- User-defined actions after the calculation of the new particle position 1878 1879 CALL user_advec_particles 1879 1880 … … 3890 3891 i = ( particles(n)%x + 0.5 * dx ) * ddx 3891 3892 j = ( particles(n)%y + 0.5 * dy ) * ddy 3892 k = particles(n)%z / dz + 1 + offset_ocean_nzt _m13893 k = particles(n)%z / dz + 1 + offset_ocean_nzt 3893 3894 ! only exact if equidistant 3894 3895 … … 3925 3926 i = ( particles(n)%x + 0.5 * dx ) * ddx 3926 3927 j = ( particles(n)%y + 0.5 * dy ) * ddy 3927 k = particles(n)%z / dz + 1 + offset_ocean_nzt _m13928 k = particles(n)%z / dz + 1 + offset_ocean_nzt 3928 3929 ! only exact if equidistant 3929 3930
Note: See TracChangeset
for help on using the changeset viewer.