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.
tamctl.F90 in branches/TAM_V3_0/NEMOTAM/OPATAM_SRC – NEMO

source: branches/TAM_V3_0/NEMOTAM/OPATAM_SRC/tamctl.F90 @ 2587

Last change on this file since 2587 was 2587, checked in by vidard, 13 years ago

refer to ticket #798

File size: 1.6 KB
Line 
1MODULE tamctl
2   !!======================================================================
3   !!                       ***  MODULE tamctl ***
4   !! NEMOTAMR : variables controlling the run.
5   !!======================================================================
6
7   !!----------------------------------------------------------------------
8   !! History :
9   !!        !  ...    ( ... )        Original code: varctl.F90
10   !!        !  09-06  (F. Vigilant)  Created to split NEMOVAR / NEMOTAM
11   !!---------------------------------------------------------------------
12
13   !!----------------------------------------------------------------------
14   !!----------------------------------------------------------------------
15   !! * Modules used
16   USE par_kind
17
18   !! * Routine accessibility
19   
20   IMPLICIT NONE
21
22   PUBLIC
23
24   !! * Module variables
25
26
27   INTEGER :: & 
28      & nmax_fs         ! Maximum number of iterations for the SSH balance
29                        ! elliptic equation solver
30
31
32   !! namtst:  assimilation test parameters
33
34   LOGICAL :: &
35      & ln_tst_nemotam, & ! Switch for NEMOTAM adjoint tests
36      & ln_tst_cpd_tam, & ! Switch for NEMOTAM adjoint tests (components only)
37      & ln_tst_stp_tam, & ! Switch for STEP_TAM adjoint tests
38      & ln_tst_tan_cpd, & ! Switch for NEMOTAM tangent components accuracy tests
39      & ln_tst_tan,     & ! Switch for NEMOTAM tangent accuracy tests
40      & ln_tst_stop       ! Stop after tests or not
41
42
43   !! Units for tangent test
44
45   INTEGER :: &
46      & numtan, &       ! Output for tangent diagnostics
47      & numtan_sc !Output for tangent diagnostics (scalar sampling)
48
49END MODULE tamctl
Note: See TracBrowser for help on using the repository browser.