Skip to content

Commit

Permalink
Merge 6ae6de1 into f788c51
Browse files Browse the repository at this point in the history
  • Loading branch information
anowacki committed Feb 14, 2020
2 parents f788c51 + 6ae6de1 commit 72413a3
Show file tree
Hide file tree
Showing 6 changed files with 1,026 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ does support reading and writing of
- `AK135`
- `IASP91`
- `PREM`
- `STW105`
- Moon
- `MOON_WEBER_2011`

Expand Down
11 changes: 8 additions & 3 deletions docs/src/inbuilt_models.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Inbuilt models

Most users of SeisModels will probably want to simply calculate
properties for one of the inbuilt models of the Earth and moon.
They are:
properties for one of the inbuilt models. These are listed below:

## Earth models
```@docs
AK135
IASP91
PREM
STW105
```

## Moon models
```@docs
MOON_WEBER_2011
```
```
7 changes: 7 additions & 0 deletions docs/src/references.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# References

- Durek, J.J., Ekström, G., 1996.
A radial model of anelasticity consistent with long-period surface-wave attenuation.
_Bull Seism Soc Am_ 86, 144–158.
- Dziewoński, A., Anderson, D., 1981. Preliminary reference Earth model.
_Phys. Earth Planet. Inter._ 25, 297–356. doi:[10.1016/0031-9201(81)90046-7](https://doi.org/10.1016/0031-9201(81)90046-7)
- Kennett B.L.N. Engdahl E. 1991. Traveltimes for global earthquake
Expand All @@ -8,6 +11,10 @@
- Kennett, B.L.N., Engdahl, E., Buland, R., 1995. Constraints on seismic
velocities in the Earth from travel-times.
_Geophys J Int_ 122, 108–124. doi:[10.1111/j.1365-246X.1995.tb03540.x](https://doi.org/10.1111/j.1365-246X.1995.tb03540.x)
- Kustowski, B., Ekström, G., Dziewoński, A., 2008.
Anisotropic shear-wave velocity structure of the Earth’s mantle: A global model.
_J Geophys Res-Sol Ea_ 113, B06306.
doi:[10.1029/2007JB005169](https://doi.org/10.1029/2007JB005169)
- Weber, R.C.,, Lin, P.-Y.,, Garnero, E.J., Williams, Q., Lognonné, P., 2011.
Seismic Detection of the Lunar Core. _Science_, 331, 309–312.doi:[10.1126/science.1199375](https://doi.org/10.1126/science.1199375)

5 changes: 3 additions & 2 deletions src/Earth/Earth.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ List of Earth model instances as `Symbol`s.
If adding new inbuilt Earth models, append the name of the new model to this list
"""
const ALL_MODELS = (:AK135, :IASP91, :PREM)
const ALL_MODELS = (:AK135, :IASP91, :PREM, :STW105)

include("ak135.jl")
include("prem.jl")
include("iasp91.jl")
include("prem.jl")
include("stw105.jl")

end # module
Loading

0 comments on commit 72413a3

Please sign in to comment.