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 1218 for trunk/NEMO/OPA_SRC/SBC/sbc_oce.F90 – NEMO

Ignore:
Timestamp:
2008-10-28T10:12:16+01:00 (16 years ago)
Author:
smasson
Message:

first implementation of the new coupling interface in the trunk, see ticket:155

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/SBC/sbc_oce.F90

    r1156 r1218  
    44   !! Surface module :   variables defined in core memory  
    55   !!====================================================================== 
    6    !! History :  9.0   !  06-06  (G. Madec)  Original code 
     6   !! History :  3.0   !  2006-06  (G. Madec)  Original code 
     7   !!             -    !  2008-08  (G. Madec)  namsbc moved from sbcmod 
    78   !!---------------------------------------------------------------------- 
    89   USE par_oce          ! ocean parameters 
     
    1112   PRIVATE 
    1213    
     14   !!---------------------------------------------------------------------- 
     15   !!           Namelist for the Ocean Surface Boundary Condition 
     16   !!---------------------------------------------------------------------- 
     17   !                                             !! * namsbc namelist * 
     18   LOGICAL , PUBLIC ::   ln_ana      = .FALSE.   !: analytical boundary condition flag 
     19   LOGICAL , PUBLIC ::   ln_flx      = .FALSE.   !: flux      formulation 
     20   LOGICAL , PUBLIC ::   ln_blk_clio = .FALSE.   !: CLIO bulk formulation 
     21   LOGICAL , PUBLIC ::   ln_blk_core = .FALSE.   !: CORE bulk formulation 
     22   LOGICAL , PUBLIC ::   ln_cpl      = .FALSE.   !: coupled   formulation (overwritten by key_sbc_coupled ) 
     23   LOGICAL , PUBLIC ::   ln_dm2dc    = .FALSE.   !: Daily mean to Diurnal Cycle short wave (qsr) 
     24   LOGICAL , PUBLIC ::   ln_rnf      = .FALSE.   !: runoffs / runoff mouths 
     25   LOGICAL , PUBLIC ::   ln_ssr      = .FALSE.   !: Sea Surface restoring on SST and/or SSS       
     26   INTEGER , PUBLIC ::   nn_ice      = 0         !: flag on ice in the surface boundary condition (=0/1/2/3) 
     27   INTEGER , PUBLIC ::   nn_fwb      = 0         !: type of FreshWater Budget control (=0/1/2) 
     28   INTEGER , PUBLIC ::   nn_ico_cpl  = 0         !: ice-ocean coupling indicator 
     29   !                                             !  = 0   LIM-3 old case 
     30   !                                             !  = 1   stresses computed using now ocean velocity 
     31   !                                             !  = 2   combination of 0 and 1 cases 
     32 
    1333   !!---------------------------------------------------------------------- 
    1434   !!              Ocean Surface Boundary Condition fields 
     
    3454   !!---------------------------------------------------------------------- 
    3555   !!   OPA 9.0 , LOCEAN-IPSL (2006)  
    36    !! $Id$ 
     56   !! $ Id: $ 
    3757   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    3858   !!====================================================================== 
Note: See TracChangeset for help on using the changeset viewer.