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:

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
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:
You can load and plot the model by
RWE_disba_geopsy_model.txt
ell_data_freq.txt
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