-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathSampleParametersFile.m
71 lines (63 loc) · 3 KB
/
SampleParametersFile.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
%%% Sample Inputs file. This file should be used as a template for the
%%% parameters used in cBathy.
%%%
%%% *** Important Note on Usage: ***
%%% Before using the sample parameters, copy this file to a file named
%%% after the station. The name of this file should be the name of the
%%% station being processed, and it will appear in some of the output
%%% products.
%%% When you call analyzeBathyCollect, you will need to input the name of
%%% the parameters file which will be evaluated to load these parameters
%%% and may appear in some of the output products in titles/axis labels and
%%% file names.
%%% Site-specific Inputs
params.stationStr = 'SampleParametersFile';
params.dxm = 10; % analysis domain spacing in x
params.dym = 25; % analysis domain spacing in y
params.xyMinMax = [80 800 -500 1500]; % min, max of x, then y
% default to [] for cBathy to choose
params.tideFunction = 'cBathyTide'; % tide level function for eval
%%%%%%% Power user settings from here down %%%%%%%
params.MINDEPTH = 0.25; % for initialization and final QC
params.QTOL = 0.5; % reject skill below this in csm
params.minLam = 10; % min normalized eigenvalue to proceed
params.Lx = 3*params.dxm; % tomographic domain smoothing
params.Ly = 3*params.dym; %
params.kappa0 = 2; % increase in smoothing at outer xm
params.DECIMATE = 1; % decimate pixels to reduce work load.
params.maxNPix = 80; % max num pixels per tile (decimate excess)
params.minValsForBathyEst = 4; % need this many pixels to solve
params.shortLengthNFreqs = 4; % need this many for coherence sorting
% versus magnitude shorting
% f-domain etc.
params.fB = [1/18: 1/50: 1/4]; % frequencies for analysis (~40 dof)
params.nKeep = 4; % number of frequencies to keep
% debugging options
params.debug.production = 1; % this should be ZERO in DEBUG MODE!
params.debug.DOPLOTSTACKANDPHASEMAPS = 1; % top level debug of phase
params.debug.DOSHOWPROGRESS = 1; % show progress of tiles
params.debug.DOPLOTPHASETILE = 1; % observed and EOF results per pt
params.debug.TRANSECTX = 200; % for plotStacksAndPhaseMaps
params.debug.TRANSECTY = 900; % for plotStacksAndPhaseMaps
% default offshore wave angle. For search seeds.
params.offshoreRadCCWFromx = 0;
params.nlinfit = 1; % flag, 0 = use LMFnlsq.m to do non-linear fitting
%
% Copyright by Oregon State University, 2011
% Developed through collaborative effort of the Argus Users Group
% For official use by the Argus Users Group or other licensed activities.
%
% $Id: argus02b.m,v 1.2 2016/04/11 23:06:10 stanley Exp $
%
% $Log: argus02b.m,v $
% Revision 1.2 2016/04/11 23:06:10 stanley
% Fix MAXDEPTH
%
% Revision 1.1 2012/09/24 23:36:32 stanley
% Initial revision
%
%
%key
%comment
%
params.minValsForBathyEst = 4;