- Timestamp:
- Oct 23, 2018 3:34:41 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_3d.f90
r3337 r3405 25 25 ! ----------------- 26 26 ! $Id$ 27 ! bugfix: nx, ny are required in non-parallel case 28 ! 29 ! 3337 2018-10-12 15:17:09Z kanani 27 30 ! (from branch resler) 28 31 ! Add Biometeorology … … 242 245 ONLY: gust_data_output_3d, gust_module_enabled 243 246 247 #if defined( __parallel ) 244 248 USE indices, & 245 249 ONLY: nbgp, nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzt, & 246 250 wall_flags_0 251 #else 252 USE indices, & 253 ONLY: nbgp, nx, nxl, nxlg, nxr, nxrg, ny, nyn, nyng, nys, nysg, nzb, & 254 nzt, wall_flags_0 255 #endif 247 256 248 257 USE kinds -
palm/trunk/SOURCE/mod_particle_attributes.f90
r2718 r3405 25 25 ! ----------------- 26 26 ! $Id$ 27 ! bugfix: BIND attribute added to derived type particle_type 28 ! 29 ! 2718 2018-01-02 08:49:38Z maronga 27 30 ! Corrected "Former revisions" section 28 31 ! … … 102 105 MODULE particle_attributes 103 106 107 USE, INTRINSIC :: ISO_C_BINDING 104 108 105 109 USE kinds … … 211 215 212 216 213 TYPE particle_type217 TYPE, BIND(C) :: particle_type 214 218 REAL(wp) :: aux1 !< auxiliary multi-purpose feature 215 219 REAL(wp) :: aux2 !< auxiliary multi-purpose feature
Note: See TracChangeset
for help on using the changeset viewer.