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 7910 for branches/2017/dev_r7881_no_wrk_alloc/NEMOGCM/NEMO/LIM_SRC_2/limthd_lac_2.F90 – NEMO

Ignore:
Timestamp:
2017-04-13T16:21:08+02:00 (7 years ago)
Author:
timgraham
Message:

All wrk_alloc removed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_r7881_no_wrk_alloc/NEMOGCM/NEMO/LIM_SRC_2/limthd_lac_2.F90

    r5836 r7910  
    1515   USE limistate_2  
    1616   USE lib_mpp        ! MPP library 
    17    USE wrk_nemo       ! work arrays 
    1817   USE lib_fortran    ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)   
    1918 
     
    8079         iiceform       ,   &  !  1 = ice formed   ; 0 = no ice formed 
    8180         ihemis                !  dummy indice 
    82       REAL(wp), POINTER, DIMENSION(:) ::   zqbgow      !  heat budget of the open water (negative) 
    83       REAL(wp), POINTER, DIMENSION(:) ::   zfrl_old    !  previous sea/ice fraction 
    84       REAL(wp), POINTER, DIMENSION(:) ::   zhice_old   !  previous ice thickness 
    85       REAL(wp), POINTER, DIMENSION(:) ::   zhice0      !  thickness of newly formed ice in leads 
    86       REAL(wp), POINTER, DIMENSION(:) ::   zfrlmin     !  minimum fraction for leads 
    87       REAL(wp), POINTER, DIMENSION(:) ::   zdhicbot    !  part of thickness of newly formed ice in leads which  
     81      REAL(wp), DIMENSION(jpij) ::   zqbgow      !  heat budget of the open water (negative) 
     82      REAL(wp), DIMENSION(jpij) ::   zfrl_old    !  previous sea/ice fraction 
     83      REAL(wp), DIMENSION(jpij) ::   zhice_old   !  previous ice thickness 
     84      REAL(wp), DIMENSION(jpij) ::   zhice0      !  thickness of newly formed ice in leads 
     85      REAL(wp), DIMENSION(jpij) ::   zfrlmin     !  minimum fraction for leads 
     86      REAL(wp), DIMENSION(jpij) ::   zdhicbot    !  part of thickness of newly formed ice in leads which  
    8887                                !  has been already used in transport for example 
    8988      REAL(wp)  ::  & 
     
    102101      !!---------------------------------------------------------------------       
    103102                
    104       CALL wrk_alloc( jpij, zqbgow, zfrl_old, zhice_old, zhice0, zfrlmin, zdhicbot ) 
    105103       
    106104      !-------------------------------------------------------------- 
     
    221219      END DO 
    222220       
    223       CALL wrk_dealloc( jpij, zqbgow, zfrl_old, zhice_old, zhice0, zfrlmin, zdhicbot ) 
    224221      ! 
    225222   END SUBROUTINE lim_thd_lac_2 
Note: See TracChangeset for help on using the changeset viewer.