New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 13759 for NEMO/branches/2020/dev_r12702_ASINTER-02_emanuelaclementi_Waves/src/OCE/ZDF – NEMO

Ignore:
Timestamp:
2020-11-09T18:04:19+01:00 (4 years ago)
Author:
emanuelaclementi
Message:

minor changes to include writing statements and update n. of max coupling fields with oasis - tickets #2155 #2339

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r12702_ASINTER-02_emanuelaclementi_Waves/src/OCE/ZDF/zdftke.F90

    r13710 r13759  
    408408 
    409409      IF ( cpl_phioc .and. ln_phioc )  THEN 
    410          SELECT CASE (nn_bc_surf)  ! Dirichlet Boundary Condition using surface TKE flux from waves 
    411  
    412          CASE ( 0 ) 
     410         SELECT CASE (nn_bc_surf)  ! Boundary Condition using surface TKE flux from waves 
     411 
     412         CASE ( 0 ) ! Dirichlet BC 
    413413 
    414414            DO_2D( 0, 0, 0, 0 )    ! en(1)   = rn_ebb taum / rho0  (min value rn_emin0) 
     
    420420            END_2D 
    421421 
    422          CASE ( 1 ) 
     422         CASE ( 1 ) ! Neumann BC 
    423423            DO_2D( 0, 0, 0, 0 ) 
    424424               IF ( phioc(ji,jj) < 0 )  phioc(ji,jj) = 0._wp 
     
    769769         WRITE(numout,*) '      Langmuir cells parametrization              ln_lc     = ', ln_lc 
    770770         WRITE(numout,*) '         coef to compute vertical velocity of LC     rn_lc  = ', rn_lc 
     771         IF ( cpl_phioc .and. ln_phioc )  THEN 
     772            SELECT CASE( nn_bc_surf)             ! Type of scaling under sea-ice 
     773            CASE( 0 )   ;   WRITE(numout,*) '  nn_bc_surf=0  ==>>>   DIRICHLET Surface Boundary Condition using surface TKE flux from waves' 
     774            CASE( 1 )   ;   WRITE(numout,*) '  nn_bc_surf=1  ==>>>   NEUMANN Surface Boundary Condition using surface TKE flux from waves' 
     775            END SELECT 
     776         ENDIF  
    771777         WRITE(numout,*) '      test param. to add tke induced by wind      nn_etau   = ', nn_etau 
    772778         WRITE(numout,*) '          type of tke penetration profile            nn_htau   = ', nn_htau 
Note: See TracChangeset for help on using the changeset viewer.