Ignore:
Timestamp:
Mar 5, 2020 3:59:50 PM (5 years ago)
Author:
raasch
Message:

bugfix: cpp-directives for serial mode added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/data_output_3d.f90

    r4360 r4444  
    2525! -----------------
    2626! $Id$
     27! bugfix: cpp-directives for serial mode added
     28!
     29! 4360 2020-01-07 11:25:50Z suehring
    2730! Introduction of wall_flags_total_0, which currently sets bits based on static
    2831! topography information used in wall_flags_static_0
     
    9093
    9194    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,          &
    9496               land_surface, message_string, ntdim_3d, nz_do3d, plant_canopy,  &
    9597               psolver, time_since_reference_point, urban_surface,             &
    9698               varnamelength
    9799
     100#if defined( __parallel )
     101    USE control_parameters,                                                    &
     102        ONLY:  io_blocks, io_group
     103#endif
     104
    98105    USE cpulog,                                                                &
    99106        ONLY:  log_point, cpu_log
    100107
    101 #if defined( __parallel )
    102108    USE indices,                                                               &
    103109        ONLY:  nbgp, nxl, nxlg, nxr, nxrg, nyn, nyng, nys, nysg, nzb, nzt,     &
    104110               wall_flags_total_0
    105 #else
     111
     112#if ! defined( __parallel )
    106113    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
    109115#endif
    110116
Note: See TracChangeset for help on using the changeset viewer.