Skip to content

Commit

Permalink
default back to dunkin
Browse files Browse the repository at this point in the history
  • Loading branch information
keurfonluu committed Jun 1, 2021
1 parent 5ae941e commit 233be0f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions disba/_dispersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(
velocity_p,
velocity_s,
density,
algorithm="fast-delta",
algorithm="dunkin",
dc=0.005,
):
"""
Expand All @@ -39,7 +39,7 @@ def __init__(
Layer S-wave velocity (in km/s).
density : array_like
Layer density (in g/cm3).
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'fast-delta'
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'dunkin'
Algorithm to use for computation of Rayleigh-wave dispersion:
- 'dunkin': Dunkin's matrix (adapted from surf96),
- 'fast-delta': fast delta matrix (after Buchen and Ben-Hador, 1996).
Expand Down Expand Up @@ -98,7 +98,7 @@ def __init__(
velocity_p,
velocity_s,
density,
algorithm="fast-delta",
algorithm="dunkin",
dc=0.005,
dt=0.025,
):
Expand All @@ -115,7 +115,7 @@ def __init__(
Layer S-wave velocity (in km/s).
density : array_like
Layer density (in g/cm3).
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'fast-delta'
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'dunkin'
Algorithm to use for computation of Rayleigh-wave dispersion:
- 'dunkin': Dunkin's matrix (adapted from surf96),
- 'fast-delta': fast delta matrix (after Buchen and Ben-Hador, 1996).
Expand Down
4 changes: 2 additions & 2 deletions disba/_eigen.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(
velocity_p,
velocity_s,
density,
algorithm="fast-delta",
algorithm="dunkin",
dc=0.005,
):
"""
Expand All @@ -43,7 +43,7 @@ def __init__(
Layer S-wave velocity (in km/s).
density : array_like
Layer density (in g/cm3).
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'fast-delta'
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'dunkin'
Algorithm to use for computation of Rayleigh-wave dispersion:
- 'dunkin': Dunkin's matrix (adapted from surf96),
- 'fast-delta': fast delta matrix (after Buchen and Ben-Hador, 1996).
Expand Down
4 changes: 2 additions & 2 deletions disba/_ellipticity.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(
velocity_p,
velocity_s,
density,
algorithm="fast-delta",
algorithm="dunkin",
dc=0.005,
):
"""
Expand All @@ -41,7 +41,7 @@ def __init__(
Layer S-wave velocity (in km/s).
density : array_like
Layer density (in g/cm3).
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'fast-delta'
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'dunkin'
Algorithm to use for computation of Rayleigh-wave dispersion:
- 'dunkin': Dunkin's matrix (adapted from surf96),
- 'fast-delta': fast delta matrix (after Buchen and Ben-Hador, 1996).
Expand Down
8 changes: 4 additions & 4 deletions disba/_sensitivity.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(
velocity_p,
velocity_s,
density,
algorithm="fast-delta",
algorithm="dunkin",
dc=0.005,
dp=0.025,
):
Expand All @@ -44,7 +44,7 @@ def __init__(
Layer S-wave velocity (in km/s).
density : array_like
Layer density (in g/cm3).
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'fast-delta'
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'dunkin'
Algorithm to use for computation of Rayleigh-wave dispersion:
- 'dunkin': Dunkin's matrix (adapted from surf96),
- 'fast-delta': fast delta matrix (after Buchen and Ben-Hador, 1996).
Expand Down Expand Up @@ -110,7 +110,7 @@ def __init__(
velocity_p,
velocity_s,
density,
algorithm="fast-delta",
algorithm="dunkin",
dc=0.005,
dt=0.025,
dp=0.025,
Expand All @@ -128,7 +128,7 @@ def __init__(
Layer S-wave velocity (in km/s).
density : array_like
Layer density (in g/cm3).
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'fast-delta'
algorithm : str {'dunkin', 'fast-delta'}, optional, default 'dunkin'
Algorithm to use for computation of Rayleigh-wave dispersion:
- 'dunkin': Dunkin's matrix (adapted from surf96),
- 'fast-delta': fast delta matrix (after Buchen and Ben-Hador, 1996).
Expand Down

0 comments on commit 233be0f

Please sign in to comment.