Skip to content

Commit d03cd24

Browse files
committed
Added yaml configration file
1 parent 75cb66f commit d03cd24

File tree

1 file changed

+119
-0
lines changed

1 file changed

+119
-0
lines changed

eddy_tracker_configuration.yaml

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
2+
3+
VERBOSE: No
4+
5+
# Two diagnostics, based on SLA (e.g., Chelton et al, 2011)
6+
# or the Q-parameter (e.g., Kurian et al, 2011) are available
7+
DIAGNOSTIC_TYPE: 'SLA'
8+
#DIAGNOSTIC_TYPE: 'Q' # not yet implemented
9+
10+
# Specify the AVISO domain
11+
DOMAIN:
12+
THE_DOMAIN: 'Global'
13+
#THE_DOMAIN = 'BlackSea'
14+
#THE_DOMAIN = 'MedSea' # not yet implemented
15+
LONMIN: -38.
16+
LONMAX: -25.
17+
LATMIN: 30.
18+
LATMAX: 38.
19+
DATE_STR: 20020101
20+
DATE_END: 20020630
21+
22+
# Specify the AVISO product
23+
AVISO:
24+
AVISO_DT14: Yes # Use new AVISO DT14 data (e.g., Capet et al, 2014)
25+
# AVISO_FILES: 'dt_global_twosat_msla_h_XXXXXXXX_20140106.nc'
26+
AVISO_FILES: 'dt_global_twosat_msla_h_????????_20140106.nc'
27+
AVISO_DT14_SUBSAMP: No # subsample the dqily AVISO DT14
28+
DAYS_BTWN_RECORDS: 3 # sampling rate (days)
29+
30+
PATHS:
31+
# Path to AVISO data
32+
DATA_DIR: '/data/PVA/Externe/global/delayed-time/grids/msla/two-sat-merged/h/2002/'
33+
# Path and filename of Chelton et al (1998) Rossby radius data
34+
# Obtain file from:
35+
# http://www-po.coas.oregonstate.edu/research/po/research/rossby_radius/
36+
RW_PATH: '/homelocal/emason/rossrad.dat'
37+
38+
# Path for saving of outputs
39+
SAVE_DIR: '/homelocal/emason/outputs/'
40+
41+
42+
# Reference Julian day (Julian date at Jan 1, 1992)
43+
JDAY_REFERENCE: 2448623.
44+
45+
46+
47+
# Define contouring parameters
48+
CONTOUR_PARAMETER:
49+
# Set Q contour spacing
50+
CONTOUR_PARAMETER_Q:
51+
MAX_Q: 5*10**-11
52+
NUM_LEVS: 100
53+
# Set SLA contour spacing (cm)
54+
CONTOUR_PARAMETER_SLA:
55+
MAX_SLA: 100.
56+
INTERVAL: 0.25
57+
58+
# Shape error (see Kurian et al 2011)
59+
SHAPE_ERROR: 55. # % (Mason et al 2014 use 55%)
60+
61+
# Filtering
62+
SMOOTHING: Yes
63+
SMOOTHING_SLA:
64+
TYPE: 'Gaussian'
65+
ZWL: 20. # degrees, zonal wavelength (see Chelton etal 2011)
66+
MWL: 10. # degrees, meridional wavelength
67+
68+
SMOOTHING_Q:
69+
TYPE: 'Hanning'
70+
SMOOTH_FAC: 5 # number of passes
71+
72+
# Min and max permitted eddy radii [degrees] and amplitudes (cm)
73+
RADMIN: 0.35 # CSS11 recommend ~50 km minimum
74+
RADMAX: 4.461
75+
AMPMIN: 1.
76+
AMPMAX: 150.
77+
78+
TRACK_DURATION_MIN: 28 # days
79+
80+
SEPARATION_METHOD: 'ellipse'
81+
#SEPARATION_METHOD: 'sum_radii'
82+
83+
# MPM14 use 1; CSS11 have no limit
84+
MAX_LOCAL_EXTREMA: 1
85+
86+
87+
# Typical parameters
88+
DIST0: 25000. # m separation distance after ~7 days (see CSS11 fig 22)
89+
RAD0: 60000. # m
90+
AMP0: 2. # cm
91+
TEMP0: 15.
92+
SALT0: 35.
93+
94+
95+
# Parameters used by Chelton etal and Kurian etal (Sec. 3.2) to ensure
96+
# the slow evolution of the eddies over time;
97+
# they use min and max values of 0.25 and 2.5
98+
EVOLVE_AMP_MIN: 0.0005 # min change in amplitude
99+
EVOLVE_AMP_MAX: 500 # max change in amplitude
100+
EVOLVE_AREA_MIN: 0.0005 # min change in area
101+
EVOLVE_AREA_MAX: 500 # max change in area
102+
103+
104+
# Make figures for animations
105+
SAVE_FIGURES: Yes
106+
107+
108+
# Define track_extra_variables to track and save:
109+
# - effective contour points
110+
# - speed-based contour points
111+
# - shape test values
112+
# - profiles of swirl velocity from effective contour inwards
113+
# Useful for working with ARGO data
114+
TRACK_EXTRA_VARIABLES: No
115+
116+
117+
118+
119+

0 commit comments

Comments
 (0)