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 2633 for branches/dev_r2586_dynamic_mem/NEMOGCM/NEMO/OPA_SRC/LDF/ldfeiv.F90 – NEMO

Ignore:
Timestamp:
2011-02-28T18:23:23+01:00 (13 years ago)
Author:
trackstand2
Message:

Renamed wrk_use => wrk_in_use and wrk_release => wrk_not_released

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_r2586_dynamic_mem/NEMOGCM/NEMO/OPA_SRC/LDF/ldfeiv.F90

    r2590 r2633  
    5353      !!             - wslpi, wslpj : i- and j-slopes of neutral surfaces at w-points.  
    5454      !!---------------------------------------------------------------------- 
    55       USE wrk_nemo, ONLY: wrk_use, wrk_release 
     55      USE wrk_nemo, ONLY: wrk_in_use, wrk_not_released 
    5656      USE wrk_nemo, ONLY: zn  => wrk_2d_1, zah   => wrk_2d_2, & 
    5757                          zhw => wrk_2d_3, zross => wrk_2d_4 
     
    6363      !!---------------------------------------------------------------------- 
    6464       
    65       IF(.not. wrk_use(2, 1,2,3,4))THEN 
     65      IF(wrk_in_use(2, 1,2,3,4))THEN 
    6666         CALL ctl_stop('ldf_eiv: ERROR: requested workspace arrays are unavailable.') 
    6767         RETURN 
     
    244244      CALL iom_put( "aht2d_eiv", aeiw )   ! EIV lateral eddy diffusivity 
    245245      !   
    246       IF(.not. wrk_release(2, 1,2,3,4))THEN 
     246      IF(wrk_not_released(2, 1,2,3,4))THEN 
    247247         CALL ctl_stop('ldf_eiv: ERROR: failed to release workspace arrays.') 
    248248      END IF 
Note: See TracChangeset for help on using the changeset viewer.