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

Ignore:
Timestamp:
2017-09-18T16:54:04+02:00 (7 years ago)
Author:
clem
Message:

changes in style - part6 - pure cosmetics

File:
1 edited

Legend:

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

    r8518 r8534  
    1616#if defined key_lim3 
    1717   !!---------------------------------------------------------------------- 
    18    !!   'key_lim3'                                    LIM 3.0 sea-ice model 
     18   !!   'key_lim3'                                       ESIM sea-ice model 
    1919   !!---------------------------------------------------------------------- 
    2020   !!   ice_update_alloc : allocate the iceupdate arrays 
     
    2323   !!   ice_update_tau   : update i- and j-stresses, and its modulus at the ocean surface 
    2424   !!---------------------------------------------------------------------- 
    25    USE par_oce        ! ocean parameters 
    2625   USE oce     , ONLY : sshn, sshb 
    2726   USE phycst         ! physical constants 
     
    4241   ! 
    4342   USE in_out_manager ! I/O manager 
    44    USE iom            ! xIO server 
    45    USE lbclnk         ! ocean lateral boundary condition - MPP exchanges 
     43   USE iom            ! I/O manager library 
    4644   USE lib_mpp        ! MPP library 
    47    USE lib_fortran    ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)   
     45   USE lib_fortran    ! fortran utilities (glob_sum + no signed zero) 
     46   USE lbclnk         ! lateral boundary conditions (or mpp links) 
    4847   USE timing         ! Timing 
    4948 
     
    110109      REAL(wp), DIMENSION(jpi,jpj,jpl) ::   zalb_cs, zalb_os     ! 3D workspace 
    111110      !!--------------------------------------------------------------------- 
    112       IF( nn_timing == 1 )  CALL timing_start('ice_update_flx') 
     111      IF( nn_timing == 1 )  CALL timing_start('ice_update') 
    113112 
    114113      IF( kt == nit000 .AND. lwp ) THEN 
     
    213212      IF( ln_icectl                      )   CALL ice_prt       (kt, iiceprt, jiceprt, 3, 'Final state ice_update') ! prints 
    214213      IF( ln_ctl                         )   CALL ice_prt3D     ('iceupdate')                                       ! prints 
    215       IF( nn_timing == 1                 )   CALL timing_stop   ('ice_update_flx')                                  ! timing 
     214      IF( nn_timing == 1                 )   CALL timing_stop   ('ice_update')                                      ! timing 
    216215      ! 
    217216   END SUBROUTINE ice_update_flx 
     
    251250      !!--------------------------------------------------------------------- 
    252251 
    253       IF( nn_timing == 1 )  CALL timing_start('ice_update_tau') 
     252      IF( nn_timing == 1 )  CALL timing_start('ice_update') 
    254253 
    255254      IF( kt == nit000 .AND. lwp ) THEN 
     
    297296      CALL lbc_lnk_multi( utau, 'U', -1., vtau, 'V', -1. )   ! lateral boundary condition 
    298297      ! 
    299       IF( nn_timing == 1 )  CALL timing_stop('ice_update_tau') 
     298      IF( nn_timing == 1 )  CALL timing_stop('ice_update') 
    300299      !   
    301300   END SUBROUTINE ice_update_tau 
     
    373372#else 
    374373   !!---------------------------------------------------------------------- 
    375    !!   Default option         Dummy module          NO  LIM3 sea-ice model 
     374   !!   Default option         Dummy module           NO ESIM sea-ice model 
    376375   !!---------------------------------------------------------------------- 
    377376#endif  
Note: See TracChangeset for help on using the changeset viewer.