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/trunk/src/OCE/ASM – NEMO

source: NEMO/trunk/src/OCE/ASM/asmpar.F90

Last change on this file 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
RevLine 
[2128]1MODULE asmpar
2   !!======================================================================
3   !!                       ***  MODULE asmpar  ***
4   !! Assimilation increment : Parameters for assimilation interface
5   !!======================================================================
6
7   IMPLICIT NONE
8   PRIVATE
9
[5836]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
[2128]17
[5836]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
[2128]23
[2287]24   !!----------------------------------------------------------------------
[9598]25   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
[2287]26   !! $Id$
[10068]27   !! Software governed by the CeCILL license (see ./LICENSE)
[5836]28   !!======================================================================
[2128]29END MODULE asmpar
Note: See TracBrowser for help on using the repository browser.