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 719 for trunk/NEMO/OPA_SRC/DOM/domain.F90 – NEMO

Ignore:
Timestamp:
2007-10-16T16:59:56+02:00 (17 years ago)
Author:
ctlod
Message:

get back to the nemo_v2_3 version for trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/DOM/domain.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r717 r719  
    1313   USE oce             !  
    1414   USE dom_oce         ! ocean space and time domain 
     15   USE phycst          ! physical constants 
     16   USE in_out_manager  ! I/O manager 
    1517   USE ice_oce         ! ice variables 
    16    USE sbc_oce         ! surface boundary condition: ocean 
    17    USE phycst          ! physical constants 
     18   USE blk_oce         ! bulk variables 
     19   USE flxrnf          ! runoffs 
    1820   USE daymod          ! calendar 
    19    USE in_out_manager  ! I/O manager 
    2021   USE lib_mpp         ! distributed memory computing library 
    2122 
     
    3839   !!---------------------------------------------------------------------- 
    3940   !!   OPA 9.0 , LOCEAN-IPSL (2005)  
    40    !! $Id$ 
     41   !! $Header$  
    4142   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt  
    4243   !!---------------------------------------------------------------------- 
     
    143144      NAMELIST/namrun/ no    , cexper   , ln_rstart , nrstdt , nit000,         & 
    144145         &             nitend, ndate0   , nleapy   , ninist , nstock,          & 
    145          &             nwrite, ln_dimgnnn 
     146         &             nwrite, nrunoff  , ln_dimgnnn 
    146147 
    147148      NAMELIST/namdom/ ntopo , e3zps_min, e3zps_rat, ngrid  , nmsh  ,   & 
    148149         &             nacc  , atfp     , rdt      , rdtmin , rdtmax,   & 
    149          &             rdth  , rdtbt    , nclosea 
     150         &             rdth  , rdtbt    , nfice    , nfbulk , nclosea 
    150151      NAMELIST/namcla/ n_cla 
    151152      !!---------------------------------------------------------------------- 
     
    174175         WRITE(numout,*) '           frequency of restart file       nstock    = ', nstock 
    175176         WRITE(numout,*) '           frequency of output file        nwrite    = ', nwrite 
     177         WRITE(numout,*) '           runoff option                   nrunoff   = ', nrunoff 
    176178         WRITE(numout,*) '           multi file dimgout           ln_dimgnnn   = ', ln_dimgnnn 
    177179      ENDIF 
     
    257259      ENDIF 
    258260 
     261      IF( lk_ice_lim ) THEN 
     262         IF(lwp) WRITE(numout,*) '           ice model coupling frequency      nfice  = ', nfice 
     263         nfbulk = nfice 
     264         IF( MOD( rday, nfice*rdt ) /= 0 ) THEN  
     265            IF(lwp) WRITE(numout,*) ' ' 
     266            IF(lwp) WRITE(numout,*) 'W A R N I N G :  nfice is NOT a multiple of the number of time steps in a day' 
     267            IF(lwp) WRITE(numout,*) ' ' 
     268         ENDIF 
     269         IF(lwp) WRITE(numout,*) '           bulk computation frequency       nfbulk  = ', nfbulk, ' = nfice if ice model used' 
     270         IF(lwp) WRITE(numout,*) '           flag closed sea or not           nclosea = ', nclosea 
     271      ENDIF 
     272 
    259273      ! Default values 
    260274      n_cla = 0 
Note: See TracChangeset for help on using the changeset viewer.