Drive multiple antenna elements in array

조회 수: 2 (최근 30일)
Christopher Bridges
Christopher Bridges 2019년 2월 13일
댓글: Christopher Bridges 2019년 3월 1일
Hi Matlab,
I'm looking to drive elements and understand directivity using the following code.
I generate a small microstrip patch in antennaDesigner first, then turn it into an array for analysis.
But how do I drive multiple elements to understand the beam formed / directivity?
Thanks, Chris
load msp20G.mat;
msp20G.GroundPlaneWidth = inf;
plotFreq = 20e9;
arr = rectangularArray('Element', msp20G, 'Size', [3 3]);
arr.RowSpacing = 0.03;
arr.ColumnSpacing = 0.03;
arr.PhaseShift(1);
pattern(arr, plotFreq, 'ElementNumber', 1, 'Termination', 50);

채택된 답변

Shashank Kulkarni
Shashank Kulkarni 2019년 2월 27일
Hi Chris,
You can pass in avector to the AmplitudeTaper and PhaseShift proeprties.
For e.g.
arr.PhaseShift = [10 20 30 40 50 60 70 80 90]; for your 9 elemnt vector.
Similarly
ant.AmplitudeTaper = [1 0 0.1 0.2 1 1 1 1 0.1]
to model differnt voltage amplitude applied at the feed of each element of the array.
I hope this helps.
Regards,
Shashank
  댓글 수: 1
Christopher Bridges
Christopher Bridges 2019년 2월 28일
Hi Shashank,
Thanks for the reply! I'm still not seeing 'a beam' being formed from your code.
How could I take my existing code for a basic beam form?
Perhaps I need to put dramatic phases and voltages on each array?
I'm still using for plotting:
pattern(arr, plotFreq, 'Termination', 50);
Best, Chris

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

추가 답변 (1개)

Shashank Kulkarni
Shashank Kulkarni 2019년 3월 1일
Hi Chris,
The code I wrote down was justa general idea. You would have to calculate the correct phaseshifts to make the beam form in a particular direction.
We have added functionality in 19a (should be avilable in a couple of weeks), to calculate the phaseShifts to perform beamscanning. In this case, the user will provide the antenna object, ferquency and the direction in which he wants to point the beam and we will calculate the phase shifts that the user needs to apply to the antenna elements in the array.
Regards,
Shashank
  댓글 수: 1
Christopher Bridges
Christopher Bridges 2019년 3월 1일
Ah - understood. When will this 2019a be available?
Best, Chris

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

카테고리

Help CenterFile Exchange에서 Analysis, Benchmarking, and Verification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by