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.
namobs in NEMO/trunk/doc/namelists – NEMO

source: NEMO/trunk/doc/namelists/namobs @ 11703

Last change on this file since 11703 was 11703, checked in by nicolasmartin, 4 years ago

Update as well the manual namelists

  • Property svn:mime-type set to text/x-fortran
File size: 4.5 KB
Line 
1!-----------------------------------------------------------------------
2&namobs        !  observation usage switch                              (default: OFF)
3!-----------------------------------------------------------------------
4   ln_diaobs   = .false.             ! Logical switch for the observation operator
5   !
6   ln_t3d      = .false.             ! Logical switch for T profile observations
7   ln_s3d      = .false.             ! Logical switch for S profile observations
8   ln_sla      = .false.             ! Logical switch for SLA observations
9   ln_sst      = .false.             ! Logical switch for SST observations
10   ln_sss      = .false.             ! Logical swithc for SSS observations
11   ln_sic      = .false.             ! Logical switch for Sea Ice observations
12   ln_vel3d    = .false.             ! Logical switch for velocity observations
13   ln_altbias  = .false.             ! Logical switch for altimeter bias correction
14   ln_sstbias  = .false.             ! Logical switch for SST bias correction
15   ln_nea      = .false.             ! Logical switch for rejection of observations near land
16   ln_grid_global = .true.           ! Logical switch for global distribution of observations
17   ln_grid_search_lookup = .false.   ! Logical switch for obs grid search w/lookup table
18   ln_ignmis   = .true.              ! Logical switch for ignoring missing files
19   ln_s_at_t   = .false.             ! Logical switch for computing model S at T obs if not there
20   ln_sstnight = .false.             ! Logical switch for calculating night-time average for SST obs
21   ln_bound_reject  = .false.        ! Logical to remove obs near boundaries in LAMs.
22   ln_sla_fp_indegs = .true.         ! Logical for SLA: T=> averaging footprint is in degrees, F=> in metres
23   ln_sst_fp_indegs = .true.         ! Logical for SST: T=> averaging footprint is in degrees, F=> in metres
24   ln_sss_fp_indegs = .true.         ! Logical for SSS: T=> averaging footprint is in degrees, F=> in metres
25   ln_sic_fp_indegs = .true.         ! Logical for SIC: T=> averaging footprint is in degrees, F=> in metres
26! All of the *files* variables below are arrays. Use namelist_cfg to add more files
27   cn_profbfiles = 'profiles_01.nc'  ! Profile feedback input observation file names
28   cn_slafbfiles = 'sla_01.nc'       ! SLA feedback input observation file names
29   cn_sstfbfiles = 'sst_01.nc'       ! SST feedback input observation file names
30   cn_sssfbfiles = 'sss_01.nc'       ! SSS feedback input observation file names
31   cn_sicfbfiles = 'sic_01.nc'       ! SIC feedback input observation file names
32   cn_velfbfiles = 'vel_01.nc'       ! Velocity feedback input observation file names
33   cn_altbiasfile = 'altbias.nc'     ! Altimeter bias input file name
34   cn_sstbiasfiles = 'sstbias.nc'    ! SST bias input file name
35   cn_gridsearchfile ='gridsearch.nc' ! Grid search file name
36   rn_gridsearchres = 0.5            ! Grid search resolution
37   rn_mdtcorr  = 1.61                ! MDT  correction
38   rn_mdtcutoff = 65.0               ! MDT cutoff for computed correction
39   rn_dobsini  = 00010101.000000     ! Initial date in window YYYYMMDD.HHMMSS
40   rn_dobsend  = 00010102.000000     ! Final date in window YYYYMMDD.HHMMSS
41   rn_sla_avglamscl = 0.             ! E/W diameter of SLA observation footprint (metres/degrees)
42   rn_sla_avgphiscl = 0.             ! N/S diameter of SLA observation footprint (metres/degrees)
43   rn_sst_avglamscl = 0.             ! E/W diameter of SST observation footprint (metres/degrees)
44   rn_sst_avgphiscl = 0.             ! N/S diameter of SST observation footprint (metres/degrees)
45   rn_sss_avglamscl = 0.             ! E/W diameter of SSS observation footprint (metres/degrees)
46   rn_sss_avgphiscl = 0.             ! N/S diameter of SSS observation footprint (metres/degrees)
47   rn_sic_avglamscl = 0.             ! E/W diameter of SIC observation footprint (metres/degrees)
48   rn_sic_avgphiscl = 0.             ! N/S diameter of SIC observation footprint (metres/degrees)
49   nn_1dint = 0                      ! Type of vertical interpolation method
50   nn_2dint = 0                      ! Default horizontal interpolation method
51   nn_2dint_sla = 0                  ! Horizontal interpolation method for SLA
52   nn_2dint_sst = 0                  ! Horizontal interpolation method for SST
53   nn_2dint_sss = 0                  ! Horizontal interpolation method for SSS
54   nn_2dint_sic = 0                  ! Horizontal interpolation method for SIC
55   nn_msshc     = 0                  ! MSSH correction scheme
56   nn_profdavtypes = -1              ! Profile daily average types - array
57/
Note: See TracBrowser for help on using the repository browser.