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

Ignore:
Timestamp:
2015-12-04T17:22:59+01:00 (8 years ago)
Author:
timgraham
Message:

Merged diurnal sst branch

File:
1 edited

Legend:

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

    r5836 r6005  
    5454   USE bdy_par          ! Require lk_bdy 
    5555 
     56   USE diurnal_bulk, ONLY: & 
     57      & ln_diurnal_only  
     58 
    5659   IMPLICIT NONE 
    5760   PRIVATE 
     
    383386      IF( nn_fwb    /= 0 )   CALL sbc_fwb( kt, nn_fwb, nn_fsbc )  ! control the freshwater budget 
    384387 
    385       IF( nn_closea == 1 )   CALL sbc_clo( kt )                   ! treatment of closed sea in the model domain  
    386       !                                                           ! (update freshwater fluxes) 
     388      ! treatment of closed sea in the model domain  
     389      ! (update freshwater fluxes) 
     390      ! Should not be ran if ln_diurnal_only 
     391      IF( .NOT.(ln_diurnal_only) .AND. (nn_closea == 1) )   CALL sbc_clo( kt )    
     392 
    387393!RBbug do not understand why see ticket 667 
    388394!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.