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 719 for trunk/NEMO/OPA_SRC/TRD – NEMO

Changeset 719 for trunk/NEMO/OPA_SRC/TRD


Ignore:
Timestamp:
2007-10-16T16:59:56+02:00 (17 years ago)
Author:
ctlod
Message:

get back to the nemo_v2_3 version for trunk

Location:
trunk/NEMO/OPA_SRC/TRD
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/NEMO/OPA_SRC/TRD/trdicp.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    4949   !!---------------------------------------------------------------------- 
    5050   !!   OPA 9.0 , LOCEAN-IPSL (2005)  
    51    !! $Id$ 
     51   !! $Header$  
    5252   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    5353   !!---------------------------------------------------------------------- 
  • trunk/NEMO/OPA_SRC/TRD/trdicp_oce.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    8989   !!---------------------------------------------------------------------- 
    9090   !!  OPA 9.0 , LOCEAN-IPSL (2005)  
    91    !! $Id$ 
     91   !! $Header$  
    9292   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    9393   !!====================================================================== 
  • trunk/NEMO/OPA_SRC/TRD/trdmld.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    5858   !!---------------------------------------------------------------------- 
    5959   !!   OPA 9.0 , LOCEAN-IPSL (2005)  
    60    !! $Id$ 
     60   !! $Header$  
    6161   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt  
    6262   !!---------------------------------------------------------------------- 
  • trunk/NEMO/OPA_SRC/TRD/trdmld_oce.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    8484   !!---------------------------------------------------------------------- 
    8585   !!  OPA 9.0 , LOCEAN-IPSL (2005)  
    86    !! $Id$ 
     86   !! $Header$  
    8787   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    8888   !!====================================================================== 
  • trunk/NEMO/OPA_SRC/TRD/trdmld_rst.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    2626   !!--------------------------------------------------------------------------------- 
    2727   !! OPA 9.0 , LOCEAN-IPSL (2006)  
    28    !! $Id$ 
     28   !! $Header: /home/opalod/NEMOCVSROOT/NEMO/OPA_SRC/TRD/trdmld_rst.F90,v 1.7 2007/06/05 10:40:59 opalod Exp $  
    2929   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    3030   !!--------------------------------------------------------------------------------- 
  • trunk/NEMO/OPA_SRC/TRD/trdmod.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r710 r719  
    1212   !!   trd_mod_init     : Initialization step 
    1313   !!---------------------------------------------------------------------- 
     14   USE phycst                  ! physical constants 
    1415   USE oce                     ! ocean dynamics and tracers variables 
    1516   USE dom_oce                 ! ocean space and time domain variables 
     
    1718   USE trdmod_oce              ! ocean variables trends 
    1819   USE ldftra_oce              ! ocean active tracers lateral physics 
    19    USE sbc_oce                 ! surface boundary condition: ocean 
    20    USE phycst                  ! physical constants 
    2120   USE trdvor                  ! ocean vorticity trends  
    2221   USE trdicp                  ! ocean bassin integral constraints properties 
    2322   USE trdmld                  ! ocean active mixed layer tracers trends  
    2423   USE in_out_manager          ! I/O manager 
     24   USE taumod                  ! surface ocean stress 
    2525 
    2626   IMPLICIT NONE 
     
    3737   !!---------------------------------------------------------------------- 
    3838   !!   OPA 9.0 , LOCEAN-IPSL (2005)  
    39    !! $Id$ 
     39   !! $Header$  
    4040   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    4141   !!---------------------------------------------------------------------- 
     
    124124                  DO ji = fs_2, fs_jpim1   ! vector opt. 
    125125                     ! save the surface forcing momentum fluxes 
    126                      ztswu(ji,jj) = utau(ji,jj) / ( fse3u(ji,jj,1)*rau0 ) 
    127                      ztswv(ji,jj) = vtau(ji,jj) / ( fse3v(ji,jj,1)*rau0 ) 
     126                     ztswu(ji,jj) = taux(ji,jj) / ( fse3u(ji,jj,1)*rau0 ) 
     127                     ztswv(ji,jj) = tauy(ji,jj) / ( fse3v(ji,jj,1)*rau0 ) 
    128128                     ! save bottom friction momentum fluxes 
    129129                     ikbu   = MIN( mbathy(ji+1,jj  ), mbathy(ji,jj) ) 
     
    175175               DO ji = fs_2, fs_jpim1   ! vector opt. 
    176176                  ! save the surface forcing momentum fluxes 
    177                   ztswu(ji,jj) = utau(ji,jj) / ( fse3u(ji,jj,1)*rau0 ) 
    178                   ztswv(ji,jj) = vtau(ji,jj) / ( fse3v(ji,jj,1)*rau0 ) 
     177                  ztswu(ji,jj) = taux(ji,jj) / ( fse3u(ji,jj,1)*rau0 ) 
     178                  ztswv(ji,jj) = tauy(ji,jj) / ( fse3v(ji,jj,1)*rau0 ) 
    179179                  ! save bottom friction momentum fluxes 
    180180                  ikbu   = MIN( mbathy(ji+1,jj  ), mbathy(ji,jj) ) 
  • trunk/NEMO/OPA_SRC/TRD/trdmod_oce.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    6262   !!---------------------------------------------------------------------- 
    6363   !!  OPA 9.0 , LOCEAN-IPSL (2006)  
    64    !! $Id$ 
     64   !! $Header$  
    6565   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    6666   !!====================================================================== 
  • trunk/NEMO/OPA_SRC/TRD/trdvor.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    6666   !!---------------------------------------------------------------------- 
    6767   !!   OPA 9.0 , LOCEAN-IPSL (2005)  
    68    !! $Id$ 
     68   !! $Header$  
    6969   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    7070   !!---------------------------------------------------------------------- 
  • trunk/NEMO/OPA_SRC/TRD/trdvor_oce.F90

    • Property svn:keywords changed from Id to Author Date Id Revision
    r699 r719  
    3535   !!---------------------------------------------------------------------- 
    3636   !!  OPA 9.0 , LOCEAN-IPSL (2005)  
    37    !! $Id$ 
     37   !! $Header$  
    3838   !! Software governed by the CeCILL licence (modipsl/doc/NEMO_CeCILL.txt) 
    3939   !!====================================================================== 
Note: See TracChangeset for help on using the changeset viewer.