-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathspectrum1d.c
833 lines (757 loc) · 33.2 KB
/
spectrum1d.c
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*
*
* Brief synopsis: Compute auto and cross spectra using Welch's method of
* multiple overlapped windows. Find 1 standard error bars
* following expressions in Bendat & Piersol.
*
* Author: W. H. F. Smith
* Date: 1-JAN-2010
* Version: 6 API
* References: Julius S. Bendat & Allan G. Piersol,
* "Random Data", 2nd revised edition, 566pp.,
* 1986, John Wiley & Sons, New York. [ B&P below]
*
* Peter D. Welch, "The use of Fast Fourier
* Transform for the estimation of power spectra:
* a method based on time averaging over short,
* modified periodograms", IEEE Transactions on
* Audio and Electroacoustics, Vol AU-15, No 2,
* June, 1967.
*/
#include "gmt_dev.h"
#include "longopt/spectrum1d_inc.h"
#define THIS_MODULE_CLASSIC_NAME "spectrum1d"
#define THIS_MODULE_MODERN_NAME "spectrum1d"
#define THIS_MODULE_LIB "core"
#define THIS_MODULE_PURPOSE "Compute auto- [and cross-] spectra from one [or two] time series"
#define THIS_MODULE_KEYS "<D{,>D},T-)"
#define THIS_MODULE_NEEDS ""
#define THIS_MODULE_OPTIONS "-Vbdefghiqs"
#define SPECTRUM1D_N_OUTPUT_CHOICES 8
#define SPECTRUM1D_SEPARATE_YES 0
#define SPECTRUM1D_SEPARATE_NO 1
enum Spectrum1d_Lmode {
SPECTRUM1D_NO_TREND_REMOVE = 0,
SPECTRUM1D_TREND_REMOVE = 1,
SPECTRUM1D_MIDVAL_REMOVE = 2,
SPECTRUM1D_MEANVAL_REMOVE = 3
};
struct SPECTRUM1D_CTRL {
struct SPECTRUM1D_Out { /* -><file> */
bool active;
char *file;
} Out;
struct SPECTRUM1D_C { /* -C[<xycnpago>] */
bool active;
char col[SPECTRUM1D_N_OUTPUT_CHOICES]; /* Character codes for desired output in the right order */
} C;
struct SPECTRUM1D_D { /* -D<inc> */
bool active;
double inc;
} D;
struct SPECTRUM1D_L { /* -L[m|h] */
bool active;
bool debug;
enum Spectrum1d_Lmode mode;
} L;
struct SPECTRUM1D_N { /* -N[+]<namestem> */
bool active;
unsigned int mode;
char *name;
} N;
struct SPECTRUM1D_S { /* -S<segment_size> */
bool active;
unsigned int size;
} S;
struct SPECTRUM1D_T { /* -T */
bool active;
} T;
struct SPECTRUM1D_W { /* -W */
bool active;
} W;
};
struct SPECTRUM1D_INFO { /* Control structure for spectrum1d */
unsigned int y_given;
int n_spec, window, window_2;
gmt_grdfloat *datac;
double dt, x_variance, y_variance, d_n_windows, y_pow;
struct SPECTRUM1D_SPEC {
double xpow; /* PSD in X(t) */
double ypow; /* PSD in Y(t) */
double gain; /* Amplitude increase X->Y in Optimal Response Function */
double phase; /* Phase of Y w.r.t. X in Optimal Response Function */
double coh; /* (squared) Coherence of Y and X; SNR of Y = coh/(1-coh) */
double radmit; /* Real part of Admittance; used e.g., for gravity/topography */
} *spec;
};
GMT_LOCAL void spectrum1d_alloc_arrays (struct GMT_CTRL *GMT, struct SPECTRUM1D_INFO *C) {
C->n_spec = C->window/2; /* This means we skip zero frequency; data are detrended */
C->window_2 = 2 * C->window; /* This is for complex array stuff */
C->spec = gmt_M_memory (GMT, NULL, C->n_spec, struct SPECTRUM1D_SPEC);
C->datac = gmt_M_memory (GMT, NULL, C->window_2, gmt_grdfloat);
}
GMT_LOCAL void spectrum1d_detrend_and_hanning (struct SPECTRUM1D_INFO *C, enum Spectrum1d_Lmode mode) {
/* The mode setting can be one of 4 values:
* 0: No trend removed
* 1: Linear LS trend removed [Default]
* 2: Mid-value removed
* 3: Mean-value removed
* In all cases we apply the Hanning windowing */
int i, t;
double sumx, sumtx, sumy, sumty, sumt2, x_slope, x_mean, y_slope, y_mean;
double t_factor, h_period, h_scale, hc, hw, tt, x_min, x_max, y_min, y_max;
sumx = sumtx = sumy = sumty = sumt2 = 0.0;
x_slope = x_mean = y_slope = y_mean = 0.0;
x_min = y_min = DBL_MAX; x_max = y_max = -DBL_MAX;
C->x_variance = C->y_variance = 0.0;
t_factor = 2.0 / (C->window - 1);
h_period = M_PI / (double)C->window; /* For Hanning window */
h_scale = sqrt (8.0/3.0); /* For Hanning window */
if (mode != SPECTRUM1D_NO_TREND_REMOVE) { /* Need to remove linear trend or constant */
if (C->y_given) {
for (i = 0, t = 0; i < C->window_2; i += 2, t++) {
tt = t * t_factor - 1.0;
sumt2 += (tt * tt);
sumx += C->datac[i];
sumtx += (tt * C->datac[i]);
sumy += C->datac[i+1];
sumty += (tt * C->datac[i+1]);
if (C->datac[i] < x_min) x_min = C->datac[i];
if (C->datac[i] > x_max) x_max = C->datac[i];
if (C->datac[i+1] < y_min) y_min = C->datac[i+1];
if (C->datac[i+1] > y_max) y_max = C->datac[i+1];
}
y_slope = (mode == SPECTRUM1D_TREND_REMOVE) ? sumty / sumt2 : 0.0;
y_mean = (mode == SPECTRUM1D_MIDVAL_REMOVE) ? 0.5 * (y_min + y_max) : sumy / C->window;
}
else {
for (i = 0, t = 0; i < C->window_2; i += 2, t++) {
tt = t * t_factor - 1.0;
sumt2 += (tt * tt);
sumx += C->datac[i];
sumtx += (tt * C->datac[i]);
if (C->datac[i] < x_min) x_min = C->datac[i];
if (C->datac[i] > x_max) x_max = C->datac[i];
}
}
x_slope = (mode == SPECTRUM1D_TREND_REMOVE) ? sumtx / sumt2 : 0.0;
x_mean = (mode == SPECTRUM1D_MIDVAL_REMOVE) ? 0.5 * (x_min + x_max) : sumx / C->window;
}
if (C->y_given) {
for (i = 0, t = 0; i < C->window_2; i += 2, t++) {
hc = cos(t * h_period);
hw = h_scale * (1.0 - hc * hc);
tt = t * t_factor - 1.0;
C->datac[i] -= (gmt_grdfloat)(x_mean + tt * x_slope);
C->datac[i] *= (gmt_grdfloat)hw;
C->x_variance += (C->datac[i] * C->datac[i]);
C->datac[i+1] -= (gmt_grdfloat)(y_mean + tt * y_slope);
C->datac[i+1] *= (gmt_grdfloat)hw;
C->y_variance += (C->datac[i+1] * C->datac[i+1]);
}
C->x_variance /= C->window;
C->y_variance /= C->window;
}
else {
for (i = 0, t = 0; i < C->window_2; i += 2, t++) {
hc = cos(t * h_period);
hw = h_scale * (1.0 - hc * hc);
tt = t * t_factor - 1.0;
C->datac[i] -= (gmt_grdfloat)(x_mean + tt * x_slope);
C->datac[i] *= (gmt_grdfloat)hw;
C->x_variance += (C->datac[i] * C->datac[i]);
}
C->x_variance /= C->window;
}
}
GMT_LOCAL int spectrum1d_compute_spectra (struct GMT_CTRL *GMT, struct SPECTRUM1D_INFO *C, double *x, double *y, uint64_t n_data, enum Spectrum1d_Lmode mode) {
int n_windows, w, i, t_start, t_stop, t, f;
double dw, spec_scale, x_varp, y_varp = 1.0, one_on_nw, co_quad;
double xreal, ximag, yreal, yimag, xpower, ypower, co_spec, quad_spec;
char format[GMT_BUFSIZ];
/* Scale factor for spectral estimates should be 1/4 of amount given in
Bendat & Piersol eqn 11-102 because I compute 2 * fft in my
one-sided code below. However, tests show that I need 1/8 of
their equation to match variances approximately */
/* This used to read: spec_scale = 0.5 / (C->window_2 * dt); */
spec_scale = C->dt / (C->window_2);
C->d_n_windows = (double)n_data / (double)C->window;
n_windows = irint (2.0 * C->d_n_windows) - 1;
one_on_nw = 1.0 / (double)n_windows;
dw = (n_windows > 1) ? (double)(n_data - C->window) / (double)(n_windows - 1) : 1.0;
for (w = 0; w < n_windows; w++) {
t_start = irint (floor (0.5 + w * dw));
t_stop = t_start + C->window;
if (C->y_given) {
for (t = t_start, i = 0; t < t_stop; t++, i+=2) {
C->datac[i] = (gmt_grdfloat)x[t];
C->datac[i+1] = (gmt_grdfloat)y[t];
}
}
else {
for (t = t_start, i = 0; t < t_stop; t++, i+=2) {
C->datac[i] = (gmt_grdfloat)x[t];
C->datac[i+1] = 0.0;
}
}
spectrum1d_detrend_and_hanning (C, mode);
if (GMT_FFT_1D (GMT->parent, C->datac, C->window, GMT_FFT_FWD, GMT_FFT_COMPLEX))
return GMT_RUNTIME_ERROR;
/* Get one-sided estimates */
x_varp = spec_scale * (C->datac[0] * C->datac[0]);
if (C->y_given) {
y_varp = spec_scale * (C->datac[1] * C->datac[1]);
for (i = 0, f = 2; i < C->n_spec; i++, f+=2) {
xreal = (i == C->n_spec - 1) ? C->datac[f] : C->datac[f] + C->datac[C->window_2 - f];
ximag = (i == C->n_spec - 1) ? 0.0 : C->datac[f+1] - C->datac[C->window_2 - f + 1];
yreal = (i == C->n_spec - 1) ? C->datac[f+1] : C->datac[f+1] + C->datac[C->window_2 - f + 1];
yimag = (i == C->n_spec - 1) ? 0.0 : C->datac[C->window_2 - f] - C->datac[f];
xpower = spec_scale * (xreal * xreal + ximag * ximag);
ypower = spec_scale * (yreal * yreal + yimag * yimag);
co_spec = spec_scale * (xreal * yreal + ximag * yimag);
quad_spec = spec_scale * (ximag * yreal - yimag * xreal);
x_varp += xpower;
y_varp += ypower;
C->spec[i].xpow += xpower;
C->spec[i].ypow += ypower;
/* Temporarily store co-spec in gain */
C->spec[i].gain += co_spec;
/* Temporarily store quad-spec in phase */
C->spec[i].phase += quad_spec;
}
x_varp *= (C->dt/C->n_spec);
y_varp *= (C->dt/C->n_spec);
}
else {
for (i = 0, f = 2; i < C->n_spec; i++, f+=2) {
xreal = C->datac[f] + C->datac[C->window_2 - f];
ximag = C->datac[f+1] - C->datac[C->window_2 - f + 1];
xpower = spec_scale * (xreal * xreal + ximag * ximag);
x_varp += xpower;
C->spec[i].xpow += xpower;
}
x_varp *= (C->dt/C->n_spec);
}
if (gmt_M_is_verbose (GMT, GMT_MSG_INFORMATION)) {
C->y_pow = (C->y_given) ? C->y_variance/y_varp : 0.0;
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, "Window %d from %d to %d\n", w, t_start, t_stop);
sprintf(format, "X var: %s X pow: %s ratio: %s Y var: %s Y pow: %s ratio: %s\n",
GMT->current.setting.format_float_out, GMT->current.setting.format_float_out, GMT->current.setting.format_float_out, GMT->current.setting.format_float_out, GMT->current.setting.format_float_out, GMT->current.setting.format_float_out);
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, format, C->x_variance, x_varp, (C->x_variance/x_varp), C->y_variance, y_varp, C->y_pow);
}
}
/* Now we can divide by n_windows for the ensemble average.
The cross spectral stuff needs to be computed */
if (C->y_given ) {
for (i = 0; i < C->n_spec; i++) {
C->spec[i].xpow *= one_on_nw;
C->spec[i].ypow *= one_on_nw;
co_spec = C->spec[i].gain * one_on_nw;
quad_spec = C->spec[i].phase * one_on_nw;
C->spec[i].phase = d_atan2(quad_spec, co_spec);
co_quad = co_spec * co_spec + quad_spec * quad_spec;
C->spec[i].coh = co_quad / (C->spec[i].xpow * C->spec[i].ypow);
C->spec[i].gain = sqrt(co_quad) / C->spec[i].xpow;
C->spec[i].radmit = co_spec / C->spec[i].xpow;
}
}
else {
for (i = 0; i < C->n_spec; i++) C->spec[i].xpow *= one_on_nw;
}
return 0;
}
GMT_LOCAL int spectrum1d_write_output_separate (struct GMT_CTRL *GMT, struct SPECTRUM1D_INFO *C, char *col, int n_outputs, int write_wavelength, char *namestem) {
/* Writes separate hardwired files for each output type. Does NOT use GMT_Put_* functions */
int i, j;
double delta_f, eps_pow, out[3], *f_or_w = NULL;
char fname[GMT_LEN256] = {""};
FILE *fpout = NULL;
delta_f = 1.0 / (C->window * C->dt);
eps_pow = 1.0 / sqrt(C->d_n_windows); /* Multiplicative error bars for power spectra */
f_or_w = gmt_M_memory (GMT, NULL, C->n_spec, double);
for (i = 0; i < C->n_spec; i++) f_or_w[i] = (write_wavelength) ? 1.0 / ((i + 1) * delta_f) : (i + 1) * delta_f;
/* loop through output choices */
for (j = 0; j < n_outputs; j++) {
switch (col[j]) {
case 'x': /* write x power [ B&P 2nd Ed. eqn. 9.32 ] */
sprintf (fname, "%s.xpower", namestem);
if ((fpout = gmt_fopen (GMT, fname, GMT->current.io.w_mode)) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
gmt_M_free (GMT, f_or_w);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].xpow;
out[GMT_Z] = eps_pow * C->spec[i].xpow;
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
case 'y': /* Write y power [ B&P 2nd Ed. eqn. 9.32 ] */
sprintf (fname, "%s.ypower", namestem);
if ((fpout = gmt_fopen (GMT, fname, GMT->current.io.w_mode)) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
gmt_M_free (GMT, f_or_w);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].ypow;
out[GMT_Z] = eps_pow * C->spec[i].ypow;
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
case 'c': /* Write Coherent Output power [ B&P 2nd Ed. eqn. 9.71 ] */
sprintf (fname, "%s.cpower", namestem);
if ((fpout = gmt_fopen (GMT, fname, GMT->current.io.w_mode)) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
gmt_M_free (GMT, f_or_w);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].ypow * C->spec[i].coh;
out[GMT_Z] = out[GMT_Y] * eps_pow * sqrt ( (2.0 - C->spec[i].coh) / C->spec[i].coh);
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
case 'n': /* Write Noise Output power [ B&P 2nd Ed. eqn. 9.73 & Table 9.6 ] */
sprintf (fname, "%s.npower", namestem);
if ((fpout = gmt_fopen (GMT, fname, GMT->current.io.w_mode)) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
gmt_M_free (GMT, f_or_w);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].ypow * (1.0 - C->spec[i].coh);
out[GMT_Z] = out[GMT_Y] * eps_pow;
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
case 'g': /* Write Gain spectrum [ B&P 2nd Ed. eqn. 9.90 & Table 9.6 ] */
sprintf (fname, "%s.gain", namestem);
if ((fpout = gmt_fopen (GMT, fname, GMT->current.io.w_mode)) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
gmt_M_free (GMT, f_or_w);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].gain;
out[GMT_Z] = out[GMT_Y] * eps_pow * sqrt( (1.0 - C->spec[i].coh) / (2.0 * C->spec[i].coh) );
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
case 'a': /* Write Real Admittance spectrum
We don't know the correct error estimate and it is not
in Bendat and Piersol, or Priestly, or any standard text.
Smith needs to derive this, and should make a note to
check the expression given by Marcia Maia et al in Geophys.
J. Int, 100, 337-348, 1990, equation 10, page 341.
Meanwhile we will default to use the expression related to
that for the gain spectrum:
*/
sprintf (fname, "%s.admit", namestem);
if ((fpout = gmt_fopen (GMT, fname, "w")) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].radmit;
out[GMT_Z] = fabs (eps_pow * sqrt( (1.0 - C->spec[i].coh) / (2.0 * C->spec[i].coh) ) * out[GMT_Y]);
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
case 'p': /* Write Phase spectrum [ B&P 2nd Ed. eqn. 9.91 & Table 9.6 ] */
sprintf (fname, "%s.phase", namestem);
if ((fpout = gmt_fopen (GMT, fname, GMT->current.io.w_mode)) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
gmt_M_free (GMT, f_or_w);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].phase;
out[GMT_Z] = eps_pow * sqrt( (1.0 - C->spec[i].coh) / (2.0 * C->spec[i].coh) );
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
case 'o': /* Write Coherency spectrum [ B&P 2nd Ed. eqn. 9.82 ] */
sprintf (fname, "%s.coh", namestem);
if ((fpout = gmt_fopen (GMT, fname, GMT->current.io.w_mode)) == NULL) {
GMT_Report (GMT->parent, GMT_MSG_ERROR, " Cannot open w %s\n", fname);
gmt_M_free (GMT, f_or_w);
return (GMT_ERROR_ON_FOPEN);
}
GMT_Report (GMT->parent, GMT_MSG_INFORMATION, " Writing %s\n", fname);
for (i = 0; i < C->n_spec; i++) {
out[GMT_X] = f_or_w[i];
out[GMT_Y] = C->spec[i].coh;
out[GMT_Z] = out[GMT_Y] * eps_pow * (1.0 - C->spec[i].coh) * sqrt(2.0 / C->spec[i].coh);
GMT->current.io.output (GMT, fpout, 3, out, NULL);
}
gmt_fclose (GMT, fpout);
break;
}
}
gmt_M_free (GMT, f_or_w);
return (0);
}
GMT_LOCAL void spectrum1d_assign_output (struct GMT_CTRL *GMT, struct SPECTRUM1D_INFO *C, char *col, int n_outputs, int write_wavelength, double *out[]) {
/* Fills out the 2-D table array given */
int i, j, k;
double delta_f, eps_pow, tmp, *f_or_w;
delta_f = 1.0 / (C->window * C->dt);
eps_pow = 1.0 / sqrt(C->d_n_windows); /* Multiplicative error bars for power spectra */
f_or_w = gmt_M_memory (GMT, NULL, C->n_spec, double);
for (i = 0; i < C->n_spec; i++) f_or_w[i] = (write_wavelength) ? 1.0 / ((i + 1) * delta_f) : (i + 1) * delta_f;
for (i = 0; i < C->n_spec; i++) {
out[GMT_X][i] = f_or_w[i];
/* loop through output choices */
for (j = 0, k = 1; j < n_outputs; j++) {
switch (col[j]) {
case 'x': /* return x power [ B&P 2nd Ed. eqn. 9.32 ] */
out[k++][i] = C->spec[i].xpow;
out[k++][i] = eps_pow * C->spec[i].xpow;
break;
case 'y': /* Write y power [ B&P 2nd Ed. eqn. 9.32 ] */
out[k++][i] = C->spec[i].ypow;
out[k++][i] = eps_pow * C->spec[i].ypow;
break;
case 'c': /* Write Coherent Output power [ B&P 2nd Ed. eqn. 9.71 ] */
out[k++][i] = tmp = C->spec[i].ypow * C->spec[i].coh;
out[k++][i] = tmp * eps_pow * sqrt ( (2.0 - C->spec[i].coh) / C->spec[i].coh);
break;
case 'n': /* Write Noise Output power [ B&P 2nd Ed. eqn. 9.73 & Table 9.6 ] */
out[k++][i] = tmp = C->spec[i].ypow * (1.0 - C->spec[i].coh);
out[k++][i] = tmp * eps_pow;
break;
case 'g': /* Write Gain spectrum [ B&P 2nd Ed. eqn. 9.90 & Table 9.6 ] */
out[k++][i] = tmp = C->spec[i].gain;
out[k++][i] = tmp * eps_pow * sqrt( (1.0 - C->spec[i].coh) / (2.0 * C->spec[i].coh) );
break;
case 'a': /* Write Real Admittance spectrum
We don't know the correct error estimate and it is not
in Bendat and Piersol, or Priestly, or any standard text.
Smith needs to derive this, and should make a note to
check the expression given by Marcia Maia et al in Geophys.
J. Int, 100, 337-348, 1990, equation 10, page 341.
Meanwhile we will default to use the expression related to
that for the gain spectrum: */
out[k++][i] = tmp = C->spec[i].radmit;
out[k++][i] = fabs (eps_pow * sqrt( (1.0 - C->spec[i].coh) / (2.0 * C->spec[i].coh) ) * tmp);
break;
case 'p': /* Write Phase spectrum [ B&P 2nd Ed. eqn. 9.91 & Table 9.6 ] */
out[k++][i] = C->spec[i].phase;
out[k++][i] = eps_pow * sqrt( (1.0 - C->spec[i].coh) / (2.0 * C->spec[i].coh) );
break;
case 'o': /* Write Coherency spectrum [ B&P 2nd Ed. eqn. 9.82 ] */
out[k++][i] = tmp = C->spec[i].coh;
out[k++][i] = tmp * eps_pow * (1.0 - C->spec[i].coh) * sqrt(2.0 / C->spec[i].coh);
break;
}
}
}
gmt_M_free (GMT, f_or_w);
}
GMT_LOCAL void spectrum1d_free_space (struct GMT_CTRL *GMT, struct SPECTRUM1D_INFO *C) {
gmt_M_free (GMT, C->spec);
gmt_M_free (GMT, C->datac);
}
static void *New_Ctrl (struct GMT_CTRL *GMT) { /* Allocate and initialize a new control structure */
struct SPECTRUM1D_CTRL *C;
C = gmt_M_memory (GMT, NULL, 1, struct SPECTRUM1D_CTRL);
/* Initialize values whose defaults are not 0/false/NULL */
C->D.inc = 1.0;
C->C.col[0] = 'x';
C->C.col[1] = 'y';
C->C.col[2] = 'c';
C->C.col[3] = 'n';
C->C.col[4] = 'p';
C->C.col[5] = 'a';
C->C.col[6] = 'g';
C->C.col[7] = 'o';
C->L.mode = SPECTRUM1D_TREND_REMOVE; /* Default is to remove a linear LS trend */
C->N.name = strdup ("spectrum");
C->N.mode = SPECTRUM1D_SEPARATE_YES;
return (C);
}
static void Free_Ctrl (struct GMT_CTRL *GMT, struct SPECTRUM1D_CTRL *C) { /* Deallocate control structure */
if (!C) return;
gmt_M_str_free (C->N.name);
gmt_M_free (GMT, C);
}
static int usage (struct GMTAPI_CTRL *API, int level) {
const char *name = gmt_show_name_and_purpose (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_PURPOSE);
if (level == GMT_MODULE_PURPOSE) return (GMT_NOERROR);
GMT_Usage (API, 0, "usage: %s [<table>] -S<segment_size> [-C[<xycnpago>]] [-D<dt>] [-L[h|m]] [-N[<name_stem>]] "
"[-T] [%s] [-W] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s]\n",
name, GMT_V_OPT, GMT_b_OPT, GMT_d_OPT, GMT_e_OPT, GMT_f_OPT, GMT_g_OPT, GMT_h_OPT, GMT_i_OPT,
GMT_qi_OPT, GMT_s_OPT, GMT_PAR_OPT);
if (level == GMT_SYNOPSIS) return (GMT_MODULE_SYNOPSIS);
GMT_Message (API, GMT_TIME_NONE, " REQUIRED ARGUMENTS:\n");
GMT_Option (API, "<");
GMT_Usage (API, 1, "\n-S<segment_size>");
GMT_Usage (API, -2, "Use data subsets of <segment_size> elements. "
"Note: <segment_size> must be radix 2; "
"std. err. = 1/sqrt(n_data/segment_size).");
GMT_Message (API, GMT_TIME_NONE, "\n OPTIONAL ARGUMENTS:\n");
GMT_Usage (API, 1, "\n-C[<xycnpago>]");
GMT_Usage (API, -2, "Specify cross-spectra output(s) for two-column X(t),Y(t) input [Default is all]:");
GMT_Usage (API, 3, "x: x-power.");
GMT_Usage (API, 3, "y: y-power.");
GMT_Usage (API, 3, "c: Coherent power.");
GMT_Usage (API, 3, "n: Noise power.");
GMT_Usage (API, 3, "p: Phase spectrum.");
GMT_Usage (API, 3, "a: Admittance.");
GMT_Usage (API, 3, "g: Gain.");
GMT_Usage (API, 3, "o: Squared coherency.");
GMT_Usage (API, 1, "\n-D<dt>");
GMT_Usage (API, -2, "Set delta_time sampling interval of data [Default = 1.0].");
GMT_Usage (API, 1, "\n-L[h|m]");
GMT_Usage (API, -2, "Leave trend alone: Do not remove least squares trend from data [Default removes trend]. Optional directives:");
GMT_Usage (API, 3, "h: Remove mid-value instead.");
GMT_Usage (API, 3, "m: Remove mean instead.");
GMT_Usage (API, 1, "\n-N[<name_stem>]");
GMT_Usage (API, -2, "Supply name stem for files [Default = 'spectrum']. "
"Output files will be named <name_stem>.xpower, etc. "
"To disable the writing of individual files, just give -N.");
GMT_Usage (API, 1, "\n-T Disable writing a single output table with selected columns to standard output.");
GMT_Option (API, "V");
GMT_Usage (API, 1, "\n-W Write Wavelength of spectral estimate in first column [Default = frequency].");
GMT_Option (API, "bi2,bo,d,e,f,g,h,i,qi,s,.");
return (GMT_MODULE_USAGE);
}
static int parse (struct GMT_CTRL *GMT, struct SPECTRUM1D_CTRL *Ctrl, struct GMT_OPTION *options) {
/* This parses the options provided to spectrum1d and sets parameters in CTRL.
* Any GMT common options will override values set previously by other commands.
* It also replaces any file names specified as input or output with the data ID
* returned when registering these sources/destinations with the API.
*/
int sval;
unsigned int n_errors = 0, j, window_test = 2, n_files = 0;
struct GMT_OPTION *opt = NULL;
struct GMTAPI_CTRL *API = GMT->parent;
for (opt = options; opt; opt = opt->next) {
switch (opt->option) {
case '<': /* Skip input files */
if (GMT_Get_FilePath (API, GMT_IS_DATASET, GMT_IN, GMT_FILE_REMOTE, &(opt->arg))) n_errors++;
break;
case '>': /* Got named output file */
n_errors += gmt_M_repeated_module_option (API, Ctrl->Out.active);
n_errors += gmt_get_required_file (GMT, opt->arg, opt->option, 0, GMT_IS_DATASET, GMT_OUT, GMT_FILE_LOCAL, &(Ctrl->Out.file));
n_files++;
break;
/* Processes program-specific parameters */
case 'C':
n_errors += gmt_M_repeated_module_option (API, Ctrl->C.active);
if (!opt->arg[0]) break; /* Stay with the default order of output */
gmt_M_memset (Ctrl->C.col, SPECTRUM1D_N_OUTPUT_CHOICES, char); /* Reset and read options */
for (j = 0; opt->arg[j]; j++) {
if (j < SPECTRUM1D_N_OUTPUT_CHOICES) {
Ctrl->C.col[j] = opt->arg[j];
if (!strchr ("xycnpago", Ctrl->C.col[j])) {
GMT_Report (API, GMT_MSG_ERROR, "Option -C: Unrecognized output choice %c\n", Ctrl->C.col[j]);
n_errors++;
}
}
else {
GMT_Report (API, GMT_MSG_ERROR, "Option -C: Too many output columns selected: Choose from -Cxycnpago\n");
n_errors++;
}
}
break;
case 'D':
n_errors += gmt_M_repeated_module_option (API, Ctrl->D.active);
n_errors += gmt_get_required_double (GMT, opt->arg, opt->option, 0, &Ctrl->D.inc);
break;
case 'L': /* Leave trend alone, or just remove a constant */
n_errors += gmt_M_repeated_module_option (API, Ctrl->L.active);
switch (opt->arg[0]) {
case 'm': Ctrl->L.mode = SPECTRUM1D_MEANVAL_REMOVE; break;
case 'h': Ctrl->L.mode = SPECTRUM1D_MIDVAL_REMOVE; break;
case '\0': Ctrl->L.mode = SPECTRUM1D_NO_TREND_REMOVE; break;
default:
GMT_Report (API, GMT_MSG_ERROR, "Option -L: Unrecognized directive %s\n", &(opt->arg[1]));
n_errors++;
break;
}
break;
case 'N': /* Set alternate file stem OR turn off multiple files */
n_errors += gmt_M_repeated_module_option (API, Ctrl->N.active);
if (opt->arg[0]) {
if (opt->arg[0] == '+') { /* Obsolete syntax */
if (gmt_M_compat_check (GMT, 5)) {
GMT_Report (API, GMT_MSG_COMPAT, "Modifier -N+<file> is deprecated; use -N in the future to save to standard output.\n");
if (n_files++ == 0) Ctrl->Out.file = strdup (&opt->arg[1]);
}
else {
GMT_Report (API, GMT_MSG_ERROR, "Option -N: Unrecognized modifier +%c\n", opt->arg[1]);
n_errors++;
}
}
else { /* Set name stem */
gmt_M_str_free (Ctrl->N.name);
Ctrl->N.name = strdup (opt->arg);
}
}
else /* Turn off multiple file output */
Ctrl->N.mode = SPECTRUM1D_SEPARATE_NO;
break;
case 'S':
n_errors += gmt_M_repeated_module_option (API, Ctrl->S.active);
sval = atoi (opt->arg);
n_errors += gmt_M_check_condition (GMT, sval <= 0, "Option -S: segment size must be positive\n");
Ctrl->S.size = sval;
while (window_test < Ctrl->S.size) { /* If size is radix-2 then window_test will equal size after this loop ends */
window_test += window_test;
}
break;
case 'T': /* Turn off multicolumn single output file */
n_errors += gmt_M_repeated_module_option (API, Ctrl->T.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
case 'W':
n_errors += gmt_M_repeated_module_option (API, Ctrl->W.active);
n_errors += gmt_get_no_argument (GMT, opt->arg, opt->option, 0);
break;
default: /* Report bad options */
n_errors += gmt_default_option_error (GMT, opt);
break;
}
}
n_errors += gmt_M_check_condition (GMT, !Ctrl->S.active, "Option -S: Must supply required segment size (which must be radix 2)\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->S.active && window_test != Ctrl->S.size, "Option -S: Segment size is not radix 2. Try %d or %d (or possibly smaller; see -S documentation).\n", (window_test/2), window_test/4);
n_errors += gmt_M_check_condition (GMT, Ctrl->D.inc <= 0.0, "Option -D: Sampling interval must be positive\n");
n_errors += gmt_check_binary_io (GMT, Ctrl->C.active + 1);
n_errors += gmt_M_check_condition (GMT, n_files > 1, "Only one output destination can be specified\n");
n_errors += gmt_M_check_condition (GMT, Ctrl->N.mode == SPECTRUM1D_SEPARATE_NO && Ctrl->T.active, "Cannot use both -T and -N as no output would be produced\n");
return (n_errors ? GMT_PARSE_ERROR : GMT_NOERROR);
}
#define bailout(code) {gmt_M_free_options (mode); return (code);}
#define Return(code) {Free_Ctrl (GMT, Ctrl); gmt_end_module (GMT, GMT_cpy); bailout (code);}
EXTERN_MSC int GMT_spectrum1d (void *V_API, int mode, void *args) {
int error = 0;
unsigned int k, n_outputs;
uint64_t tbl, seg, n_cols_tot = 0;
double *y = NULL; /* Used for cross-spectra only */
struct SPECTRUM1D_INFO C;
struct GMT_DATASET *Din = NULL, *Dout = NULL;
struct GMT_DATATABLE *Tout = NULL;
struct GMT_DATASEGMENT *S = NULL, *Sout = NULL;
struct SPECTRUM1D_CTRL *Ctrl = NULL;
struct GMT_CTRL *GMT = NULL, *GMT_cpy = NULL;
struct GMT_OPTION *options = NULL;
struct GMTAPI_CTRL *API = gmt_get_api_ptr (V_API); /* Cast from void to GMTAPI_CTRL pointer */
/*----------------------- Standard module initialization and parsing ----------------------*/
if (API == NULL) return (GMT_NOT_A_SESSION);
if (mode == GMT_MODULE_PURPOSE) return (usage (API, GMT_MODULE_PURPOSE)); /* Return the purpose of program */
options = GMT_Create_Options (API, mode, args); if (API->error) return (API->error); /* Set or get option list */
if ((error = gmt_report_usage (API, options, 0, usage)) != GMT_NOERROR) bailout (error); /* Give usage if requested */
/* Parse the command-line arguments */
if ((GMT = gmt_init_module (API, THIS_MODULE_LIB, THIS_MODULE_CLASSIC_NAME, THIS_MODULE_KEYS, THIS_MODULE_NEEDS, module_kw, &options, &GMT_cpy)) == NULL) bailout (API->error); /* Save current state */
if (GMT_Parse_Common (API, THIS_MODULE_OPTIONS, options)) Return (API->error);
Ctrl = New_Ctrl (GMT); /* Allocate and initialize a new control structure */
if ((error = parse (GMT, Ctrl, options)) != 0) Return (error);
/*---------------------------- This is the spectrum1d main code ----------------------------*/
GMT_Report (API, GMT_MSG_INFORMATION, "Processing input table data\n");
gmt_M_memset (&C, 1, struct SPECTRUM1D_INFO);
C.dt = Ctrl->D.inc;
C.y_given = Ctrl->C.active;
C.window = Ctrl->S.size;
for (k = n_outputs = 0; k < SPECTRUM1D_N_OUTPUT_CHOICES && Ctrl->C.col[k]; k++) n_outputs++;
if (!Ctrl->C.active) { /* ensure x-power output */
Ctrl->C.col[0] = 'x';
n_outputs = 1;
Ctrl->C.active = true;
}
if ((error = GMT_Set_Columns (API, GMT_IN, 1 + C.y_given, GMT_COL_FIX_NO_TEXT)) != GMT_NOERROR) {
Return (error);
}
if (GMT_Init_IO (API, GMT_IS_DATASET, GMT_IS_NONE, GMT_IN, GMT_ADD_DEFAULT, 0, options) != GMT_NOERROR) { /* Establishes data input */
Return (API->error);
}
if ((Din = GMT_Read_Data (API, GMT_IS_DATASET, GMT_IS_FILE, 0, GMT_READ_NORMAL, NULL, NULL, NULL)) == NULL) {
Return (API->error);
}
if (Din->n_columns < (1 + C.y_given)) {
GMT_Report (API, GMT_MSG_ERROR, "Input data have %d column(s) but at least %d are needed\n", (int)Din->n_columns, 1 + C.y_given);
Return (GMT_DIM_TOO_SMALL);
}
if (Din->n_records < Ctrl->S.size) {
GMT_Report (API, GMT_MSG_ERROR, "Option -S: Specified segment size (%u) exceeds data set size (%" PRIu64 ")\n", Ctrl->S.size, Din->n_records);
Return (GMT_RUNTIME_ERROR);
}
spectrum1d_alloc_arrays (GMT, &C);
if (!Ctrl->T.active) { /* Write single data file with 17 columns to stdout (or specified name) */
uint64_t dim[GMT_DIM_SIZE];
n_cols_tot = 1 + 2 * n_outputs;
dim[GMT_TBL] = Din->n_tables; /* Same number of tables as input */
dim[GMT_SEG] = 0; /* Don't know about segments yet */
dim[GMT_COL] = n_cols_tot; /* Number of columns needed output file */
dim[GMT_ROW] = C.n_spec; /* Number of rows */
if ((Dout = GMT_Create_Data (API, GMT_IS_DATASET, GMT_IS_NONE, 0, dim, NULL, NULL, 0, 0, NULL)) == NULL)
Return (API->error); /* An empty table for stacked results */
}
for (tbl = 0; tbl < Din->n_tables; tbl++) {
if (!Ctrl->T.active) {
gmt_free_table (GMT, Dout->table[tbl]); /* Free it, then allocate separately */
Dout->table[tbl] = Tout = gmt_create_table (GMT, Din->table[tbl]->n_segments, C.n_spec, n_cols_tot, 0U, false);
}
for (seg = 0; seg < Din->table[tbl]->n_segments; seg++) {
S = Din->table[tbl]->segment[seg]; /* Current segment */
GMT_Report (API, GMT_MSG_INFORMATION, "Read %" PRIu64 " data points.\n", S->n_rows);
y = (C.y_given) ? S->data[GMT_Y] : NULL;
if (spectrum1d_compute_spectra (GMT, &C, S->data[GMT_X], y, S->n_rows, Ctrl->L.mode)) {
Return (GMT_RUNTIME_ERROR);
}
if (!Ctrl->T.active) {
unsigned smode = (Tout->segment[seg]->text) ? GMT_WITH_STRINGS : GMT_NO_STRINGS;
Sout = Tout->segment[seg] = GMT_Alloc_Segment (GMT->parent, smode, C.n_spec, Tout->n_columns, NULL, Tout->segment[seg]);
spectrum1d_assign_output (GMT, &C, Ctrl->C.col, n_outputs, Ctrl->W.active, Sout->data);
Sout->n_rows = C.n_spec;
}
if (Ctrl->N.mode == SPECTRUM1D_SEPARATE_YES) { /* Write separate tables */
if (spectrum1d_write_output_separate (GMT, &C, Ctrl->C.col, n_outputs, Ctrl->W.active, Ctrl->N.name))
Return (GMT_RUNTIME_ERROR);
}
}
}
spectrum1d_free_space (GMT, &C);
if (!Ctrl->T.active && GMT_Write_Data (API, GMT_IS_DATASET, GMT_IS_FILE, GMT_IS_NONE, GMT_WRITE_NORMAL, NULL, Ctrl->Out.file, Dout) != GMT_NOERROR) {
Return (API->error);
}
Return (GMT_NOERROR);
}