How can I get the phase of a ConformalArray

조회 수: 1 (최근 30일)
Alecsander Eitan
Alecsander Eitan 2019년 10월 6일
답변: Alecsander Eitan 2019년 10월 8일
I'm using a ConformalArray of many elements.
The array is build by:
el = phased.IsotropicAntennaElement;
el.BackBaffled = false;
h = phased.ConformalArray();
h.ElementPosition = Config.SubArray{1}.ElementPosition; % based on our array architecture
h.ElementNormal = Config.SubArray{1}.ElementNormal; % based on our array architecture
h.Taper = ones(size(SV)); % the SV is a steering vector, one complex value per element
h.Element = el;
c = physconst('LightSpeed');
Then I compute the equivalent pattern of the array (including the steering vector) by using:
[PAT,AZ_ANG,EL_ANG] = pattern(h, Fc, AZ, EL, 'PropagationSpeed', c, 'Type','powerdb', 'CoordinateSystem', 'polar', 'Weights', SV(:),'Normalize',false);
Where AZ and EL are arrays for the estimation.
The problem is that I need the phase of the equivalent array and not only the power.
I tried several options but none worked. I saw some solution using ArrayResponse but they don't have the steering vector as an input and therefore result is not what I looking for.
Please nelp me with this.
Thank you,
Alecs

답변 (2개)

Honglei Chen
Honglei Chen 2019년 10월 7일
Could you elaborate what you mean by having steering vector as an input? In your pattern() call, the steering vector (I assume that's what SV is) is passed in through 'Weights' option. That option is available for ArrayResponse too so you should be able to get phase that way. If you encounter any issue, I'd happy to help out.
HTH

Alecsander Eitan
Alecsander Eitan 2019년 10월 8일
I tryed phased.ArrayResponse, but was not able to get the the 2-D response which matches the pattern function (when comparing the power).
Can you help me with the correct configuration to get it?
Thank you,
Alecs

카테고리

Help CenterFile Exchange에서 Array Geometries and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by