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 78 for trunk/NEMO/OPA_SRC/OBC/obcvol.F90 – NEMO

Ignore:
Timestamp:
2004-04-22T14:54:25+02:00 (20 years ago)
Author:
opalod
Message:

CT : UPDATE052 : change logical lpXXXobc to lp_obc_XXX for Open Boundaries case

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/OBC/obcvol.F90

    r32 r78  
    110110 
    111111      ! ... West open boundary 
    112       IF( lpwestobc ) THEN                      ! ... Total transport through the West OBC 
     112      IF( lp_obc_west ) THEN                      ! ... Total transport through the West OBC 
    113113         DO ji = fs_niw0, fs_niw1 ! Vector opt. 
    114114            DO jk = 1, jpkm1 
     
    121121 
    122122      ! ... East open boundary 
    123       IF( lpeastobc ) THEN                      ! ... Total transport through the East OBC 
     123      IF( lp_obc_east ) THEN                      ! ... Total transport through the East OBC 
    124124         DO ji = fs_nie0, fs_nie1 ! Vector opt. 
    125125            DO jk = 1, jpkm1 
     
    132132 
    133133      ! ... North open boundary 
    134       IF( lpnorthobc ) THEN                     ! ... Total transport through the North OBC 
     134      IF( lp_obc_north ) THEN                     ! ... Total transport through the North OBC 
    135135         DO jj = fs_njn0, fs_njn1 ! Vector opt. 
    136136            DO jk = 1, jpkm1 
     
    143143 
    144144      ! ... South open boundary 
    145       IF( lpsouthobc ) THEN                     ! ... Total transport through the South OBC 
     145      IF( lp_obc_south ) THEN                     ! ... Total transport through the South OBC 
    146146         DO jj = fs_njs0, fs_njs1 ! Vector opt. 
    147147            DO jk = 1, jpkm1 
     
    182182      ztranst = 0.e0 
    183183 
    184       IF( lpwestobc ) THEN 
     184      IF( lp_obc_west ) THEN 
    185185 
    186186         ! ... correction of the west velocity 
     
    202202      END IF  
    203203 
    204       IF( lpeastobc ) THEN 
     204      IF( lp_obc_east ) THEN 
    205205 
    206206         ! ... correction of the east velocity 
     
    222222      END IF  
    223223 
    224       IF( lpnorthobc ) THEN 
     224      IF( lp_obc_north ) THEN 
    225225 
    226226         ! ... correction of the north velocity 
     
    241241      END IF  
    242242 
    243       IF( lpsouthobc ) THEN 
     243      IF( lp_obc_south ) THEN 
    244244 
    245245         ! ... correction of the south velocity 
Note: See TracChangeset for help on using the changeset viewer.