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 1857 for branches/DEV_r1837_mass_heat_salt_fluxes/NEMO/LIM_SRC_2/limdyn_2.F90 – NEMO

Ignore:
Timestamp:
2010-05-03T13:59:46+02:00 (14 years ago)
Author:
gm
Message:

ticket:#665 Reverting previous commit and going back to revision 1850

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DEV_r1837_mass_heat_salt_fluxes/NEMO/LIM_SRC_2/limdyn_2.F90

    r1855 r1857  
    1717   !!---------------------------------------------------------------------- 
    1818   USE dom_oce        ! ocean space and time domain 
    19    USE sbc_oce        ! surface boundary condition : ocean 
    20    USE phycst         ! physical constants 
    21    USE ice_2          ! LIM-2 sea-ice variables 
    22    USE dom_ice_2      ! LIM-2 domain 
    23    USE limistate_2    ! LIM-2 initial state 
    24    USE limrhg_2       ! LIM-2 rheology 
     19   USE sbc_oce        ! 
     20   USE phycst         ! 
     21   USE ice_2          ! 
     22   USE dom_ice_2      ! 
     23   USE limistate_2    ! 
     24   USE limrhg_2       ! ice rheology 
    2525 
    2626   USE lbclnk         ! 
     
    3434   PUBLIC   lim_dyn_2 ! routine called by sbc_ice_lim 
    3535 
     36   !! * Module variables 
    3637   REAL(wp)  ::  rone    = 1.e0   ! constant value 
    3738 
    3839#  include "vectopt_loop_substitute.h90" 
    3940   !!---------------------------------------------------------------------- 
    40    !! NEMO/LIM 3.3,  UCL-LOCEAN-IPSL (2010)  
     41   !!   LIM 2.0,  UCL-LOCEAN-IPSL (2006)  
    4142   !! $Id$ 
    4243   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
     
    5859      !!              - treatment of the case if no ice dynamic 
    5960      !!--------------------------------------------------------------------- 
    60       INTEGER, INTENT(in) ::   kt   ! number of iteration 
    61       !! 
    62       INTEGER  ::   ji, jj        ! dummy loop indices 
    63       INTEGER  ::   i_j1, i_jpj   ! Starting/ending j-indices for rheology 
    64       REAL(wp) ::   zcoef         ! temporary scalar 
     61      INTEGER, INTENT(in) ::   kt     ! number of iteration 
     62      !! 
     63      INTEGER  ::   ji, jj             ! dummy loop indices 
     64      INTEGER  ::   i_j1, i_jpj        ! Starting/ending j-indices for rheology 
     65      REAL(wp) ::   zcoef              ! temporary scalar 
    6566      REAL(wp), DIMENSION(jpj)     ::   zind           ! i-averaged indicator of sea-ice 
    6667      REAL(wp), DIMENSION(jpj)     ::   zmsk           ! i-averaged of tmask 
     
    143144         ENDIF 
    144145 
    145          IF(ln_ctl)   CALL prt_ctl( tab2d_1=u_ice, clinfo1=' lim_dyn  : u_ice :', tab2d_2=v_ice, clinfo2=' v_ice :' ) 
     146         IF(ln_ctl)   CALL prt_ctl(tab2d_1=u_ice , clinfo1=' lim_dyn  : u_ice :', tab2d_2=v_ice , clinfo2=' v_ice :') 
    146147          
    147148         ! computation of friction velocity 
     
    178179      CALL lbc_lnk( ust2s, 'T',  1. )   ! T-point 
    179180      ! 
    180       IF(ln_ctl)   CALL prt_ctl( tab2d_1=ust2s, clinfo1=' lim_dyn  : ust2s :' ) 
     181      IF(ln_ctl)   CALL prt_ctl(tab2d_1=ust2s , clinfo1=' lim_dyn  : ust2s :') 
    181182 
    182183   END SUBROUTINE lim_dyn_2 
Note: See TracChangeset for help on using the changeset viewer.