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.
asmpar.F90 in branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/ASM – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/ASM/asmpar.F90 @ 2281

Last change on this file since 2281 was 2281, checked in by smasson, 14 years ago

set proper svn properties to all files...

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1MODULE asmpar
2   !!======================================================================
3   !!                       ***  MODULE asmpar  ***
4   !! Assimilation increment : Parameters for assimilation interface
5   !!======================================================================
6
7   IMPLICIT NONE
8
9   !! * Routine accessibility
10   PRIVATE
11
12   !! * Shared Modules variables
13   CHARACTER (LEN=40), PUBLIC, PARAMETER :: &
14      & c_asmbkg = 'assim_background_state_Jb',  & !: Filename for storing the
15                                                   !: background state for use
16                                                   !: in the Jb term
17      & c_asmdin = 'assim_background_state_DI',  & !: Filename for storing the
18                                                   !: background state for direct
19                                                   !: initialization
20      & c_asmtrj = 'assim_trj',                  & !: Filename for storing the
21                                                   !: reference trajectory
22      & c_asminc = 'assim_background_increments'   !: Filename for storing the
23                                                   !: increments to the background
24                                                   !: state
25
26   INTEGER, PUBLIC :: nitbkg_r      !: Background time step referenced to nit000
27   INTEGER, PUBLIC :: nitdin_r      !: Direct Initialization time step referenced to nit000
28   INTEGER, PUBLIC :: nitiaustr_r   !: IAU starting time step referenced to nit000
29   INTEGER, PUBLIC :: nitiaufin_r   !: IAU final time step referenced to nit000
30   INTEGER, PUBLIC :: nittrjfrq     !: Frequency of trajectory output for 4D-VAR
31
32END MODULE asmpar
Note: See TracBrowser for help on using the repository browser.