Ignore:
Timestamp:
May 22, 2019 6:08:09 PM (5 years ago)
Author:
suehring
Message:

new module for diagnostic output quantities added + output of turbulence intensity

File:
1 edited

Legend:

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

    r3885 r3994  
    2525! -----------------
    2626! $Id$
     27! new module for calculation and output of diagnostic quantities added
     28!
     29! 3885 2019-04-11 11:29:34Z kanani
    2730! Changes related to global restructuring of location messages and introduction
    2831! of additional debug messages
     
    300303    USE date_and_time_mod,                                                     &
    301304        ONLY:  calc_date_and_time, init_date_and_time
     305
     306    USE diagnostic_output_quantities_mod,                                      &
     307        ONLY:  diagnostic_output_quantities_calculate,                         &
     308               timestep_number_at_prev_calc
    302309
    303310    USE indices,                                                               &
     
    558565!-- If required, output of initial arrays
    559566    IF ( do2d_at_begin )  THEN
     567       CALL diagnostic_output_quantities_calculate    !TODO, will be called twice
     568
    560569       CALL data_output_2d( 'xy', 0 )
    561570       CALL data_output_2d( 'xz', 0 )
     
    564573
    565574    IF ( do3d_at_begin )  THEN
     575       CALL diagnostic_output_quantities_calculate    !TODO, will be called twice
     576
    566577       CALL data_output_3d( 0 )
    567578    ENDIF
Note: See TracChangeset for help on using the changeset viewer.