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.
agrif_oce.F90 in trunk/NEMO/NST_SRC – NEMO

source: trunk/NEMO/NST_SRC/agrif_oce.F90 @ 782

Last change on this file since 782 was 782, checked in by rblod, 16 years ago

Improvment of AGRIF-NEMO routines, see ticket #42

File size: 1.4 KB
Line 
1MODULE agrif_oce
2   !!----------------------------------------------------------------------
3   !!                       ***  MODULE agrif_oce  ***
4   !!
5   !! ** Purpose :   Define in memory agrif variables
6   !!----------------------------------------------------------------------
7   !! History :
8   !!   9.0  !  07-12  (R. Benshila)  initial version
9   !!----------------------------------------------------------------------
10   !!  OPA 9.0 , LOCEAN-IPSL (2006)
11   !! $Header$
12   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
13   !!----------------------------------------------------------------------
14   !! * Modules used
15   USE par_oce      ! ocean parameters
16   USE dom_oce      ! domain parameters
17   
18   IMPLICIT NONE
19   PUBLIC 
20
21#if defined key_agrif
22
23   !! Namelist parameters (namagrif)
24   !! ------------------------------
25   LOGICAL, PUBLIC :: ln_spc_dyn  = .FALSE.
26   INTEGER, PUBLIC :: nbclineupdate = 3  !: update frequency
27   REAL(wp), PUBLIC :: visc_tra = rdt  !: sponge coeff. for tracers
28   REAL(wp), PUBLIC :: visc_dyn = rdt  !: sponge coeff. for dynamics
29
30   !! Use for sponge computation
31   !! --------------------------
32   LOGICAL, PUBLIC :: spongedoneT = .FALSE. 
33   LOGICAL, PUBLIC :: spongedoneU = .FALSE.
34   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   & 
35      spe1ur, spe2vr ,spbtr2, spe1ur2, spe2vr2, spbtr3 
36#endif
37
38END MODULE agrif_oce
Note: See TracBrowser for help on using the repository browser.