Velocity Models¶
Velocity Model Files¶
There are currently two variations of velocity model files that can be read. Both are piecewise linear between given depth points. Support for cubic spline velocity models would be useful and is planned for a future release.
The first format is that used by the most recent ttimes codes Kennett et al. [KEB95], .tvel. This format has two comment lines, followed by lines composed of depth, Vp, Vs and density, all separated by whitespace. TauP ignores the first two lines of this format and reads the remaining lines.
The second format is based on the format used by Xgbm, Davis and Henson [DH93a], Davis and Henson [DH93b]. It is referred to here as the .nd format for named discontinuities. Its biggest advantage is that it can specify the location of the major boundaries and this makes it the preferred format. The file consists of two types of lines, those that specify velocity at a depth, and those that specify the name of a discontinuity.
The first type of line has between 3 and 6 numbers on a line separated by whitespace. They are, in order:
Depth |
Kilometers from surface to the sample point |
Vp |
P velocity in kilometers per second |
Vs |
S velocity in kilometers per second |
Rho |
Density in grams per cubic centimeter |
Qp |
Attenuation for compressional waves |
Qs |
Attenuation for shear waves |
Only depth, Vp and Vs are required. The remaining parameters, while not needed for travel time calculations, are included to allow the model to be used for other purposes like amplitude calculates. The model is assumed to be linear between given depths and repeated depths are used to represent discontinuities.
The second type of line within the .nd format specifies one of the major internal boundaries. The original format was limited to mantle, outer-core and inner-core, but in version 3.0 this was expanded to include more crustal boundaries and synonyms. User defined labels are also allowed but must start with a non-number character and care should be taken when using in phase names to avoid confusing the phase parser. These labels are placed on a line by themselves between the two lines representing the sample points above and below the depth of the discontinuity.
These help to determine where a particular phase propagates. For instance,
in a model that has many crustal and upper mantle layers, from which
discontinuity does the phase PvmP
reflect?
Explicit labeling eliminates potential ambiguity.
Labels |
Description |
---|---|
crust |
top of crust |
mantle, moho |
moho, crust-mantle boundary |
outer-core, cmb |
mantle-core boundary |
inner-core, icocb |
inner outer core boundary |
ice |
top of ice layer |
ice-ocean |
ice above ocean boundary |
ice-crust |
ice above crust boundary |
ocean |
top of ocean layer |
seabed |
ocean above crust boundary |
For example a very simplistic model of Europa, showing the use of other named discontinuities, might look like:
/* very simple model of Europa. Don't believe any of the numbers... */
ice
0.00 3.8200 2.2000 0.9200
20.00 3.8200 2.2000 0.9200
ice-ocean
20.00 1.4500 0.0000 1.0200
100.00 1.450 0.0000 1.0200
ocean-crust
100.000 3.2000 1.8 2.80
105.000 3.2000 1.8 2.80
mantle
105.000 8.000 4.50 3.30
900.0 8.1 4.55 3.4
outer-core
900.000 4.0 0.000 7.20
1561.000 4.2 0.000 7.20
One further enhancement to these model file formats is the support for comments
embedded within the model files. As in shell scripting, everything after
a #
on a line is ignored. In addition, C style /* ... */
and // ...
comments are recognized.
A very simple named discontinuities model file might look like this:
/* below is a simple named discontinuities model. */
0.0 5.0 3.0 2.7
20 5.0 3.0 2.7
20 6.5 3.7 2.9
33 6.5 3.7 2.9
mantle # the word "mantle" designates that this is the moho
33 7.8 4.4 3.3
410 8.9 4.7 3.5
410 9.1 4.9 3.7
670 10.2 5.5 4.0
670 10.7 5.9 4.4
2891 13.7 7.2 5.6
outer-core # "outer-core" designates that this is the core mantle boundary
2891 8.0 0.0 9.9
5149.5 10.3 0.0 12.2
inner-core # "inner-core" makes this the inner-outer core boundary
5149.5 11 3.5 12.7
6371 11.3 3.7 13
In many cases it is better and easier to make use of taup velmerge to create a new model by making changes to an existing global model, especially when for example the user only cares about crust and upper mantle structure and is happy with an existing global model for the lower mantle and core. Hand editing velocity model files often results in hard to catch errors.
Using Saved Tau Models¶
There are three ways of finding a previously generated model file. If no model is given, then the iasp91 model will be used. The search is first, as a standard model as part of the distribution. Second, a list of directories and jar files to be searched can be specified with the taup.model.path property. Lastly, the path to the actual model file may be specified. TauP searches each of these places in order until it finds a model that matches the name.
Standard Model.
TauP first checks to see if the model name is associated with a standard model. Several standard models are precomputed and included within the distributed jar file. They are:
Kennett and Engdahl [KE91] (default)
Dziewonski and Anderson [DA84]
Kennett et al. [KEB95]
Montagner and Kennett [MK95]
Montagner and Kennett [MK95]
We will consider adding other models to the distribution if they are of wide interest. They are included within the distribution jar file and taup can locate them with just the model name.
Within the taup.model.path property.
Users can create custom models, and place the stored models in a convenient location. If the
taup.model.path
property includes those directories or jar files, then they can be located. The search is done in the order of taup.model.path until a model matching the model name is found. While taup.model.path is a Java property, the shell scripts provided translate the environment variable TAUPPATH into this property. The user generally need not be aware of this fact except when the tools are invoked without using the provided shell scripts. A more desirable method is to set the taup.model.path in a properties file. See section Default Parameters for more details.The taup.model.path property is constructed in the manner of standard Java CLASSPATH which is itself based loosely on the manner of the Unix PATH. The only real differences between CLASSPATH and PATH are that a jar file may be placed directly in the path and the path separator character is machine dependent, Unix is
:
but other systems may vary.The taup.model.path allows you to have directories containing saved model files as well as jar files of models. For instance, in a Unix system using the c shell, you could set your TAUPPATH to be, (all one line):
setenv TAUPPATH /home/xxx/MyModels.jar:/home/xxx/ModelDir: /usr/local/lib/localModels.jar
or you could place a line in the .taup file in your home directory that accomplished the same thing, again all one line:
taup.model.path=/home/xxx/MyModels.jar:/home/xxx/ModelDir: /usr/local/lib/localModels.jar
If you place models in a jar, TauP assumes that they are placed in a directory called
Models
before they are jarred. For example, you might usetaup create
to create several taup models in the Models directory and then create a jar file.jar -cf MyModels.jar Models
Including a
.
for the current working directory with the taup.model.path is not necessary since we always check there, see below, but it may be used to change the search order.The last place TauP looks is for a tau model file specified on the command line. So, if you generate newModel.taup and want to get some times, you can just say:
taup time -mod newModel.taup
or even justtaup time -mod newModel
as TauP can add the taup suffix if necessary. A relative or absolute pathname may precede the model, e.g.taup time -mod ../OtherDir/newModel.taup
.New in version 2.0 is the ability of the tools to load a velocity model directly and handle the tau model create functionality internally, so in addition to
.taup
files, the.nd
and.tvel
model files can be loaded directly if there is not a.taup
file found. Note that there is extra work involved in processing the velocity file, and so frequently used models should still be converted using ‘taup create’ to avoid reprocessing them each time the tool starts.