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 2978 for branches – NEMO

Changeset 2978 for branches


Ignore:
Timestamp:
2011-10-22T16:05:57+02:00 (13 years ago)
Author:
cetlod
Message:

Add in changes from the trunk between revisions 2787 and 2855, see ticket #877

Location:
branches/2011/dev_LOCEAN_2011/NEMOGCM/NEMO
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/dev_LOCEAN_2011/NEMOGCM/NEMO/LIM_SRC_2/iceini_2.F90

    r2730 r2978  
    2323   USE par_ice_2        ! LIM2 parameters 
    2424   USE thd_ice_2        ! LIM2 thermodynamical variables 
    25    USE limrhg           ! LIM2 rheology 
     25   USE limrhg           ! LIM2 EVP rheology 
     26   USE limrhg_2         ! LIM2  VP rheology (requires "key_lim2_vp") 
    2627   USE ice_2            ! LIM2 ice variable 
    2728   USE limmsh_2         ! LIM2 mesh 
     
    6566#if ! defined key_lim2_vp 
    6667      ierr = ierr + lim_rhg_alloc  () 
     68#else 
     69      ierr = ierr + lim_rhg_alloc_2  () 
    6770#endif 
    6871      IF( lk_mpp    )   CALL mpp_sum( ierr ) 
  • branches/2011/dev_LOCEAN_2011/NEMOGCM/NEMO/LIM_SRC_2/limistate_2.F90

    r2977 r2978  
    3333   PUBLIC lim_istate_2      ! routine called by lim_init_2.F90 
    3434 
    35 !!! ** init namelist (namiceini) ** 
     35   !!! ** init namelist (namiceini) ** 
    3636   LOGICAL  ::   ln_limini = .FALSE.  !: Ice initialization state 
    3737   REAL(wp) ::   ttest     = 2.0      ! threshold water temperature for initial sea ice 
     
    124124      syyst (:,:)  = 0.e0 
    125125      sxyst (:,:)  = 0.e0 
     126#if ! defined key_lim2_vp 
     127      stress1_i (:,:) = 0._wp                          ! EVP rheology 
     128      stress2_i (:,:) = 0._wp 
     129      stress12_i(:,:) = 0._wp 
     130#endif 
    126131 
    127132      !-- lateral boundary conditions 
  • branches/2011/dev_LOCEAN_2011/NEMOGCM/NEMO/NST_SRC/agrif_opa_update.F90

    r2977 r2978  
    99   USE in_out_manager  ! I/O manager 
    1010   USE lib_mpp 
    11  
     11    
    1212   IMPLICIT NONE 
    1313   PRIVATE 
Note: See TracChangeset for help on using the changeset viewer.