亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? traceray.m

?? 地震中常用的一些偏移程序
?? M
字號:
function [t,p]=traceray(vp,zp,vs,zs,raycode,x,xcap,pfan,itermax,optflag,pflag,dflag)
%
% [t,p]=traceray(vp,zp,vs,zs,raycode,x,xcap,pfan,itermax,optflag,pflag,dflag)
%
% TRACERAY uses the modified bisection algorithm 
% to trace an arbitrary ray trough a stratified medium. The ray can have any number of
% reflections and mode conversions and any start and end point.
% vp,zp   = velocity and depth vectors giving the p wave model. Depths are 
% 			considered to be the tops of homogeneous layers.
% vs,zs   = velocity and depth vectors giving the s wave model. 
%  for both models, depths are considered to be the tops of homogeneous layers. Thus,
%  the first velocity  applies from the first depth to the second. A constant velocity
%  would be specified like vp=1500;zp=0; etc.
% raycode = nx2 matrix specifying the ray. The first column is a list of
%           depths and the second is a list of the integers 1 or 2 indicating P
%           or S. The ray is traced from depth raycode(1,1) to raycode(2,1) with
%  	    the raytype indicated by raycode(1,2) and so on. The depths in raycode need
%	    not correspond to layer boundaries in the P and S velocity models. Note that the last
%           entry in column two is meaningless.
% x       = vector of desired source-receiver offsets (horizontal)
%           MUST be non-negative numbers
% xcap 	  = (scalar) capture radius
% pfan    = vector of ray parameters to use for the initial fan of rays
%	    By default, the routine generates the fan using straight rays. 
%	    Setting pfan to -1 or omitting it activates default behavior.
%           Setting pfan to -2 causes the routine to use the pfan used in the
%           last call to this program. (pfan of -1 and -2 are identical on the
%	    first call.) 
% itermax = maximum number of iterations allowed for ray capture
% =========================== Default = 4 ================================
% optflag = if nonzero then refine captured rays by linear interpolation
% =========================== Default = 1 ================================
% pflag   = if nonzero, then print information about all failed rays
% =========================== Default = 0 ================================
% dflag   = 0 no action
%			 = 1 then a new figure window will be opened and the raypaths plotted
% 			 = 2 raypaths will be plotted in the current window
%                        = -n e.g. a negative integer, the drawing will occur in the current
%                          axis of the figure number n.
% =========================== Default = 0 ================================
% NOTE: All z variables must be specified relative to a common datum
%
% t 	  = vector of traveltimes for each x
% p 	  = vector of ray parameters for each x
%
% G.F. Margrave, CREWES Project, June 1995
%
% NOTE: It is illegal for you to use this software for a purpose other
% than non-profit education or research UNLESS you are employed by a CREWES
% Project sponsor. By using this software, you are agreeing to the terms
% detailed in this software's Matlab source file.
 
% BEGIN TERMS OF USE LICENSE
%
% This SOFTWARE is maintained by the CREWES Project at the Department
% of Geology and Geophysics of the University of Calgary, Calgary,
% Alberta, Canada.  The copyright and ownership is jointly held by 
% its author (identified above) and the CREWES Project.  The CREWES 
% project may be contacted via email at:  crewesinfo@crewes.org
% 
% The term 'SOFTWARE' refers to the Matlab source code, translations to
% any other computer language, or object code
%
% Terms of use of this SOFTWARE
%
% 1) Use of this SOFTWARE by any for-profit commercial organization is
%    expressly forbidden unless said organization is a CREWES Project
%    Sponsor.
%
% 2) A CREWES Project sponsor may use this SOFTWARE under the terms of the 
%    CREWES Project Sponsorship agreement.
%
% 3) A student or employee of a non-profit educational institution may 
%    use this SOFTWARE subject to the following terms and conditions:
%    - this SOFTWARE is for teaching or research purposes only.
%    - this SOFTWARE may be distributed to other students or researchers 
%      provided that these license terms are included.
%    - reselling the SOFTWARE, or including it or any portion of it, in any
%      software that will be resold is expressly forbidden.
%    - transfering the SOFTWARE in any form to a commercial firm or any 
%      other for-profit organization is expressly forbidden.
%
% END TERMS OF USE LICENSE

if(nargin<12)
	dflag=0;
end
if(nargin<11)
	pflag=0;
end
if(nargin<10)
	optflag=1;
end

if(nargin<9)
	itermax=4;
end
if( nargin<8)
	pfan=-1;
end

if(~prod(size(vp)==size(zp)))
	error('vp and zp must be the same size');
end
if(~prod(size(vs)==size(zs)))
	error('vs and zs must be the same size');
end

if(length(xcap)~=1 )
	error(' xcap must be scalar ')
end

%make sure zsrc < Zd and zr<zd
%if(zsrc > zd )
%	error(' zsrc must be less than zd');
%end
%if(zr > zd )
%	error(' zr must be less than zd');
%end

ind=find(x<0);
if(~isempty(ind))
	error('offsets must be nonnegative');
end

%unpack the raycode
zray=raycode(:,1);
raytype=raycode(:,2);

zsrc=zray(1);
zr=zray(end);
zd=max(zray);

%adjust zsrc,zr,and zd and z2 so that they won't be exactly on layer boundaries
%	zsrc=zsrc+100000*eps;
%	zr=zr+100000*eps;
% 	zd=zd-100000*eps; 

%create one-way model
vmod=[];
zmod=[];
zmax=0;
vp=vp(:);vs=vs(:);
zp=zp(:);zs=zs(:);

vp=[vp;vp(end)];
zp=[zp;1000000];
zpthk=diff(zp);%thicknesses
vs=[vs;vs(end)];
zs=[zs;1000000];
zsthk=diff(zs);%thicknesses



for k=1:length(zray)-1
   zr1=zray(k);
   zr2=zray(k+1);
   dir=sign(zr2-zr1);
   incd=round((1+dir)/2);
   incu=round((1-dir)/2);
   if(raytype(k)==1)
	ind1=surround(zp,zray(k));
	ind2=surround(zp,zray(k+1));
	vmod=[vmod;vp(ind1);vp(ind1+dir:dir:ind2)];
	zmod=[zmod;zr1;zp(ind1+incd:dir:ind2+incu)];
   else
	ind1=surround(zs,zray(k));
	ind2=surround(zs,zray(k+1));
	vmod=[vmod;vs(ind1);vs(ind1+dir:dir:ind2)];
	zmod=[zmod;zr1;zs(ind1+incd:dir:ind2+incu)];
   end
end
zmod=[zmod;zr2];
zmod=[0;cumsum(abs(diff(zmod)))];
%zmod=[zmod;zmax];


% if( zsrc < zp(1) | zsrc < zs(1))
% 	error(' source depth outside model range');
%elseif(zr < zp(1) | zr < zs(1) )
%	error('receiver depth outside model range');
% end
 

 z1=zmod(1);%start depth
 z2=zmod(end);%end depth

 %determine pmax
 vmax=max([vmod]);
 nearlyone=.999;
 pmax=nearlyone/vmax;
 
 %the meaning of pmax is that it is the maximum ray parameter which will not
 %be critically refracted anywhere in vp or vs.

if(pfan==-2)
	global PFAN
	if(isempty(PFAN))
	  pfan=-1;
	else
	  pfan=PFAN;
	  PFAN=-2;
	end
else
	PFAN=0;
end

if(pfan==-1)
	%shoot a fan of rays Iterate once if the fan does not span the xrange
	%guess angle range
	xmaxf=max(x);
	xminf=min(x);
	if(xminf~=xmaxf)
		nrays=3*length(x);
		xfan=linspace(xminf,xmaxf,nrays);
		th=atan(xfan/(z2-z1));
		%determine the fan ray parameters
	
		pfan=sin(th)/vmod(1);
		
		%put in a max and min p
		if(min(pfan)>0)
			pfan=[0 pfan];
			xfan=[0 xfan];
			nrays=nrays+1;
		end	
		
		if(max(pfan)>pmax)
			ind=find(pfan<pmax);
			pfan=pfan(ind);
			xfan=xfan(ind);
			nrays=length(ind);
		end
	
		if(max(pfan)<pmax)
			pfan=[pfan pmax];
			xfan=[xfan (z2-z1)*nearlyone/sqrt(1-nearlyone*nearlyone)];
			nrays=nrays+1;
		end
		
		xminf=2.0*min(xfan);
		xmaxf=2.0*max(xfan);
	else
		%3 rays 1 x
		th=atan(xmaxf/(z2-z1)); %straight ray to xmax
		nrays=3;
		po=sin(th)/vmod(1);
		if(po>pmax)
			po=pmax/2;
		end
		pfan=[0 po pmax];
		th=asin(pfan*vmod(1));
		xfan=(z2-z1)*tan(th);
		xminf=2.0*min(xfan);
		xmaxf=2.0*max(xfan);
	end
else
	%make sure its a row vector
	ind=find(isnan(pfan));
	if(~isempty(ind))
		pfan(ind)=[];
	end
	pfan=pfan(:)';
	pfan=sort(pfan);
	ind=find(pfan==0);
	if(isempty(ind))
		pfan=[0 pfan];
	end
	ind=find(pfan>=pmax);
	if(~isempty(ind))
		pfan(ind)=[];
	end
	pfan=[pfan pmax];
	nrays=length(pfan);
end


%shoot first fan
% 
[xx,tt]=shootray(vmod,zmod,pfan);

xmax=max(xx);
xmin=min(xx);

%see if we have spanned the x range and revise if needed
imin=surround(xx,min(x));
imax=surround(xx,max(x));
newfan=0;
if(isempty(imax))
	if(max(pfan)<pmax)
		pm= .5*(max(pfan)+pmax);
		pfan=[pfan pm];
		imax=length(pfan)-1;
		newfan=1;
	end
end
if(~isempty(imax))
	pfan=pfan(imin:imax+1);
end

%shoot new fan (if p changed)
if(length(pfan)~=nrays | newfan)
	% first p
	[xx,tt]=shootray(vmod,zmod,pfan);
	% invoke symmetry to double these
	xmax=max(xx);
	xmin=min(xx);
end

%
% loop over x
%	-1 find xx which brackets x(k)
%	-2 shoot a finer fan of rays
%	-3 find the rays which bracket x(k)
%	-4 repeat 2 and 3 until a ray is captured at x(k)
%

t=inf*ones(size(x));
p=nan*ones(size(x));

for k=1:length(x)

	ind=surround(xx,x(k));
	if(isempty(ind))
		if(x(k)>=xmax) %test for off high end
			i1=length(xx);
			i2=[];
		else
			i1=[]; %off low end
			i2=1;
		end
	else
		if(length(ind)>1) %use first arrival
			it=find(tt(ind)==min(tt(ind)));
			ind=ind(it);
		end
		i1=ind;
		i2=ind+1;
	end
	
	captured=0;
	hopeless=0;
	iter=0;
	x1=xx(i1); x2=xx(i2);
	t1=tt(i1); t2=tt(i2);
	p1=pfan(i1);  p2=pfan(i2);
	if( isempty(i2) & max(pfan)==pmax)
		hopeless=1;
	end
	
	while(~captured & iter<itermax & ~hopeless)
		
		iter=iter+1;
	
		%test for capture
		xtst1=abs(x(k)-x1);
		xtst2=abs(x(k)-x2);
		if( xtst1< xcap & xtst1<=xtst2)
			captured=1;
			p(k)=p1;
			t(k)=t1;
			%final adjustment
			if(optflag)
				%linear interpolation
				t(k)= t1 + (x(k)-x1)*(t2-t1)/(x2-x1);
				p(k)= p1 + (x(k)-x1)*(p2-p1)/(x2-x1);
			end
					
			%disp([' capture on iter= ' int2str(iter)])
		elseif( xtst2 < xcap & xtst2<=xtst1)
			captured=1;
			p(k)=p2;
			t(k)=t2;
			%final adjustment
			if(optflag)
				%linear interpolation
				t(k)= t2 + (x(k)-x2)*(t1-t2)/(x1-x2);
				p(k)= p2 + (x(k)-x2)*(p1-p2)/(x1-x2);
			end
			
			%disp([' capture on iter= ' int2str(iter)])
		end
		
		%shoot a new fan
		if(~captured)
			%end cases first
			if(isempty(i1))
				p1=0;
			elseif(isempty(i2))
				p2=.5*(p2+pmax);
			end
			dp= (x(k)-x1)*(p2-p1)/(x2-x1);
			p0= p1+ dp;
			p2= min([p1+2*dp, pmax]);
			p1= p1+.5*dp;
			pnew=[p1 p0 p2];
			
			if(isempty(pnew))
				hopeless=1;
			else
				%shoot and check for nans
				[xxnew,ttnew]=shootray(vmod,zmod,pnew);
	
				xmx=max(xxnew);
				xmn=min(xxnew);
				
				%analyze the fan. see if we have bracketed our target
				ind=surround(xxnew,x(k));
				if(isempty(ind))
					if(~isempty(xmx))
						if(x(k)>=xmx)
							n2=2*(x(k)-xxnew(2))/(xxnew(3)-xxnew(2));
							p2=min([p1+n2*dp, pmax]);
							pnew(3)=p2;
						end
						[xxnew,ttnew]=shootray(vmod,zmod,pnew);
	
						xmx=max(xxnew);
						xmn=min(xxnew);
						ind=surround(xxnew,x(k));
						if(isempty(ind));
							i1=3;
							i2=[];
						else
							i1=ind;
							i2=ind+1;
						end
					else
						i1=[];
						i2=1;
					end

				else
					if(length(ind)>1) %use first arrival
						it=find(ttnew(ind)==min(ttnew(ind)));
						ind=ind(it);
					end
					i1=ind;
					i2=ind+1;
				end
				if( isempty(i2) & max(pnew)==pmax)
					hopeless=1;
				else
					x1=xxnew(i1); x2=xxnew(i2);
					t1=ttnew(i1); t2=ttnew(i2);
					p1=pnew(i1);  p2=pnew(i2);
				end
			end
		end
		
	end
	%end the while loop
	if(~captured & pflag)
		disp([' capture failed for zsrc,zr,zd= ' num2str(zsrc) ',' num2str(zr) ...
		',' num2str(zd) ' and x= ' num2str(x(k))]);
	end
	
	%end the for loop
end

if(PFAN)
	PFAN=pfan;
end

if(dflag)
   if(dflag==1)
		figure;
   end
   if(dflag<0)
	figure(abs(dflag));
   end
   xray=0;
   for k=1:length(zray)-1
	if(raytype(k)==1)
		[hray,xray]=drawray(vp,zp,zray(k),zray(k+1),xray,p,'k');
	else
		[hray,xray]=drawray(vs,zs,zray(k),zray(k+1),xray,p,'k');
	end
   end
	
   if(dflag==1)
		flipy;xlabel('offset');ylabel('depth');
		if(length(x)>1)
			dx=x(2)-x(1);
		else
			dx=100;
		end
		axis([min([x(:);0])-dx max([x(:);0])+dx min(zp) max([max(zp(end-1));zsrc;zr;zd])])
   end
end


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美一区二区精品秋霞影院| 麻豆成人久久精品二区三区红 | 91国在线观看| 欧美r级电影在线观看| 综合在线观看色| 国内欧美视频一区二区| 91日韩在线专区| 久久中文娱乐网| 日韩不卡免费视频| 91国产免费观看| 久久久久97国产精华液好用吗| 亚洲电影视频在线| 91丝袜国产在线播放| 久久网站最新地址| 免费欧美高清视频| 欧美日韩久久不卡| 亚洲精品国产品国语在线app| 国产一区视频网站| 欧美挠脚心视频网站| 亚洲日本成人在线观看| 成人中文字幕在线| 欧美变态tickling挠脚心| 亚洲成在人线在线播放| 色偷偷久久人人79超碰人人澡| 国产午夜亚洲精品不卡| 黑人巨大精品欧美一区| 日韩一区二区三区在线观看 | 精品区一区二区| 午夜精品福利久久久| 91福利在线导航| 亚洲免费三区一区二区| 97aⅴ精品视频一二三区| 国产亚洲精品久| 国产一区二区精品久久91| 欧美电影免费观看高清完整版| 亚洲gay无套男同| 欧美三级韩国三级日本三斤| 亚洲精品视频自拍| 一本色道**综合亚洲精品蜜桃冫| 国产精品成人一区二区三区夜夜夜| 国产成人丝袜美腿| 欧美韩国日本一区| jlzzjlzz欧美大全| 综合激情成人伊人| 色综合色狠狠综合色| 亚洲美女淫视频| 欧美亚日韩国产aⅴ精品中极品| 亚洲综合丝袜美腿| 欧美男女性生活在线直播观看| 一区二区三区久久| 欧美日韩日日摸| 日韩高清在线观看| 日韩三级视频在线看| 精品一二三四在线| 亚洲444eee在线观看| 欧美日本一区二区| 欧美日韩一区二区三区视频| 国产成人av福利| 亚洲v日本v欧美v久久精品| wwww国产精品欧美| 欧美日韩一卡二卡| 色婷婷综合视频在线观看| 免费视频最近日韩| 亚洲自拍另类综合| 亚洲欧洲精品成人久久奇米网| 国内久久精品视频| 欧美影院一区二区三区| 国产欧美精品一区二区三区四区| 久久成人免费网| 欧美电影免费观看高清完整版在线 | 666欧美在线视频| 精品一区二区三区的国产在线播放 | 东方欧美亚洲色图在线| 综合精品久久久| 欧美精品久久久久久久久老牛影院| 久久精品99国产精品日本| 欧美国产日本视频| 一本一道久久a久久精品综合蜜臀| 五月婷婷激情综合网| 精品国产一区二区三区不卡| 成人免费视频国产在线观看| 国产精品久久影院| 欧美日韩你懂得| 国产麻豆日韩欧美久久| 一区二区不卡在线视频 午夜欧美不卡在| 一本大道av一区二区在线播放| 亚洲不卡一区二区三区| 国产欧美一区二区精品久导航| 欧美中文字幕久久| 精品午夜一区二区三区在线观看| 中文字幕亚洲视频| 欧美一区二区三区免费| 国产一区二区精品久久99| 有坂深雪av一区二区精品| 精品人在线二区三区| 色狠狠av一区二区三区| 日韩av网站在线观看| 中文在线一区二区| 91精品国模一区二区三区| 波多野结衣中文字幕一区| 天天操天天色综合| 亚洲国产精品黑人久久久| 制服丝袜激情欧洲亚洲| 99久久精品免费看国产免费软件| 亚洲第一成人在线| 国产欧美一区二区三区鸳鸯浴| 欧美性生活久久| 岛国精品一区二区| 视频一区在线播放| 国产精品久久久久影院| 日韩欧美国产一区二区在线播放| 粉嫩aⅴ一区二区三区四区| 色婷婷精品大视频在线蜜桃视频| 一区在线播放视频| 奇米影视在线99精品| 国产成人免费视频网站高清观看视频 | 高清不卡一区二区在线| 91丨九色丨蝌蚪丨老版| 国产欧美一区在线| 久久久久久9999| 欧美日韩一级视频| 亚洲精品视频观看| 久久久精品天堂| 日韩一区二区三区四区 | 国产精品二三区| 欧美成人a在线| 欧美日韩国产色站一区二区三区| 不卡大黄网站免费看| 久久激情五月婷婷| 视频在线观看一区| 亚洲一区二区三区在线看| 国产精品久久久久久妇女6080| 7777精品久久久大香线蕉| 91成人在线免费观看| 成人av手机在线观看| 国产精品77777竹菊影视小说| 天天操天天综合网| 亚洲国产综合视频在线观看| 亚洲精品日韩一| 国产女人aaa级久久久级| 26uuu国产电影一区二区| 91精品国产色综合久久不卡蜜臀| 欧美性受极品xxxx喷水| 欧美在线视频你懂得| 91一区在线观看| www.久久久久久久久| 成人一级视频在线观看| 国产精品18久久久久久vr| 狠狠色丁香婷婷综合| 视频一区二区三区中文字幕| 亚洲一区二区av电影| 一区二区三区 在线观看视频| 国产精品免费久久| 欧美v日韩v国产v| 精品国免费一区二区三区| 日韩欧美一区二区免费| 宅男在线国产精品| 69p69国产精品| 日韩一区二区三区av| 欧美一级日韩一级| 欧美xxxx老人做受| 久久女同互慰一区二区三区| 99久久精品一区二区| 中文一区在线播放| 国产欧美综合在线| 国产精品精品国产色婷婷| 国产精品免费aⅴ片在线观看| 日本一区二区成人| 亚洲日本在线视频观看| 国产精品久久久久永久免费观看 | 91亚洲永久精品| 色域天天综合网| 色婷婷久久综合| 欧美精品黑人性xxxx| 国产成人久久精品77777最新版本| 久久久久国色av免费看影院| 91麻豆123| 天堂影院一区二区| 久久久www成人免费无遮挡大片| 成人动漫精品一区二区| 亚洲一区视频在线| 欧美激情综合在线| 日韩一区二区三区电影在线观看| 国产精品一二三在| 日韩成人精品在线| 亚洲国产精品精华液ab| 国产精品久久久久影院| 日韩成人伦理电影在线观看| 亚洲永久免费av| 日本美女一区二区三区视频| 狠狠色综合播放一区二区| 成人小视频免费在线观看| 99国产精品99久久久久久| 91视频www| 91精品国产免费| 国产三级精品视频| 一区二区久久久久| 蜜桃av一区二区在线观看| 国产精品中文字幕日韩精品 | **性色生活片久久毛片|