Skip to content

Vs30 Info

Philip Maechling edited this page Apr 20, 2022 · 20 revisions

Vs30

VS30 is defined as the average seismic shear-wave velocity from the surface to a depth of 30 meters. Vs30 has found wide-spread use as a parameter to characterize site response for simplified earthquake resistant design as implemented in building codes worldwide.

UCVM Vs30 Values

UCVM provides two sources of Vs30 information, and these two sources of Vs30 may not agree. The UCVM Map-based Vs30 information is stored in UCVM etree. This etree is created when the UCVM software release is prepared. The Model-based Vs30 values are calculated using the material properties from the seismic velocity models itself.

Map-Based Vs30

UCVM software framework contains a number of datasets that are used in certain UCVM function. These datasets include (1) a digital elevation model, (2) a bathymetry model, and (3) Vs30 data. These datasets are defines for the full UCVM coverage region. The elevation and bathymetry data are used to support query by elevation and query by depth functions in UCVM. The Vs30 data is used in the Ely/Jordan GTL calculation.

The DEM and bathmetry sources are listed in the primary UCVM reference paper. The Vs30 data is based on two sources. Within California, the UCVM map-based Vs30 data is based on a Wills CGS Vs30 map. The version of the Vs30 data used is Wills 2017 map. Earlier version of UCVM used earlier version of the Wills map.

Out side of California, notably nothern Mexico, the UCVM map-based Vs30 data is based on the DEM model (noted above) and a Wald topography relationship, the converts topograpy information into estimated Vs30 values. The method is described in the Wald et al paper, but the basic idea is regions with steep slopes have high Vs30s, and flat regions have lower Vs30 values.

As noted above, the UCVM Map-based Vs30 values are used to add the Ely/Jordan GTL to velocity models. But please note, the Vs30 values are not derived from the seismic velocity model themselves. The Map-based Vs30 data is defined externally.

  1. Map-based Vs30 values Map-based Vs30 values are returned as part of material properties returned by a standard ucvm_query. The Vs30 values returned are

The basic query format is: ucvm_query [-m models] [-f config] < file.in

Where file.in contains "long lat depth" lines, with long and lat in decimal degrees and depth in meters, like these:

  -118.0 34.0 0
  -118.0 34.0 100
  -118.0 34.0 1000

The ucvm_query output format is:

  lon lat Z surf vs30 crustal cr_vp cr_vs cr_rho gtl gtl_vp gtl_vs gtl_rho cmb_algo cmb_vp cmb_vs

The UCVM map-based Vs30 value is returned in column 4.

Model-based Vs30

In some cases, users want to calculate Vs30 from seismic velocity models registered into UCVM. UCVM includes two C language programs that will sample the top 30 meters of a seismic velocity model, and calculate the Vs30 from the model. The two avialable routines include vs30_query.c and vs30_query_mpi.c. The MPI version of this program implements the same algorithm, but it runs a parallel job for cases in which vs30 is calculated for many points.

vs30_query.c

  Usage: vs30_query [-h] [-m models] [-f config] [-i inter]
    -h This help message
    -f Configuration file. Default is ./ucvm.conf
    -i Interval between query points along z-axis (m, default is 1)
    -m Comma delimited list of crustal/GTL models to query in order

Comparing Map-Based Vs30 and Model-Based Vs30 Values

Using a selected number of southern Californ points to show results from these two queries.

cvms4 model

[ucvm@0884cbf3a2e2 target]$ ucvm_query -f /app/ucvm/conf/ucvm.conf -m cvms < querypts.txt Using Geo Depth coordinates as default mode. -118.4810 34.3120 100.000 386.051 397.973 cvms 2185.167 989.497 2210.038 none 0.000 0.000 0.000 crust 2185.167 989.497 2210.038 -118.5000 34.5000 100.000 573.044 527.718 cvms 2804.750 905.521 2307.870 none 0.000 0.000 0.000 crust 2804.750 905.521 2307.870 -117.5000 33.5500 100.000 381.905 518.900 cvms 5132.648 2826.527 2675.445 none 0.000 0.000 0.000 crust 5132.648 2826.527 2675.445 -117.5000 35.5000 100.000 721.905 394.017 cvms 5396.041 3331.242 2717.035 none 0.000 0.000 0.000 crust 5396.041 3331.242 2717.035 -116.5000 34.4000 100.000 791.036 293.500 cvms 5411.267 3029.934 2719.439 none 0.000 0.000 0.000 crust 5411.267 3029.934 2719.439

[ucvm@0884cbf3a2e2 target]$ vs30_query -f /app/ucvm/conf/ucvm.conf -m cvms < vs30pts.txt -118.4810 34.3120 207.030 -118.5000 34.5000 233.076 -117.5000 33.5500 1437.217 -117.5000 35.5000 1693.852 -116.5000 34.4000 1540.644

cvm-h model

Clone this wiki locally