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/NEMO_4.0.2_ENHANCE-02_ISF_nemo/src/OCE/ASM – NEMO

source: NEMO/branches/UKMO/NEMO_4.0.2_ENHANCE-02_ISF_nemo/src/OCE/ASM/asmpar.F90 @ 12708

Last change on this file since 12708 was 12708, checked in by mathiot, 4 years ago

NEMO_4.0.2_ENHANCE-02_ISF_nemo: in sync with UKMO/NEMO_4.0.2_mirror (svn merge -r 12657:12658 /NEMO/branches/UKMO/NEMO_4.0.2_mirror)

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: asmpar.F90 10068 2018-08-28 14:09:04Z nicolasmartin $
27   !! Software governed by the CeCILL license (see ./LICENSE)
28   !!======================================================================
29END MODULE asmpar
Note: See TracBrowser for help on using the repository browser.