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 8426 for branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/icestp.F90 – NEMO

Ignore:
Timestamp:
2017-08-08T17:53:09+02:00 (7 years ago)
Author:
clem
Message:

last routine names to be changed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r8183_ICEMODEL/NEMOGCM/NEMO/LIM_SRC_3/icestp.F90

    r8424 r8426  
    1111   !!            3.3  ! 2010-11  (G. Madec) ice-ocean stress always computed at each ocean time-step 
    1212   !!            3.4  ! 2011-01  (A Porter)  dynamical allocation 
    13    !!             -   ! 2012-10  (C. Rousset)  add ice_diahsb 
     13   !!             -   ! 2012-10  (C. Rousset)  add ice_dia 
    1414   !!            3.6  ! 2014-07  (M. Vancoppenolle, G. Madec, O. Marti) revise coupled interface 
    1515   !!            4.0  ! 2016-06  (L. Brodeau) new unified bulk routine (based on AeroBulk) 
     
    3737   USE icerdgrft       ! Ice ridging/rafting 
    3838   USE iceupdate       ! sea surface boundary condition 
    39    USE icediahsb       ! Ice budget diagnostics 
     39   USE icedia          ! Ice budget diagnostics 
    4040   USE icewri          ! Ice outputs 
    4141   USE icerst          ! Ice restarts 
    42    USE iceerr1         ! Ice corrections after dynamics 
    43    USE iceerr2         ! Ice corrections after thermo 
     42   USE icecor          ! Ice corrections 
    4443   USE icevar          ! Ice variables switch 
    4544   USE icectl          ! 
     
    4746   USE limmp 
    4847   ! END MV MP 2016 
    49    USE iceistate       ! LIM initial state 
     48   USE iceist          ! LIM initial state 
    5049   USE icethd_sal      ! LIM ice thermodynamics: salinity 
    5150   ! 
     
    130129         CALL eos_fzp( sss_m(:,:) , t_bo(:,:) ) 
    131130         t_bo(:,:) = ( t_bo(:,:) + rt0 ) * tmask(:,:,1) + rt0 * ( 1._wp - tmask(:,:,1) ) 
    132  
    133          ! Mask sea ice surface temperature (set to rt0 over land) 
    134          DO jl = 1, jpl 
    135             t_su(:,:,jl) = t_su(:,:,jl) * tmask(:,:,1) + rt0 * ( 1._wp - tmask(:,:,1) ) 
    136          END DO 
    137131         ! 
    138132                                      CALL ice_bef         ! Store previous ice values 
     
    156150                                      CALL ice_adv( kt )       ! -- advection 
    157151            IF( nn_limdyn == 2 .AND. nn_monocat /= 2 )  &      ! -- ridging/rafting 
    158                &                      CALL ice_rdgrft          
    159             IF( nn_limdyn == 2 )      CALL ice_err1( kt )      ! -- Corrections 
     152               &                      CALL ice_rdgrft( kt )          
     153            IF( nn_limdyn == 2 )      CALL ice_cor( kt , 1 )   ! -- Corrections 
    160154            ! 
    161155         ENDIF 
    162  
    163156         ! --- 
     157          
    164158#if defined key_agrif 
    165159         IF( .NOT. Agrif_Root() )     CALL agrif_interp_lim3('T') 
     
    196190         ! END MV MP 2016 
    197191 
    198          IF( ln_limthd )              CALL ice_err2( kt )       ! -- Corrections 
     192         IF( ln_limthd )              CALL ice_cor( kt , 2 )    ! -- Corrections 
    199193         ! --- 
    200194# if defined key_agrif 
     
    213207!!         IF( .NOT. Agrif_Root() )   CALL Agrif_ParentGrid_To_ChildGrid() 
    214208!!# endif 
    215          IF( ln_limdiahsb )           CALL ice_diahsb( kt )     ! -- Diagnostics and outputs  
     209         IF( ln_limdiahsb )           CALL ice_dia( kt )     ! -- Diagnostics and outputs  
    216210         ! 
    217211                                      CALL ice_wri( 1 )         ! -- Ice outputs  
     
    282276      !                                ! Initial sea-ice state 
    283277      IF( .NOT. ln_rstart ) THEN              ! start from rest: sea-ice deduced from sst 
    284          CALL ice_istate 
     278         CALL ice_ist 
    285279      ELSE                                    ! start from a restart file 
    286280         CALL ice_rst_read 
     
    291285      CALL ice_update_init                 ! ice surface boundary condition 
    292286      ! 
    293       IF( ln_limdiahsb) CALL ice_diahsb_init  ! initialization for diags 
     287      IF( ln_limdiahsb) CALL ice_dia_init  ! initialization for diags 
    294288      ! 
    295289      fr_i(:,:)     = at_i(:,:)         ! initialisation of sea-ice fraction 
Note: See TracChangeset for help on using the changeset viewer.