Is it possible to plot s-parameter, impedance and correlation plot for a phased.ConformalArray object ?
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!