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/ldfdyn_c2d.h90 – 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/ldfdyn_c2d.h90

    r2590 r2633  
    145145      !! * Modules used 
    146146      USE ldftra_oce, ONLY : aht0 
    147       USE wrk_nemo, ONLY: iwrk_use, iwrk_release 
     147      USE wrk_nemo, ONLY: iwrk_in_use, iwrk_not_released 
    148148      USE wrk_nemo, ONLY: icof => iwrk_2d_1 
    149149      !! * Arguments 
     
    162162      !!---------------------------------------------------------------------- 
    163163 
    164       IF(.not. iwrk_use(2, 1))THEN 
     164      IF( iwrk_in_use(2, 1) )THEN 
    165165         CALL ctl_stop('ldf_dyn_c2d_orca: ERROR: requested workspace array is unavailable.') 
    166166         RETURN 
     
    293293      ENDIF 
    294294 
    295       IF(.not. iwrk_release(2, 1))THEN 
     295      IF( iwrk_not_released(2, 1) )THEN 
    296296         CALL ctl_stop('ldf_dyn_c2d_orca: ERROR: failed to release workspace array.') 
    297297      END IF 
     
    316316      !! * Modules used 
    317317      USE ldftra_oce, ONLY : aht0 
    318       USE wrk_nemo, ONLY: iwrk_use, iwrk_release 
     318      USE wrk_nemo, ONLY: iwrk_in_use, iwrk_not_released 
    319319      USE wrk_nemo, ONLY: icof => iwrk_2d_1 
    320320 
     
    334334      !!---------------------------------------------------------------------- 
    335335 
    336       IF(.not. iwrk_use(2, 1))THEN 
     336      IF( iwrk_in_use(2, 1) )THEN 
    337337         CALL ctl_stop('ldf_dyn_c2d_orca_R1: ERROR: requested workspace array is unavailable.') 
    338338         RETURN 
     
    472472      ENDIF 
    473473 
    474       IF(.not. iwrk_release(2, 1))THEN 
     474      IF( iwrk_not_released(2, 1) )THEN 
    475475         CALL ctl_stop('ldf_dyn_c2d_orca_R1: ERROR: failed to release workspace array.') 
    476476      END IF 
Note: See TracChangeset for help on using the changeset viewer.