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 5676 for branches/2015/dev_r5656_Met_Office_3_diurnalSST/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90 – NEMO

Ignore:
Timestamp:
2015-08-10T17:39:59+02:00 (9 years ago)
Author:
jwhile
Message:

Adding cool skin and warm layer + associated modifications

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5656_Met_Office_3_diurnalSST/NEMOGCM/NEMO/OPA_SRC/SBC/sbcmod.F90

    r5643 r5676  
    5555   USE bdy_par          ! Require lk_bdy 
    5656 
     57   USE diurnal_bulk, ONLY: & 
     58      & ln_diurnal_only  
     59 
    5760   IMPLICIT NONE 
    5861   PRIVATE 
     
    404407      IF( nn_fwb    /= 0 )   CALL sbc_fwb( kt, nn_fwb, nn_fsbc )  ! control the freshwater budget 
    405408 
    406       IF( nn_closea == 1 )   CALL sbc_clo( kt )                   ! treatment of closed sea in the model domain  
    407       !                                                           ! (update freshwater fluxes) 
     409      ! treatment of closed sea in the model domain  
     410      ! (update freshwater fluxes) 
     411      ! Should not be ran if ln_diurnal_only 
     412      IF( .NOT.(ln_diurnal_only) .AND. (nn_closea == 1) )   CALL sbc_clo( kt )    
     413 
    408414!RBbug do not understand why see ticket 667 
    409415!clem: it looks like it is necessary for the north fold (in certain circumstances). Don't know why. 
Note: See TracChangeset for help on using the changeset viewer.