|
@@ -0,0 +1,62 @@
|
|
1
|
+import matplotlib.pyplot as plt
|
|
2
|
+import sys,os
|
|
3
|
+from pylab import meshgrid
|
|
4
|
+from matplotlib.colors import LightSource
|
|
5
|
+from matplotlib.ticker import ScalarFormatter
|
|
6
|
+from matplotlib.ticker import MaxNLocator
|
|
7
|
+from matplotlib.ticker import AutoMinorLocator
|
|
8
|
+from matplotlib.ticker import LogLocator
|
|
9
|
+from matplotlib.ticker import FormatStrFormatter
|
|
10
|
+import numpy as np
|
|
11
|
+import yaml
|
|
12
|
+from lemma_yaml import *
|
|
13
|
+
|
|
14
|
+import cmocean
|
|
15
|
+
|
|
16
|
+def catLayers(K0):
|
|
17
|
+ K = np.zeros( (len(K0.keys()), len(K0["layer-0"].data)) , dtype=complex )
|
|
18
|
+ for lay in range(len(K0.keys())):
|
|
19
|
+
|
|
20
|
+ K[lay] = K0["layer-"+str(lay)].data
|
|
21
|
+ return K
|
|
22
|
+if __name__ == "__main__":
|
|
23
|
+
|
|
24
|
+ with open(sys.argv[1]) as f:
|
|
25
|
+
|
|
26
|
+ K0 = yaml.load(f, Loader=yaml.Loader)
|
|
27
|
+
|
|
28
|
+ K = 1e9*catLayers(K0.K0)
|
|
29
|
+ q = np.array(K0.PulseI.data)* (float)(K0.Taup)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+ plt.pcolor(q, K0.Interfaces.data, np.abs(K), cmap=cmocean.cm.tempo)
|
|
35
|
+ plt.colorbar()
|
|
36
|
+
|
|
37
|
+ ax1 = plt.gca()
|
|
38
|
+ ax1.set_ylim( ax1.get_ylim()[1], ax1.get_ylim()[0] )
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+ ax1.set_xticks([ax1.get_xlim()[0], 1, ax1.get_xlim()[1],])
|
|
43
|
+ ax1.xaxis.set_major_formatter(FormatStrFormatter('%.1f'))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+ plt.gca().set_xlabel("q (A $\cdot$ s)")
|
|
50
|
+ plt.gca().set_ylabel("depth (m)")
|
|
51
|
+ plt.savefig("kernel.pdf")
|
|
52
|
+
|
|
53
|
+ sound = np.sum(K, axis=0)
|
|
54
|
+ plt.figure()
|
|
55
|
+ plt.plot(q, np.abs(sound))
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+ plt.savefig("sound.pdf")
|
|
60
|
+
|
|
61
|
+ plt.show()
|
|
62
|
+
|