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.
taumod.F90 in trunk/NEMO/OFF_SRC/SBC – NEMO

source: trunk/NEMO/OFF_SRC/SBC/taumod.F90 @ 719

Last change on this file since 719 was 719, checked in by ctlod, 17 years ago

get back to the nemo_v2_3 version for trunk

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1MODULE taumod
2   !!======================================================================
3   !!                       ***  MODULE  taumod  ***
4   !! Ocean forcing : stress at the the ocean surface
5   !!=====================================================================
6
7   !!----------------------------------------------------------------------
8   !!   tau          : define the surface stress for the ocean
9   !!----------------------------------------------------------------------
10   !!   OPA 9.0 , LOCEAN-IPSL  (2005)
11   !!   $Header$
12   !!   This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
13   !!----------------------------------------------------------------------
14   !! * Modules used
15   USE oce
16   USE lib_mpp
17   USE in_out_manager ! I/O manager
18
19   IMPLICIT NONE
20   PRIVATE
21
22   !! * Share modules variables
23   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   &
24      taux, tauy          !: surface stress components
25
26   !!======================================================================
27END MODULE taumod
Note: See TracBrowser for help on using the repository browser.