diff --git a/examples/example-ba18.png b/examples/example-ba18.png deleted file mode 100644 index 9b55a7f..0000000 Binary files a/examples/example-ba18.png and /dev/null differ diff --git a/examples/example-ba19.png b/examples/example-ba19.png new file mode 100644 index 0000000..f0e8d39 Binary files /dev/null and b/examples/example-ba19.png differ diff --git a/examples/example-ba18.py b/examples/example-ba19.py similarity index 74% rename from examples/example-ba18.py rename to examples/example-ba19.py index ecb2d35..074c7e1 100644 --- a/examples/example-ba18.py +++ b/examples/example-ba19.py @@ -8,9 +8,9 @@ scenario = pygmm.Scenario(mag=6.5, dist_rup=30, v_s30=500, mechanism="SS", depth_tor=0) models = [ - pygmm.BaylessAbrahamson18(scenario), - pygmm.BaylessAbrahamson18( - scenario.copy_with(v_s30=pygmm.BaylessAbrahamson18.V_REF) + pygmm.BaylessAbrahamson2019(scenario), + pygmm.BaylessAbrahamson2019( + scenario.copy_with(v_s30=pygmm.BaylessAbrahamson2019.V_REF) ), ] @@ -18,7 +18,6 @@ for m in models: ax.plot(m.freqs, m.eas, label=f"{m.scenario.v_s30:.0f}") - print(m.freqs, m.eas) ax.legend(title="$V_{s30}$ m/s")