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

Ignore:
Timestamp:
2008-04-28T11:31:32+02:00 (16 years ago)
Author:
ctlod
Message:

Implementation of the BDY package, see ticket: #126

File:
1 edited

Legend:

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

    r719 r911  
    88   !!   8.5  !  02-10 (C. Talandier, A-M. Treguier) Free surface, F90 
    99   !!   9.0  !  04-06 (F. Durand, A-M. Treguier) Netcdf BC files on input 
     10   !!    "   ! 07-07  (D. Storkey) Change to arguments for iom_gettime 
    1011   !!------------------------------------------------------------------------------ 
    1112#if defined key_obc 
     
    159160               IF ( lp_obc_east ) THEN 
    160161                  IF ( llnot_done ) THEN 
    161                      CALL iom_gettime ( id_e, TRIM(cl_vname), tcobc ) 
     162                     CALL iom_gettime ( id_e, tcobc, TRIM(cl_vname) ) 
    162163                     llnot_done = .FALSE. 
    163164                  ENDIF 
     
    166167               IF ( lp_obc_west ) THEN 
    167168                  IF ( llnot_done ) THEN 
    168                      CALL iom_gettime ( id_w, TRIM(cl_vname), tcobc ) 
     169                     CALL iom_gettime ( id_w, tcobc, TRIM(cl_vname) ) 
    169170                     llnot_done = .FALSE. 
    170171                 ENDIF 
     
    173174               IF ( lp_obc_north ) THEN 
    174175                  IF ( llnot_done ) THEN 
    175                      CALL iom_gettime ( id_n, TRIM(cl_vname), tcobc ) 
     176                     CALL iom_gettime ( id_n, tcobc, TRIM(cl_vname) ) 
    176177                     llnot_done = .FALSE. 
    177178                  ENDIF 
     
    180181               IF ( lp_obc_south ) THEN 
    181182                  IF ( llnot_done ) THEN 
    182                      CALL iom_gettime ( id_s, TRIM(cl_vname), tcobc ) 
     183                     CALL iom_gettime ( id_s, tcobc, TRIM(cl_vname) ) 
    183184                     llnot_done = .FALSE. 
    184185                  ENDIF 
Note: See TracChangeset for help on using the changeset viewer.