LISOUSI: Line Source Simulation
help_text.cc
Go to the documentation of this file.
1 // DO NOT EDIT: this file is automatically derived from help_text.txt
2 #include "help_text.h"
3 char help_text[]=
4 {
5  "outfile name of output file to contain results\n"
6  "infile input file\n"
7  " t:T select traces T, where T may be any range\n"
8  " specification like '3-4' or '5,6,7-12,20'\n"
9  " f:F specifies an input file format differing from\n"
10  " the format selected by \"-type\"\n"
11  "\n"
12  "informational output:\n"
13  "-xhelp[=type] print detailed information regarding file formats\n"
14  " if \"type\" is specified, just print text for file format \"type\"\n"
15  "-listexperimental \n"
16  " list experimental and non-operational options\n"
17  "-v be verbose\n"
18  "-DEBUG produce debug output\n"
19  "\n"
20  "data file input and output:\n"
21  "-o overwrite output\n"
22  "-type type choose input file format (default: sff)\n"
23  "-Type type choose output file format (default: sff)\n"
24  "\n"
25  "filter alternatives:\n"
26  "default: Fourier domain application of analytic filter coefficents\n"
27  "-fdfilter apply numerically derived Fourier coefficients of 1/sqrt(t)\n"
28  "-tdfilter apply 1/sqrt(t) in the time domain by discrete convolution\n"
29  "-pad n in the case of Fourier domain processing, the time series\n"
30  " is padded with zeroes to factor n of the number of samples\n"
31  " of the input series prior to the Fourier transformation\n"
32  "\n"
33  "taper alternatives:\n"
34  "-taperlast tapers are applied prior to filtering by default; this\n"
35  " option selects to taper the time series after filtering\n"
36  " If this option is selected, the order of the processing\n"
37  " steps (which are not commutative) is reversed.\n"
38  "-sqrttaper By default we use r*sqrt(2/t) as the taper and scaling\n"
39  " function (direct-wave transformation). This is appropriate for\n"
40  " direct waves. In the case of reflected waves commonly the\n"
41  " propagation velocity is assumed to be known (see option\n"
42  " -velocity). Then the scaling function is v*sqrt(2*t), where v is\n"
43  " the assumed phase velocity (reflected-wave transformation).\n"
44  " The latter is selected by this option.\n"
45  "-tapdel t delay taper function by t seconds; this accounts for\n"
46  " the finite duration of a band limited source signal\n"
47  "-tapslo s delay taper by not more than s*offset, where s is a\n"
48  " slowness in s/m; serves as an upper limit for tapdel\n"
49  " at small offsets\n"
50  "\n"
51  "1/sqrt(t) construction:\n"
52  "the default operation to handle the singularity at t=0 is:\n"
53  " choose samples of 1/sqrt(t) such that they produce the\n"
54  " same mean values as the continuous function when being\n"
55  " integrated over one sampling interval\n"
56  "-integshift f shift time axis by a fraction f of the sampling interval\n"
57  " in order to adjust centroid of integration interval\n"
58  "the following options are for experimental purposes only:\n"
59  "-nointeg do not derive samples by integration; sample 1/sqrt(t)\n"
60  " directly and optionally use the following parameters to\n"
61  " control the bevahiour close to t=0\n"
62  " deprecated method\n"
63  "if -nointeg is selected:\n"
64  "-tshift f to avoid the singularity of 1/sqrt(t) at t=0, sampling time\n"
65  " is shifted by a fraction f of the sampling interval\n"
66  "-tlim f to avoid the singularity of 1/sqrt(t) at t=0, the sample\n"
67  " time for samples at times smaller than f*dt, where dt is\n"
68  " the sampling interval, is set to a given fraction of the\n"
69  " sampling interval (see option -tfac)\n"
70  "-tfac f to avoid the singularity of 1/sqrt(t) at t=0, the sample\n"
71  " time at small times (see options -tlim) is set to a\n"
72  " fraction f of the sampling interval\n"
73  "\n"
74  "Single-velocity transformation:\n"
75  "-fredomain apply transformation in the frequency domain for a\n"
76  " single direct wave velocity.\n"
77  "-exact apply the exact transformation for the single-velocity approach\n"
78  " (Forbriger 2014, eq. 31); the default is to apply the far-field\n"
79  " approximation (Forbriger 2014, eq. 30)\n"
80  "\n"
81  "-velocity v set assumed wave velocity in km/s\n"
82  "\n"
83  "Hybrid transformation:\n"
84  "-transition r1,r2 mix both approaches; up to offset r1 the \"single\n"
85  " velocity transformation\" is used; for offsets larger than\n"
86  " r2 the \"direct wave transformation\" is used; in between\n"
87  " both are mixed with continously varying percentage\n"
88  " from one to the other\n"
89  "\n"
90  "Additional options:\n"
91  "-limitlength some convolution schemes return a larger number of samples\n"
92  " than present in the input series (due to padding for\n"
93  " example); this option limits to numer of output samples\n"
94  " to the number of input samples\n"
95  "\n"
96  "-spatialdistance\n"
97  " use spatial distance to source instead of offset along surface,\n"
98  " whereever a distance is required\n"
99 };
char help_text[]
Definition: help_text.cc:3