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 NEMO/branches/UKMO/dev_r10448_bdyvol/src/OCE/ASM – NEMO

source: NEMO/branches/UKMO/dev_r10448_bdyvol/src/OCE/ASM/asmpar.F90 @ 10455

Last change on this file since 10455 was 10068, checked in by nicolasmartin, 6 years ago

First part of modifications to have a common default header : fix typos and SVN keywords properties

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