Ignore:
Timestamp:
Aug 24, 2007 3:10:38 PM (17 years ago)
Author:
letzel
Message:
  • Improved coupler: evaporation - salinity-flux coupling for humidity = .T.,

avoid MPI hangs when coupled runs terminate, add DOC/app/chapter_3.8;

  • Optional calculation of km and kh from initial TKE e_init;
  • Default initialization of km,kh = 0.00001 for ocean = .T.;
  • Allow data_output_pr= q, wq, w"q", w*q* for humidity = .T.;
  • Bugfix: Rayleigh damping for ocean fixed.
File:
1 edited

Legend:

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

    r103 r108  
    66! Output of informations for coupled model runs (boundary conditions etc.)
    77! + output of momentumfluxes at the top boundary
     8! Rayleigh damping for ocean, e_init
    89!
    910! Former revisions:
     
    241242    IF ( use_upstream_for_tke )  WRITE ( io, 143 )
    242243    IF ( rayleigh_damping_factor /= 0.0 )  THEN
    243        WRITE ( io, 123 )  rayleigh_damping_height, rayleigh_damping_factor
     244       IF ( .NOT. ocean )  THEN
     245          WRITE ( io, 123 )  'above', rayleigh_damping_height, &
     246               rayleigh_damping_factor
     247       ELSE
     248          WRITE ( io, 123 )  'below', rayleigh_damping_height, &
     249               rayleigh_damping_factor
     250       ENDIF
    244251    ENDIF
    245252    IF ( humidity )  THEN
     
    10911098    ENDIF
    10921099    IF ( .NOT. constant_diffusion)  THEN
     1100       IF ( e_init > 0.0 )  WRITE ( io, 455 )  e_init
    10931101       IF ( e_min > 0.0 )  WRITE ( io, 454 )  e_min
    10941102       IF ( wall_adjustment )  WRITE ( io, 453 )  wall_adjustment_factor
     
    12401248                  ' timestep changes')
    12411249122 FORMAT (' --> Time differencing scheme: ',A)
    1242 123 FORMAT (' --> Rayleigh-Damping active, starts above z = ',F8.2,' m'/ &
     1250123 FORMAT (' --> Rayleigh-Damping active, starts ',A,' z = ',F8.2,' m'/ &
    12431251            '     maximum damping coefficient: ',F5.3, ' 1/s')
    12441252124 FORMAT ('     Spline-overshoots are being suppressed')
     
    14681476453 FORMAT ('   Mixing length is limited to ',F4.2,' * z')
    14691477454 FORMAT ('   TKE is not allowed to fall below ',E9.2,' (m/s)**2')
     1478455 FORMAT ('   initial TKE is prescribed as ',E9.2,' (m/s)**2')
    14701479470 FORMAT (//' Actions during the simulation:'/ &
    14711480              ' -----------------------------'/)
Note: See TracChangeset for help on using the changeset viewer.