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 3317 for branches/2012/dev_r3309_LOCEAN12_Ediag/NEMOGCM/NEMO/OPA_SRC/DYN/dynnxt.F90 – NEMO

Ignore:
Timestamp:
2012-02-23T12:21:08+01:00 (12 years ago)
Author:
gm
Message:

Ediag branche: #927 restructuration of the trdicp computation - part I

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_r3309_LOCEAN12_Ediag/NEMOGCM/NEMO/OPA_SRC/DYN/dynnxt.F90

    r3316 r3317  
    3131   USE dynadv          ! dynamics: vector invariant versus flux form 
    3232   USE domvvl          ! variable volume 
     33   USE trdmod         ! ocean dynamics trends  
     34   USE trdmod_oce     ! ocean variables trends 
    3335   USE obc_oce         ! ocean open boundary conditions 
    3436   USE obcdyn          ! open boundary condition for momentum (obc_dyn routine) 
     
    292294 
    293295      IF( ln_3D_trd_d ) THEN             ! 3D output: asselin filter trends on momentum 
    294         zua(:,:,:) = ( ub(:,:,:) - zua(:,:,:) ) * z1_2dt 
    295         zva(:,:,:) = ( vb(:,:,:) - zva(:,:,:) ) * z1_2dt 
    296         CALL iom_put( "utrd_atf", zua )        ! asselin filter trends on momentum  
    297         CALL iom_put( "vtrd_atf", zva ) 
     296         zua(:,:,:) = ( ub(:,:,:) - zua(:,:,:) ) * z1_2dt 
     297         zva(:,:,:) = ( vb(:,:,:) - zva(:,:,:) ) * z1_2dt 
     298         CALL trd_mod( zua, zva, jpdyn_trd_atf, 'DYN', kt ) 
    298299      ENDIF 
    299300 
Note: See TracChangeset for help on using the changeset viewer.