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 661 for trunk/NEMO/OPA_SRC/TRA – NEMO

Changeset 661 for trunk/NEMO/OPA_SRC/TRA


Ignore:
Timestamp:
2007-05-25T17:51:50+02:00 (17 years ago)
Author:
opalod
Message:

nemo_v2_bugfix_039:RB: change dom_vvl functions to corresponding subroutines for compatibility with AGRIF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/TRA/tranxt.F90

    r642 r661  
    100100         ! Scale factors at before and after time step 
    101101         ! ------------------------------------------- 
    102          zfse3tb(:,:,:) = sfe3( sshb, 'T' )    ;    zfse3ta(:,:,:) = sfe3( ssha, 'T' ) 
     102         CALL dom_vvl_sf( sshb, 'T', zfse3tb ) ;    CALL dom_vvl_sf( ssha, 'T', zfse3ta ) 
    103103 
    104104         ! Asselin filtered scale factor at now time step 
    105105         ! ---------------------------------------------- 
    106106         IF( (neuler == 0 .AND. kt == nit000) .OR. lk_dynspg_ts ) THEN 
    107             zfse3tn(:,:,:) = sfe3ini( 'T' ) 
     107            CALL dom_vvl_sf_ini( 'T', zfse3tn )  
    108108         ELSE 
    109109            zssh(:,:) = atfp * ( sshb(:,:) + ssha(:,:) ) + atfp1 * sshn(:,:) 
    110             zfse3tn(:,:,:) = sfe3( zssh, 'T' ) 
     110            CALL dom_vvl_sf( zssh, 'T', zfse3tn )  
    111111         ENDIF 
    112112 
Note: See TracChangeset for help on using the changeset viewer.