Skip to content

Abnormal Rayleigh wave ellipticity points with some velocity models #45

Description

@chengsong2333

Dear Prof. Luu, I am a PhD student at Seoul National University, I really appreciate your great code. I enconter some abnormal ellipticity points compared with Geopsy(gpell) results:

Image

You can load and plot the model by

RWE_disba_geopsy_model.txt
ell_data_freq.txt

import numpy as np
from disba import Ellipticity, EllipticitySensitivity
np.loadtxt('RWE_disba_geopsy_model.txt')
f_hob, _, _ = np.loadtxt('ell_data_freq.txt').T
t = 1/f_hob[::-1]
ell = Ellipticity(*velocity_model_i.T, algorithm='dunkin',dc=0.0001)
rel = ell(t, mode=0)
plt.semilogx(1/t, np.abs(rel[1]), label='disba')
plt.title('RWE')
plt.xlabel('Frequency (Hz)')
plt.ylabel('Amplitude')
plt.legend()

I believe in your code, it is just some abnormal points under some extreme stiuations, I would appreciate if you could fix the code to smooth these abnormal points

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions