rcschaff.m~

来自「信号与信息处理-matlab信号处理工具箱源程序集合」· M~ 代码 · 共 24 行

M~
24
字号
function rcscd=rcsChaff(frequency)% RCSCHAFF Maximum radar cross section of single chaff dipol% %   rcscd=rcsChaff(wavelength)% %   rcscd = Maximum RCS of a chaff dipole [m^2]%   frequency = Operating frequency of targeting radar [Hz]% %   AIM:%   To find the maximum radar cross section (RCS) of a single chaff dipole.% %   TECHNICAL BACKGROUND:%   Chaff is made up of small aluminium strips. There is a coating on these%   strips which makes the chaff strip conductive. An ideally orientated%   chaff dipole, which is usually half the length of the targeting radar's%   wavelength, has a RCS approximately equal to 0.86 x wavelength^2.% %   REFERENCES:%   Benson, Ryan, Frater, "Tactical Electronic Warfare", Argoss Press, 2007.% %   AUTHOR: Jason MOYLE%   DATE: September 2008rcscd=0.86*f2l(frequency)^2;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?