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_3/limthd.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_3/limthd.F90

    r7813 r7910  
    4141   USE lbclnk         ! lateral boundary condition - MPP links 
    4242   USE lib_mpp        ! MPP library 
    43    USE wrk_nemo       ! work arrays 
    4443   USE lib_fortran    ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)   
    4544   USE timing         ! Timing 
     
    8786      REAL(wp), PARAMETER :: zfric_umin = 0._wp           ! lower bound for the friction velocity (cice value=5.e-04) 
    8887      REAL(wp), PARAMETER :: zch        = 0.0057_wp       ! heat transfer coefficient 
    89       REAL(wp), POINTER, DIMENSION(:,:) ::   zu_io, zv_io, zfric   ! ice-ocean velocity (m/s) and frictional velocity (m2/s2) 
     88      REAL(wp), DIMENSION(jpi,jpj) ::   zu_io, zv_io, zfric   ! ice-ocean velocity (m/s) and frictional velocity (m2/s2) 
    9089      ! 
    9190      !!------------------------------------------------------------------- 
     
    9392      IF( nn_timing == 1 )   CALL timing_start('limthd') 
    9493 
    95       CALL wrk_alloc( jpi,jpj, zu_io, zv_io, zfric ) 
    9694 
    9795      IF( kt == nit000 .AND. lwp ) THEN 
     
    342340      IF( ln_ctl )       CALL lim_prt3D( 'limthd' ) 
    343341      ! 
    344       CALL wrk_dealloc( jpi,jpj, zu_io, zv_io, zfric ) 
    345342      ! 
    346343      IF( nn_timing == 1 )  CALL timing_stop('limthd') 
Note: See TracChangeset for help on using the changeset viewer.