Changeset 4444 for palm/trunk/SOURCE/data_output_3d.f90
- Timestamp:
- Mar 5, 2020 3:59:50 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_3d.f90
r4360 r4444 25 25 ! ----------------- 26 26 ! $Id$ 27 ! bugfix: cpp-directives for serial mode added 28 ! 29 ! 4360 2020-01-07 11:25:50Z suehring 27 30 ! Introduction of wall_flags_total_0, which currently sets bits based on static 28 31 ! topography information used in wall_flags_static_0 … … 90 93 91 94 USE control_parameters, & 92 ONLY: debug_output_timestep, & 93 do3d, do3d_no, do3d_time_count, io_blocks, io_group, & 95 ONLY: debug_output_timestep, do3d, do3d_no, do3d_time_count, & 94 96 land_surface, message_string, ntdim_3d, nz_do3d, plant_canopy, & 95 97 psolver, time_since_reference_point, urban_surface, & 96 98 varnamelength 97 99 100 #if defined( __parallel ) 101 USE control_parameters, & 102 ONLY: io_blocks, io_group 103 #endif 104 98 105 USE cpulog, & 99 106 ONLY: log_point, cpu_log 100 107 101 #if defined( __parallel )102 108 USE indices, & 103 109 ONLY: nbgp, nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzt, & 104 110 wall_flags_total_0 105 #else 111 112 #if ! defined( __parallel ) 106 113 USE indices, & 107 ONLY: nbgp, nx, nxl, nxlg, nxr, nxrg, ny, nyn, nyng, nys, nysg, nzb, & 108 nzt, wall_flags_total_0 114 ONLY: nx, ny 109 115 #endif 110 116
Note: See TracChangeset
for help on using the changeset viewer.