Changeset 2965 for palm/trunk/SOURCE


Ignore:
Timestamp:
Apr 13, 2018 7:37:25 AM (6 years ago)
Author:
scharf
Message:

bugfix: adjusted format string for 1D run control output

File:
1 edited

Legend:

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

    r2918 r2965  
    2525! -----------------
    2626! $Id$
     27! adjusted format string for 1D run control output
     28!
     29! 2918 2018-03-21 15:52:14Z gronemeier
    2730! - rename l_black into l1d_init
    2831! - calculate l_grid within init_1d_model and save it as l1d_init
     
    132135!> @todo harmonize code with new surface_layer_fluxes module
    133136!> @bug 1D model crashes when using small grid spacings in the order of 1 m
    134 !> @fixme option "as_in_3d_model" seems to eb an inappropriate option because
     137!> @fixme option "as_in_3d_model" seems to be an inappropriate option because
    135138!>        the 1D model uses different turbulence closure approaches at least if
    136139!>        the 3D model is set to LES-mode.
     
    315318!
    316319!--       Use the same mixing length as in 3D model (LES-mode)
    317           !### TODO: rename (delete?) this option
    318           !### As the mixing length is different between RANS and LES mode, it
    319           !### must be distinguished here between these modes. For RANS mode,
    320           !### the mixing length is calculated accoding to Blackadar, which is
    321           !### the other option at this point.
    322           !### Maybe delete this option entirely (not appropriate in LES case)
    323           !### 2018-03-20, gronemeier
     320          !@todo: rename (delete?) this option
     321          ! As the mixing length is different between RANS and LES mode, it
     322          ! must be distinguished here between these modes. For RANS mode,
     323          ! the mixing length is calculated accoding to Blackadar, which is
     324          ! the other option at this point.
     325          ! Maybe delete this option entirely (not appropriate in LES case)
     326          ! 2018-03-20, gronemeier
    324327          DO  k = nzb+1, nzt
    325328             l1d_init(k)  = ( dx * dy * dzw(k) )**0.33333333333333_wp
     
    987990100 FORMAT (///'1D run control output:'/ &
    988991              &'------------------------------'// &
    989            &'ITER.  HH:MM:SS    DT      UMAX   VMAX    U*   ALPHA   ENERG.'/ &
     992           &'ITER.   HH:MM:SS    DT      UMAX   VMAX    U*   ALPHA   ENERG.'/ &
    990993           &'-------------------------------------------------------------')
    991 101 FORMAT (I5,2X,A9,1X,F6.2,2X,F6.2,1X,F6.2,1X,F6.3,2X,F5.1,2X,F7.2)
     994101 FORMAT (I7,1X,A9,1X,F6.2,2X,F6.2,1X,F6.2,1X,F6.3,2X,F5.1,2X,F7.2)
    992995
    993996
Note: See TracChangeset for help on using the changeset viewer.