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

Ignore:
Timestamp:
2008-04-22T20:13:41+02:00 (16 years ago)
Author:
rblod
Message:

Update 1D configuration according to SBC and LIM3, see ticket #117

File:
1 edited

Legend:

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

    r888 r900  
    1212   !!   'key_lim2' :                                  LIM 2.0 sea-ice model 
    1313   !!---------------------------------------------------------------------- 
    14    !!---------------------------------------------------------------------- 
    1514   !!   sbc_ice_lim_2  : sea-ice model time-stepping and 
    1615   !!                    update ocean sbc over ice-covered area 
    1716   !!---------------------------------------------------------------------- 
    1817   USE oce             ! ocean dynamics and tracers 
     18   USE c1d             ! 1d configuration 
    1919   USE dom_oce         ! ocean space and time domain 
    2020   USE ice_2 
     
    5858#  include "vectopt_loop_substitute.h90" 
    5959   !!---------------------------------------------------------------------- 
    60    !!   OPA 9.0 , LOCEAN-IPSL (2006)  
    61    !! $ Id: $ 
     60   !! NEMO/SBC  3.0 , LOCEAN-IPSL (2008)  
     61   !! $Id: $ 
    6262   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    6363   !!---------------------------------------------------------------------- 
     
    177177         !  Ice model step  ! 
    178178         ! ---------------- ! 
    179          ;                              CALL lim_rst_opn_2  ( kt )      ! Open Ice restart file 
    180          ;                              CALL lim_dyn_2      ( kt )      ! Ice dynamics    ( rheology/dynamics ) 
    181          ;                              CALL lim_trp_2      ( kt )      ! Ice transport   ( Advection/diffusion ) 
    182          IF( ln_limdmp )                CALL lim_dmp_2      ( kt )      ! Ice damping  
    183          ;                              CALL lim_thd_2      ( kt )      ! Ice thermodynamics  
    184          ;                              CALL lim_sbc_2      ( kt )      ! Ice/Ocean Mass & Heat fluxes  
     179                                        CALL lim_rst_opn_2  ( kt )      ! Open Ice restart file 
     180         IF( .NOT. lk_c1d ) THEN                                        ! Ice dynamics & transport (not in 1D case) 
     181                                        CALL lim_dyn_2      ( kt )           ! Ice dynamics    ( rheology/dynamics ) 
     182                                        CALL lim_trp_2      ( kt )           ! Ice transport   ( Advection/diffusion ) 
     183            IF( ln_limdmp )             CALL lim_dmp_2      ( kt )           ! Ice damping  
     184         ENDIF 
     185                                        CALL lim_thd_2      ( kt )      ! Ice thermodynamics  
     186                                        CALL lim_sbc_2      ( kt )      ! Ice/Ocean Mass & Heat fluxes  
    185187         IF( MOD( kt+nn_fsbc-1, ninfo ) == 0 .OR.   & 
    186188            &  ntmoy == 1 )             CALL lim_dia_2      ( kt )      ! Ice Diagnostics  
    187          ;                              CALL lim_wri_2      ( kt )      ! Ice outputs  
     189                                        CALL lim_wri_2      ( kt )      ! Ice outputs  
    188190         IF( lrst_ice )                 CALL lim_rst_write_2( kt )      ! Ice restart file  
    189191         ! 
Note: See TracChangeset for help on using the changeset viewer.