필터 지우기
필터 지우기

Rotation of CustomAntennaElement data

조회 수: 5 (최근 30일)
Joshua Goglio
Joshua Goglio 2018년 5월 3일
편집: Joshua Goglio 2018년 5월 14일
Intro:
For reasons I won't enumerate, I must import an Antenna Toolbox generated pattern() into Phased Array Toolbox by means of a CustomAntennaElement object:
az = -180:5:180;
el = -90:5:90;
dblpatch = customAntennaGeometry;
gain = pattern(dblpatch,freq,az,el);
elem = phased.CustomAntennaElement('AzimuthAngles',az,'ElevationAngles',el, ...
'MagnitudePattern',gain,'PhasePattern',zeros(dimEl,dimAz));
This seems to work fine,but when I build a URA the pattern comes out goofy. Here's the array code:
array = phased.URA;
array.ArrayNormal = 'z';
array.Element = elem;
array.Size = size;
array.ElementSpacing = [spacing spacing];
Basically, I believe that I need to rotate the dblpatch (AT) radiation pattern so that the max directivity is along the x axis, instead of the z-axis, then change to array.ArrayNormal = 'x'
How would one go about doing this?
Results:
Five figures are attached: four rad patterns (antenna & phased array toolbox elements and arrays) and the PA toolbox array's lattice.
Current idea fragments:
  • phitheta2azel()
  • circshift() & other manual array manipulation
I cannot use the AT element's Tilt or TiltAxis properties.

답변 (1개)

Honglei Chen
Honglei Chen 2018년 5월 4일
Could you clarify what you want to achieve?
The elements in Phased Array System Toolbox assumes the element normal at 0 azimuth and 0 elevation. When you put a custom element into an URA, it automatically align that axis with the array normal.
On the other hand, if you directly import an element from Antenna Toolbox, there is no rotation. So you may want to just try
array.Element = dblpatch
and see if that's what you want.
HTH
  댓글 수: 1
Joshua Goglio
Joshua Goglio 2018년 5월 14일
편집: Joshua Goglio 2018년 5월 14일
Hello Honglei,
Question:
Is it possible to alter the CustomAntennaElement MATLAB source code to make 0 azimuth 90 elevation the element normal? I'm trying to comb through the CustomAntennaElement code, but I was hoping you might have an idea.
Comments:
Just to be clear, I am not using array.Element = dblpatch because I prefer to use planeWaveExcitation and this is incompatible with that approach. There is another reason, but I don't want to get too far into the weeds. I also am not using the Tilt/TiltAxis Antenna Toolbox methods because I would like to use an inf GND plane, which is incompatible with these methods.
Thanks! Josh

댓글을 달려면 로그인하십시오.

카테고리

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