図1. このプログラムで検知のターゲットとするイベントの波形例。 (a)は傾斜計記録(生波形、気象庁田ノ原観測点、東西成分)であり、 (b)はその拡大図である。 (c)-(e)は広帯域地震計記録(長野県御嶽ロープウェイ観測点)であり、 (c)は東西成分(<0.02 Hz)、(d)は東西成分(<0.1 Hz)、 (e)は上下成分(<0.1 Hz)。 出典: Maeda et al. (2017)の図2。 Fig. 1. The waveform of a target event of this program. (a) A raw tilt record from the EW component of Tanohara station (Japan Meteorological Agency) and (b) a vertical extension of it. (c-e) Broadband seismic records from Ontake Ropeway station (Nagano prefecture); (c) EW component (< 0.02 Hz), (d) EW component (< 0.1 Hz), (e) UD component (< 0.1 Hz). From Fig. 2 of Maeda et al. (2017). |
引数 Argument |
与える値 Quantity to be given |
第1引数 1st argument |
使用する連続波形記録(SAC形式)のファイル名。 The file name of a continuous waveform record to use (in SAC format). |
第2引数 1st argument |
出力ファイル名。
テキストファイルであり、拡張子は何でも良い。 The name of the output file. This is a text file with an arbitrary extension. |
パラメータ名 Parameter name |
意味 Meaning |
可能なパラメータ値 Allowed parameter values |
デフォルト値 Default value |
tmin | 検知に使用する時刻範囲の下限(s)。 The lower limit (s) of the time range for detection. |
任意の実数。
但し連続波形記録(入力SACファイル)の定義域内でなければならない。 An arbitrary real number within the definition range of the continuous waveform record (the input SAC file). |
SACファイルの先頭時刻。 The beginning time of the SAC file. |
tmax | 検知に使用する時刻範囲の上限(s)。 The upper limit (s) of the time range for detection. |
tminよりも大きな任意の実数。
但し連続波形記録(入力SACファイル)の定義域内でなければならない。 An arbitrary real number greater than tmin within the definition range of the continuous waveform record (the input SAC file). |
SACファイルの末尾時刻。 The end time of the SAC file. |
verbose | 進行状況の表示レベル。 Level of displaying the progress. |
|
2 |
列 Column |
値 Value |
1 | \(k^{st}\) |
2 | \(k^{en}\) |
3 | \(t^{st}\) |
4 | \(t^{en}\) |
5 | \(U(t^{st},t^{en})\) |
6 | \(M(t^{st},t^{en})\) |
図2. (\ref{eq.synthetic})式の波形を用いたテスト結果(\(\epsilon=0\))。 青線で\(s(t)\)の波形を、色で\(M(t^{st},t^{en})\)の計算結果を示す。 黒の点線は\(M(t^{st},t^{en})\)の最大値を表す。 Fig. 2. The result of the test using the waveform given by Eq. (\ref{eq.synthetic}) with \(\epsilon=0\). The blue lines show the waveforms of \(s(t)\), the color scales does the value of \(M(t^{st},t^{en})\) obtained, and the black lines does the maximum value of \(M(t^{st},t^{en})\). |
図3. (\ref{eq.synthetic})式の波形を用いたテスト結果(\(\epsilon=0.1\))。 Fig. 3. The result of the test using the waveform given by Eq. (\ref{eq.synthetic}) with \(\epsilon=0.1\). |
図4. 御嶽山2014年噴火前の傾斜変動波形(図1a)を用いたテスト結果。 Fig. 4. The result of the test using the tilt record before the 2014 eruption of Mt. Ontake, Japan (Fig. 1a). |
図5. 御嶽山2014年噴火前の広帯域地震波形(ローパス0.02 Hz; 図1c)を用いたテスト結果。 Fig. 5. The result of the test using the broadband seismic record (<0.02 Hz) before the 2014 eruption of Mt. Ontake, Japan (Fig. 1c). |
図6. 御嶽山2014年噴火前の広帯域地震波形(ローパス0.01 Hz; 図1d)を用いたテスト結果。 Fig. 6. The result of the test using the broadband seismic record (<0.1 Hz) before the 2014 eruption of Mt. Ontake, Japan (Fig. 1d). |
#! /bin/bash -u #0.033 Hzでローパスフィルタリング #(出力ファイル: data_radial_lp0.033Hz.sac) #Low-pass filtering at 0.033 Hz #(output file: data_radial_lp0.033Hz.sac) sac <<EOF r data_radial.sac rmean lp bu co 0.033 n 6 p 2 w data_radial_lp0.033Hz.sac q EOF #1 Hzでリサンプリング #(出力ファイル: data_radial_lp0.033Hz_resampled.sac) #Resampling at 1 Hz #(output file: data_radial_lp0.033Hz_resampled.sac) sacfile_decimate \ data_radial_lp0.033Hz.sac \ data_radial_lp0.033Hz_resampled.sac #噴火の55分前(波形の先頭から120 s)から30分前(1620 s)までのトレンド除去 #(出力ファイル: data_radial_lp0.033Hz_resampled_detrended.sac) #Subtract the trend for 55-30 min before the eruption #(120-1620 s after the beginning of the waveform) #(output file: data_radial_lp0.033Hz_resampled_detrended.sac) sacfile_remove_trend \ data_radial_lp0.033Hz_resampled.sac \ data_radial_lp0.033Hz_resampled_detrended.sac \ --windows=120.0,1620.0 #噴火の55分前(波形の先頭から120 s)から1分後(3480 s)までの #全てのタイムウインドウでMを計算 #(出力ファイル: result.dat) #Compute M for all time windows #from 55 min before to 1 min after the eruption #(120-3480 s after the beginning of the waveform) #(output file: result.dat) detect_inflation \ data_radial_lp0.033Hz_resampled_detrended.sac result.dat \ --tmin=120.0 --tmax=3480.0 #Mの値を元に、噴火時刻(3420 s)の30分前(1620 s)以降に発生した傾斜変動を検知 #(出力ファイル: summary.txt) #From the values of M, identify a tilt change #that began after the 30 min before (1620 s) #the time of the eruption (3420 s) #(output file: summary.txt) detect_inflation_preeruptive2 \ result.dat summary.txt \ --t_eruption=3420.0 --tmin_candidate=1620.0 |