Ignore:
Timestamp:
Mar 27, 2018 3:52:42 PM (6 years ago)
Author:
suehring
Message:

Nesting in RANS-LES and RANS-RANS mode enabled; synthetic turbulence generator at all lateral boundaries in nesting or non-cyclic forcing mode; revised Inifor initialization in nesting mode

File:
1 edited

Legend:

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

    r2934 r2938  
    2525! -----------------
    2626! $Id$
     27! - Revise Inifor initialization for geostrophic wind components
     28! - Initialize synthetic turbulence generator in case of Inifor initialization 
     29!
     30! 2936 2018-03-27 14:49:27Z suehring
    2731! Synchronize parent and child models after initialization.
    2832! Remove obsolete masking of topography grid points for Runge-Kutta weighted
     
    11891193!--           are not identical to the initial wind profiles in this case.
    11901194!--           This need to be further revised.
    1191 !           ug(:) = u_init(:)
    1192 !           vg(:) = v_init(:)
     1195          IF ( init_3d%from_file_ug )  THEN
     1196             ug(:) = init_3d%ug_init(:)
     1197          ENDIF
     1198          IF ( init_3d%from_file_vg )  THEN
     1199             vg(:) = init_3d%vg_init(:)
     1200          ENDIF
     1201
     1202          ug(nzt+1) = ug(nzt)
     1203          vg(nzt+1) = vg(nzt)
     1204
    11931205!
    11941206!--       Set inital w to 0
     
    12431255!--       fluxes, etc.
    12441256          CALL init_surfaces
     1257!
     1258!--       Initialize turbulence generator
     1259          IF( use_syn_turb_gen )  CALL stg_init
    12451260
    12461261          CALL location_message( 'finished', .TRUE. )
     
    13351350!
    13361351!--       Overwrite initial profiles in case of synthetic turbulence generator
    1337           IF( use_syn_turb_gen ) THEN
    1338              CALL stg_init
    1339           ENDIF
     1352          IF( use_syn_turb_gen )  CALL stg_init
    13401353
    13411354!
Note: See TracChangeset for help on using the changeset viewer.