Ray.time1D(RSEIS)
Ray.time1D()所属R语言包:RSEIS
Seismic 1D Travel Time and raypath
地震一维行程时间和射线路径
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Travel time and raypath from source to reciever in 1D local model.
旅行时间和射线路径从源到reciever在一维模型。
用法----------Usage----------
参数----------Arguments----------
参数:indelta
distance in KM
在KM的距离
参数:inhpz
depth of hypocenter, km
,公里,震源深度
参数:instaz
elevation of station
海拔站
参数:inlay
number of layers
数量的层
参数:ztop
vector, tops of layers
矢量,层顶
参数:vel
vector, velocities in layers
矢量,速度层
Details
详细信息----------Details----------
Uses local 1D velocity model, not appropriate for spherical earth.
使用本地的一维速度模型,不适合球形的地球。
值----------Value----------
list:
列表:
参数:dtdr
derivative of t w.r.t. horizontal distance
衍生的T w.r.t.水平距离
参数:dtdz
derivative of t w.r.t. z, depth
衍生的T w.r.t. Z,深度
参数:angle
incidence angle, degrees
入射角度
参数:tt
travel time, s
旅游时间,s
参数:nnod
number of nodes
的节点数量
参数:znod
node depths, km
节点的深度,公里
参数:rnod
node offset distances, km
节点的偏移距离,公里
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees.edu>
参见----------See Also----------
travel.time1D, Get1Dvel
travel.time1D,Get1Dvel
实例----------Examples----------
data(VELMOD1D)
v= VELMOD1D
tees = travel.time1D(23, 7, 0, length(v$zp) , v$zp , v$vp)
rays = Ray.time1D(23, 7, 0, length(v$zp) , v$zp , v$vp)
plot(rays$rnod[1:rays$nnod] , -rays$znod[1:rays$nnod],type="n", xlab="distance, km" , ylab="Depth, km")
abline(h=-v$zp, lty=2, col=grey(0.80) )
points(rays$rnod[1:rays$nnod] , -rays$znod[1:rays$nnod], pch=8, col='green')
lines(rays$rnod[1:rays$nnod] , -rays$znod[1:rays$nnod])
points(rays$rnod[rays$nnod] , -rays$znod[rays$nnod], pch=6, col='red', cex=2)
##### to coordinate this in space, need to rotate about[####,以协调这个空间中,需要绕]
##### the line between source and receiver locations[####之间的线源和接收器的位置]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|