Changeset 1320 for palm/trunk/SOURCE/lpm_release_set.f90
- Timestamp:
- Mar 20, 2014 8:40:49 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/lpm_release_set.f90
r1310 r1320 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! ONLY-attribute added to USE-statements, 23 ! kind-parameters added to all INTEGER and REAL declaration statements, 24 ! kinds are defined in new module kinds, 25 ! comment fields (!:) to be used for variable explanations added to 26 ! all variable declaration statements 23 27 ! 24 28 ! Former revisions: … … 40 44 !------------------------------------------------------------------------------! 41 45 42 USE control_parameters 43 USE grid_variables 44 USE indices 45 USE particle_attributes 46 USE random_function_mod 46 USE control_parameters, & 47 ONLY: iran, message_string, netcdf_data_format, netcdf_output 48 49 USE grid_variables, & 50 ONLY: dx, dy 51 52 USE indices, & 53 ONLY: nxl, nxr, nyn, nys 54 55 USE kinds 56 57 USE particle_attributes, & 58 ONLY: initial_particles, iran_part, maximum_number_of_particles, & 59 maximum_number_of_tails, minimum_tailpoint_distance, & 60 number_of_initial_particles, number_of_initial_tails, & 61 number_of_particles, number_of_tails, particles, & 62 particle_tail_coordinates, pdx, pdy, pdz, psb, psl, psn, psr, & 63 pss, pst, random_start_position, use_particle_tails 64 65 USE random_function_mod, & 66 ONLY: random_function 47 67 48 68 IMPLICIT NONE 49 69 50 INTEGER :: ie, is, n, nn 70 INTEGER(iwp) :: ie !: 71 INTEGER(iwp) :: is !: 72 INTEGER(iwp) :: n !: 73 INTEGER(iwp) :: nn !: 51 74 52 75
Note: See TracChangeset
for help on using the changeset viewer.