Changeset 2978 for palm/trunk/UTIL
- Timestamp:
- Apr 17, 2018 12:08:01 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/read_prt_data.f90
r2718 r2978 25 25 ! ----------------- 26 26 ! $Id: read_prt_data.f90 2696 2017-12-14 17:12:51Z kanani $ 27 ! Adapted for changed particle attributes 28 ! 29 ! 2696 2017-12-14 17:12:51Z kanani 27 30 ! Corrected "Former revisions" section 28 31 ! … … 59 62 60 63 TYPE particle_type 61 SEQUENCE 62 REAL(KIND=8) :: radius, age, age_m, dt_sum, user, e_m, & 63 origin_x, origin_y, origin_z, rvar1, rvar2, rvar3, & 64 speed_x, speed_y, speed_z, weight_factor, x, y, z 65 INTEGER :: class, group, id1, id2 66 LOGICAL :: particle_mask 67 INTEGER :: block_nr 64 SEQUENCE 65 REAL(KIND=8) :: aux1 !< auxiliary multi-purpose feature 66 REAL(KIND=8) :: aux2 !< auxiliary multi-purpose feature 67 REAL(KIND=8) :: radius !< radius of particle 68 REAL(KIND=8) :: age !< age of particle 69 REAL(KIND=8) :: age_m !< 70 REAL(KIND=8) :: dt_sum !< 71 REAL(KIND=8) :: e_m !< interpolated sgs tke 72 REAL(KIND=8) :: origin_x !< origin x-position of particle (changed cyclic bc) 73 REAL(KIND=8) :: origin_y !< origin y-position of particle (changed cyclic bc) 74 REAL(KIND=8) :: origin_z !< origin z-position of particle (changed cyclic bc) 75 REAL(KIND=8) :: rvar1 !< 76 REAL(KIND=8) :: rvar2 !< 77 REAL(KIND=8) :: rvar3 !< 78 REAL(KIND=8) :: speed_x !< speed of particle in x 79 REAL(KIND=8) :: speed_y !< speed of particle in y 80 REAL(KIND=8) :: speed_z !< speed of particle in z 81 REAL(KIND=8) :: weight_factor !< weighting factor 82 REAL(KIND=8) :: x !< x-position 83 REAL(KIND=8) :: y !< y-position 84 REAL(KIND=8) :: z !< z-position 85 INTEGER(KIND=4) :: class !< radius class needed for collision 86 INTEGER(KIND=4) :: group !< number of particle group 87 INTEGER(KIND=8) :: id !< particle ID (64 bit integer) 88 LOGICAL :: particle_mask !< if this parameter is set to false the particle will be deleted 89 INTEGER(KIND=4) :: block_nr !< number for sorting (removable?) 68 90 END TYPE particle_type 91 69 92 70 93 TYPE(particle_type), DIMENSION(:), ALLOCATABLE :: particles_temp
Note: See TracChangeset
for help on using the changeset viewer.