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 5282 for branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/NEMO/OPA_SRC/SBC/sbccpl.F90 – NEMO

Ignore:
Timestamp:
2015-05-18T17:19:50+02:00 (9 years ago)
Author:
diovino
Message:

Dev. branch CMCC4_simplification ticket #1456

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2015/dev_r5056_CMCC4_simplification/NEMOGCM/NEMO/OPA_SRC/SBC/sbccpl.F90

    r5009 r5282  
    645645      LOGICAL ::    llnewtx, llnewtau      ! update wind stress components and module?? 
    646646      INTEGER  ::   ji, jj, jn             ! dummy loop indices 
    647       INTEGER  ::   isec                   ! number of seconds since nit000 (assuming rdttra did not change since nit000) 
     647      INTEGER  ::   isec                   ! number of seconds since nit000 (assuming rdt did not change since nit000) 
    648648      REAL(wp) ::   zcumulneg, zcumulpos   ! temporary scalars      
    649649      REAL(wp) ::   zcoef                  ! temporary scalar 
     
    658658      CALL wrk_alloc( jpi,jpj, ztx, zty ) 
    659659      !                                                 ! Receive all the atmos. fields (including ice information) 
    660       isec = ( kt - nit000 ) * NINT( rdttra(1) )             ! date of exchanges 
     660      isec = ( kt - nit000 ) * NINT( rdt )             ! date of exchanges 
    661661      DO jn = 1, jprcv                                       ! received fields sent by the atmosphere 
    662662         IF( srcv(jn)%laction )   CALL cpl_rcv( jn, isec, frcv(jn)%z3, xcplmask, nrcvinfo(jn) ) 
     
    13381338      CALL wrk_alloc( jpi,jpj,jpl, ztmp3, ztmp4 ) 
    13391339 
    1340       isec = ( kt - nit000 ) * NINT(rdttra(1))        ! date of exchanges 
     1340      isec = ( kt - nit000 ) * NINT(rdt)        ! date of exchanges 
    13411341 
    13421342      zfr_l(:,:) = 1.- fr_i(:,:) 
Note: See TracChangeset for help on using the changeset viewer.