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

source: branches/TAM_V3_2_2/NEMOTAM/OPATAM_SRC/partlm.F90 @ 3277

Last change on this file since 3277 was 2578, checked in by rblod, 13 years ago

first import of NEMOTAM 3.2.2

File size: 1.1 KB
Line 
1MODULE par_tlm
2   !!======================================================================
3   !!                    ***  MODULE  par_tlm  ***
4   !! Tangent Model Accuracy:  parameters defined in memory
5   !!=====================================================================
6   !!
7   !! ** Purpose :   Define in memory Tangent Model accuracy parameters
8   !!
9   !! History :
10   !!   9.0  !  07-07  (F. Vigilant)  Original code
11   !!----------------------------------------------------------------------
12
13   !! * Modules used
14   USE par_oce, ONLY:       &  !: ocean parameters
15     & wp
16
17   IMPLICIT NONE
18   PRIVATE
19
20   INTEGER , PUBLIC ::      & !!: namtst_tlm tangent test parameters
21      tlm_bch,              &  !: branch value (0:M(x); 1:M(x+dx); 2:LT(dx))
22      cur_loop = 1             !: = 1... nmax_loop (=1 means perform only direct
23                               !                       integration)
24     
25   REAL(wp), PUBLIC ::      & !!: namtst_tlm tangent test parameters
26      h_ratio=  1.0_wp         !: ratio applied to the perturbation dX0
27
28END MODULE par_tlm
Note: See TracBrowser for help on using the repository browser.