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

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

?? traceray.m

?? 二維射線追蹤程序!matlab編寫!! 地震聲波正演源程序
?? M
字號:
function [t,p,L]=traceray(vp,zp,vs,zs,raycode,x,xcap,pfan,itermax,optflag,pflag,dflag,xnot)
% TRACERAY: traces an arbitrary ray given its raycode for v(z)
%
% [t,p,L]=traceray(vp,zp,vs,zs,raycode,x,xcap,pfan,itermax,optflag,pflag,dflag,xnot)
%
% TRACERAY uses the modified bisection algorithm 
% to trace an arbitrary vector of rays through a stratified medium. 
% The rays 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 = n by 2 matrix specifying the ray where n is the number of "legs" on the
%				raypath. 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 ================================
% xnot = starting x coordinate to draw rays from
% =========================== 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
% L     = vector of geometrical spreading factors for each x
%     (if L is not asked for, it will not be calculated)
%
% 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<13)
	xnot=0;
end
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(double(size(vp)==size(zp))))
	error('vp and zp must be the same size');
end
if(~prod(double(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

if(size(raycode,2)~=2)
	error('raycode must have two columns');
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=xnot;
   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,'r');
	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

if(nargout>2)
   L=sphdiv(vmod,zmod,p);
end

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本伊人午夜精品| 色婷婷av一区二区三区大白胸| 国产一区二区在线免费观看| 99久久精品国产一区| 日韩一区二区免费在线观看| 国产精品电影院| 麻豆精品一区二区| 在线观看视频一区二区欧美日韩| 久久免费视频一区| 日韩精品乱码av一区二区| 成人午夜大片免费观看| 精品裸体舞一区二区三区| 亚洲在线视频网站| 91在线观看污| 国产精品天美传媒| 国产一区日韩二区欧美三区| 91精品久久久久久久99蜜桃| 亚洲美女精品一区| 波多野结衣在线aⅴ中文字幕不卡| 精品久久久网站| 日一区二区三区| 欧美年轻男男videosbes| 亚洲精品视频在线看| 波多野结衣在线aⅴ中文字幕不卡| 久久久综合视频| 精品亚洲国产成人av制服丝袜| 8v天堂国产在线一区二区| 亚洲影院理伦片| 91蜜桃在线观看| 亚洲特黄一级片| 91美女视频网站| 亚洲欧美韩国综合色| 91猫先生在线| 亚洲一二三区在线观看| 色噜噜久久综合| 亚洲人成网站在线| 国产精品久久久久永久免费观看| 亚洲国产精品久久人人爱蜜臀| 成人a级免费电影| 午夜av区久久| 在线观看亚洲精品视频| 午夜久久久久久| 日韩欧美电影一区| 国产一区二区三区高清播放| 精品理论电影在线| 国产最新精品精品你懂的| 国产亚洲综合性久久久影院| 丁香婷婷综合网| 亚洲欧美一区二区在线观看| 97久久精品人人做人人爽50路| 亚洲免费色视频| 在线视频国产一区| 日韩精品亚洲一区二区三区免费| 欧美顶级少妇做爰| 国产一区二区三区在线看麻豆| 久久久91精品国产一区二区三区| 国产成人免费视频一区| 一区二区国产视频| 欧美成人a∨高清免费观看| 国产一区二区91| 亚洲色图在线看| 日韩欧美一二三区| 99久久国产综合精品色伊| 樱桃国产成人精品视频| 日韩欧美中文一区二区| 国产成人在线视频网站| 亚洲成人在线免费| 久久精品视频在线看| 在线观看三级视频欧美| 国内外成人在线| 亚洲欧美国产高清| 精品国产精品网麻豆系列 | 国产亚洲福利社区一区| 91丨porny丨中文| 蜜臀国产一区二区三区在线播放| 中文字幕精品一区二区精品绿巨人| 欧美视频在线观看一区二区| 国产一区二区美女| 亚洲福利视频一区二区| 国产欧美日韩在线看| 欧美乱熟臀69xxxxxx| 99在线精品一区二区三区| 蜜乳av一区二区| 亚洲婷婷综合久久一本伊一区 | 久久亚洲精华国产精华液| 日本电影欧美片| 久久99精品国产麻豆不卡| 有码一区二区三区| 久久精子c满五个校花| 777xxx欧美| 91福利视频网站| 成人免费毛片高清视频| 久久99热99| 日韩精品一级二级| 亚洲国产日韩一区二区| 亚洲欧美一区二区三区极速播放| 久久午夜电影网| 日韩一卡二卡三卡国产欧美| 欧美天天综合网| 91蜜桃免费观看视频| 成人av在线一区二区| 国产成人av一区二区三区在线 | 亚洲午夜久久久久| 精品剧情在线观看| 蜜桃久久av一区| 亚洲自拍都市欧美小说| 亚洲免费观看视频| 亚洲天天做日日做天天谢日日欢 | 欧美成人精品高清在线播放| 欧美日韩精品三区| 在线观看日韩电影| 色88888久久久久久影院按摩| 成人亚洲精品久久久久软件| 成人一道本在线| 不卡av在线免费观看| 99久久精品免费| 色菇凉天天综合网| 欧美中文字幕不卡| 欧美亚洲丝袜传媒另类| 91欧美一区二区| 在线视频综合导航| 欧美三级三级三级爽爽爽| 欧美日韩国产大片| 91精品国产综合久久福利软件| 美女诱惑一区二区| 国产一区二区伦理片| 裸体在线国模精品偷拍| 老司机精品视频线观看86| 美女视频第一区二区三区免费观看网站| 亚洲成人自拍网| 日韩**一区毛片| 久久精品99国产精品日本| 国产一区二区在线免费观看| www.亚洲在线| 欧美系列一区二区| 日韩一二三区视频| 久久亚洲捆绑美女| 亚洲视频免费在线| 亚洲高清不卡在线| 99亚偷拍自图区亚洲| 色综合久久久久综合体桃花网| 在线免费av一区| 91精品国产综合久久精品性色| 久久久久高清精品| 亚洲综合无码一区二区| 热久久久久久久| 国产不卡在线播放| 欧美网站一区二区| 亚洲桃色在线一区| 丝袜美腿高跟呻吟高潮一区| 激情久久五月天| 一本一本大道香蕉久在线精品 | 一区二区三区四区不卡在线| 天天综合天天综合色| 国产大陆a不卡| 欧美日韩美少妇| 久久久久久黄色| 丝袜美腿成人在线| 成人av午夜影院| 欧美一区三区四区| 成人欧美一区二区三区小说| 日本在线观看不卡视频| 91捆绑美女网站| 欧美精品一区二区三区在线播放| 亚洲精品视频免费看| 国产一区 二区 三区一级| 欧美性猛交一区二区三区精品| 国产亚洲欧美一区在线观看| 亚洲狠狠爱一区二区三区| 成人av在线观| 精品国产成人在线影院| 亚洲mv在线观看| av电影在线观看一区| 久久青草国产手机看片福利盒子| 午夜欧美在线一二页| 91网址在线看| 国产欧美一区二区精品性| 蜜桃精品视频在线观看| 欧美亚洲动漫制服丝袜| 1区2区3区欧美| 粉嫩绯色av一区二区在线观看| 精品欧美久久久| 日韩电影在线免费看| 欧美视频一区二区三区| 一区二区三区av电影| 99久久精品国产观看| 国产精品家庭影院| 成人综合婷婷国产精品久久| 精品动漫一区二区三区在线观看| 青青青爽久久午夜综合久久午夜| 欧美午夜片在线观看| 一区二区在线免费| 91免费在线看| 亚洲视频综合在线| 不卡的av在线| 最新不卡av在线| 97精品国产97久久久久久久久久久久| 国产精品三级视频| 成人综合婷婷国产精品久久免费| 国产日韩欧美a|