Ignore:
Timestamp:
Oct 3, 2018 2:39:40 AM (6 years ago)
Author:
raasch
Message:

Craik-Leibovich force and wave breaking effects added to ocean mode, header output for ocean mode

File:
1 edited

Legend:

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

    r3298 r3302  
    2525! -----------------
    2626! $Id$
     27! allocate and set stokes drift velocity profiles
     28!
     29! 3298 2018-10-02 12:21:11Z kanani
    2730! Minor formatting (kanani)
    2831! Added CALL to the chem_emissions module (Russo)
     
    788791#endif
    789792    ENDIF
     793
     794!
     795!-- Allocate and set 1d-profiles for Stokes drift velocity. It may be set to
     796!-- non-zero values later in ocean_init
     797    ALLOCATE( u_stokes_zu(nzb:nzt+1), u_stokes_zw(nzb:nzt+1),                  &
     798              v_stokes_zu(nzb:nzt+1), v_stokes_zw(nzb:nzt+1) )
     799    u_stokes_zu(:) = 0.0_wp
     800    u_stokes_zw(:) = 0.0_wp
     801    v_stokes_zu(:) = 0.0_wp
     802    v_stokes_zw(:) = 0.0_wp
    790803
    791804!
Note: See TracChangeset for help on using the changeset viewer.