Changeset 376 for palm/trunk/SOURCE


Ignore:
Timestamp:
Sep 3, 2009 10:12:29 AM (15 years ago)
Author:
raasch
Message:

bugfix concerning output of averaged 2d/3d quantities

Location:
palm/trunk/SOURCE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/CURRENT_MODIFICATIONS

    r367 r376  
    121121Errors:
    122122------
     123Bugfix: output of averaged 2d/3d quantities requires that an avaraging
     124interval has been set, respective error message is included (check_parameters)
     125
    123126Bugfix: Output on unit 14 only if requested by write_binary.
    124127(user_last_actions)
  • palm/trunk/SOURCE/check_parameters.f90

    r367 r376  
    44! Actual revisions:
    55! -----------------
     6! Bugfix: output of averaged 2d/3d quantities requires that an avaraging
     7! interval has been set, respective error message is included
    68! bc_lr_cyc and bc_ns_cyc are set,
    79! initializing_actions='read_data_for_recycling' renamed to 'cyclic_fill'
     
    24782480
    24792481!
     2482!-- Averaged 2d or 3d output requires that an averaging interval has been set
     2483    IF ( doav_n > 0  .AND.  averaging_interval == 0.0 )  THEN
     2484       WRITE( message_string, * )  'output of averaged quantity "',            &
     2485                                   TRIM( doav(1) ), '_av" requires to set a ', &
     2486                                   'non-zero & averaging interval'
     2487       CALL message( 'check_parameters', 'PA0323', 1, 2, 0, 6, 0 )
     2488    ENDIF
     2489
     2490!
    24802491!-- Check sectional planes and store them in one shared array
    24812492    IF ( ANY( section_xy > nz + 1 ) )  THEN
Note: See TracChangeset for help on using the changeset viewer.