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/OBS/obs_rot_vel.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/OBS/obs_rot_vel.F90

    r2590 r2633  
    5555      !!---------------------------------------------------------------------- 
    5656      !! * Modules used 
    57       USE wrk_nemo, ONLY: wrk_use, wrk_release    
     57      USE wrk_nemo, ONLY: wrk_in_use, wrk_not_released    
    5858      USE wrk_nemo, ONLY: zsingu => wrk_2d_1, zcosgu => wrk_2d_2, & 
    5959                          zsingv => wrk_2d_3, zcosgv => wrk_2d_4 
     
    9393      INTEGER :: jk 
    9494 
    95       IF(.NOT. wrk_use(2, 1,2,3,4))THEN 
     95      IF(wrk_in_use(2, 1,2,3,4))THEN 
    9696         CALL ctl_stop('obs_rotvel : requested workspace arrays unavailable.') 
    9797         RETURN 
     
    229229         & ) 
    230230 
    231       IF(.NOT. wrk_release(2, 1,2,3,4))THEN 
     231      IF(wrk_not_released(2, 1,2,3,4))THEN 
    232232         CALL ctl_stop('obs_rotvel : failed to release workspace arrays.') 
    233233      END IF 
Note: See TracChangeset for help on using the changeset viewer.