Is it possible to plot s-parameter, impedance and correlation plot for a phased.ConformalArray object ?
11 ビュー (過去 30 日間)
古いコメントを表示
Hi Team
Could you please help me with a code example for plotting the s-parameters, correlation and impedance plot for a phased.ConformalArray object.
fc=2e6;
c=physconst('LightSpeed');
lambda=c/fc;
pentagon=nsidedpoly(5,'Center',[0 0],'SideLength',0.5*lambda);
loc=[pentagon.Vertices(:,1)';pentagon.Vertices(:,2)';zeros(1,5)];
normal=zeros(2,5);
ant_ele=phased.IsotropicAntennaElement('FrequencyRange',[0 1e8],'BackBaffled',true)
H = phased.ConformalArray('Element',ant_ele,'ElementPosition',loc,'ElementNormal',normal)
viewArray(H,'ShowNormals',true,'ShowIndex','All')
figure
pattern(H,fc)
figure
pattern(H,fc,[-180:180],0,'PropagationSpeed',c,'Type','powerdb','CoordinateSystem','polar')
figure
pattern(H,fc,0,[-90:90],'PropagationSpeed',c,'Type','powerdb','CoordinateSystem','polar')
Thanks in advance.
0 件のコメント
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!