脉冲压缩,相干积累,MTI,CFAR详解.docx

上传人:ni****g 文档编号:544502538 上传时间:2022-09-10 格式:DOCX 页数:18 大小:361.50KB
返回 下载 相关 举报
脉冲压缩,相干积累,MTI,CFAR详解.docx_第1页
第1页 / 共18页
脉冲压缩,相干积累,MTI,CFAR详解.docx_第2页
第2页 / 共18页
脉冲压缩,相干积累,MTI,CFAR详解.docx_第3页
第3页 / 共18页
脉冲压缩,相干积累,MTI,CFAR详解.docx_第4页
第4页 / 共18页
脉冲压缩,相干积累,MTI,CFAR详解.docx_第5页
第5页 / 共18页
点击查看更多>>
资源描述

《脉冲压缩,相干积累,MTI,CFAR详解.docx》由会员分享,可在线阅读,更多相关《脉冲压缩,相干积累,MTI,CFAR详解.docx(18页珍藏版)》请在金锄头文库上搜索。

1、MATLAB雷达数据处理:脉冲压缩,相干积累,MTI,CFAR详解2014-05-14 21:42:29|分类:雷达信号处理|标签:雷达数据仿真动目标检测脉压恒虚警率|字号订阅% Thanks to M. A. Richards for providing the code.clear, hold offformat compactJ = sqrt(-1);close all% Get root file name for reading resultsfile=input(Enter root file name for data file: ,s);eval(load ,file,.mat

2、)fprintf(nPulse length = %g microsecondsn,T/1e-6)fprintf(Chirp bandwidth = %g Mhzn,W/1e6)fprintf(Sampling rate = %g Msamples/secn,fs/1e6)figureplot(1e6/fs)*(0:length(s)-1),real(s) imag(s)title(Real and Imaginary Parts of Chirp Pulse)xlabel(time (usec)ylabel(amplitude)gridPRI = 1/PRF;fprintf(nWe are

3、simulating %g pulses at an RF of %g GHz,Np,fc/1e9)fprintf(nand a PRF of %g kHz, giving a PRI of %g usec.,PRF/1e3,PRI/1e-6)fprintf(nThe range window limits are %g to %g usec.n, . T_out(1)/1e-6,T_out(2)/1e-6)% Compute unambiguous Doppler interval in m/sec% Compute unambiguous range interval in metersv

4、ua = 3e8*PRF/(2*fc);rmin = 3e8*T_out(1)/2;rmax = 3e8*T_out(2)/2;rwin = rmax-rmin;rua = 3e8/2/PRF;fprintf(nThe unambiguous velocity interval is %g m/s.,vua)fprintf(nThe range window starts at %g km.,rmin/1e3)fprintf(nThe range window ends at %g km.,rmax/1e3)fprintf(nThe sampled range window is %g km

5、long.,rwin/1e3)fprintf(nThe unambiguous range interval is %g km.nn,rua/1e3)% Convert range samples to absolute range units.My,Ny=size(y);range=(3e8/2)*(0:My-1)*(1/fs) + T_out(1)/1e3;% T_out(1) 是接收窗的起始时刻,即range从多远的距离开始观测pulse = (1:Ny);% Force oversize FFT, and compute doppler scale factorLfft = 2(nex

6、tpow2(Ny)+3); % Lfft是慢时间上FFT的点数doppler = (0:Lfft-1)/Lfft)-0.5)*vua; %此处的 doppler表征的是速度,不是fd = 2v / lambda这个定义式fprintf(nThe Doppler increment is %g Hz.,PRF/Lfft)fprintf(nThe velocity increment is %g m/s.,3e8*PRF/Lfft/2/fc)% Start with a few plots to examine the data% plot power of raw data in dBydB=d

7、b(abs(y)/max(max(abs(y),voltage);figuremesh(pulse,range,ydB)title(FAST-TIME/SLOW-TIME PLOT OF RAW DATA)ylabel(range (km)xlabel(pulse number)% Plot overlay of individual range tracesdisp( )disp( )disp(.plotting overlay of range traces)figureplot(range,db(y,voltage)title(OVERLAY OF RANGE TRACES)xlabel

8、(distance (km)ylabel(amplitude (dB)grid% Noncoherently integrate the range traces and displaydisp(.plotting integrated range trace)figureplot(range,db(sum(abs(y).2),power) %看看功率的非相干积累title(NONCOHERENTLY INTEGRATED RANGE TRACE)xlabel(range bin)ylabel(power)grid% Doppler process and square-law detect

9、the whole% unprocessed array and display mesh.% Use Hamming window throughout.disp(.computing raw range-Doppler map)% 下句效果和Y=fft(conj(y).*(hamming(Ny)*ones(1,My),Lfft,1); 一样。dim = 1 表示沿着列做fftY=fft(conj(y).*(hamming(Ny)*ones(1,My),Lfft); %y是20-by-337的,对y的慢时间维(按列)做Lfft点FFT,进行相干积累% Y= fftshift(Y.*conj(

10、Y),1); 的效果与Y=git_rotate(Y.*conj(Y),Lfft/2); 完全相同,git_rotate是将矩阵的上下循环移位Y=git_rotate(Y.*conj(Y),Lfft/2); %note we take mag-squared of Y here also注意Y是做完相干积累后才取模平方的YdB=db(abs(Y),power);figuremesh(doppler,range,YdB)Since I used the DFT(K points) to perform the Doppler analysis, bin #0 (#1 in MATLAB index

11、ing) corresponds to zero Doppler shift, while each successive bin represents an increment of PRF/K Hz.I used a modest DFT size of 256 to get adequate Doppler definition, the corresponding increment in velocity is (lambda*PRF/2/K)m/s per FFT bin.The DFT causes the target energy to concentrate along t

12、he frequency axis; a target signal that was a sinusoid across all 20 slow time samples and was lost among the noise and clutter is now an asinc function peaking at the appropriate Doppler shift. The asinc is still fairly “fat” simply because I have only 20 slow-time samples, which limits the Doppler

13、 resolution. The noise remains spread out across all of the range and velocity bins.The clutter is now a clearly evident concentration of energy around zero velocity, extending through all of the range bins.Note also that the four targets are now clearly visible.Each is in the form of a “hump” of en

14、ergy extending across 1.5 km of range.This is because I have not yet done pulse compression.The signal from a target on a given pulse is just an echo of my transmitted pulse, which was 10ms long.This is equivalent to (c/2)(10ms) = 1.5 km.title(RANGE-DOPPLER PLOT OF UNPROCESSED DATA)ylabel(range (km)

15、xlabel(velocity (m/s)levels=(max(YdB(:)+-1 -5 -10 -15 -20 -25 -30);figurecontour(doppler,range,YdB,levels)title(RANGE-DOPPLER CONTOUR PLOT OF UNPROCESSED DATA)ylabel(range (km)xlabel(velocity (m/s)grid% Now start processing the data .% Pulse compression first. Use time-domain Hamming weighting of the% impulse response for range sidelobe controlLs = length(s); % Ls = 120disp(.performing ma

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 生活休闲 > 社会民生

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号