フィルターのクリア

want to create phased array antenna as shown in picture

3 ビュー (過去 30 日間)
Mani
Mani 2023 年 12 月 15 日
コメント済み: Mani 2023 年 12 月 18 日
I want to create phased array Txantenna as shown in picture and using this antenna will model radar transmision using phased.Radiator.
kindly help me ,how this antenna can be created using phased array tool box.
  1 件のコメント
Mani
Mani 2023 年 12 月 15 日
TX2
TX1 1 TX3
where, 1 is used to just represent centre point
horizonatal distance between TX1 antenna and 1 is lambda
horizonatal distance between 1 and TX3 antenna is lambda
horizonatal distanc 1 and TX2 antenna is lambda/2

サインインしてコメントする。

回答 (1 件)

George
George 2023 年 12 月 18 日
You can use a phased.ConformalArray to represent an array with arbitrary element positioning - https://www.mathworks.com/help/phased/ref/phased.conformalarray-system-object.html
Assuming we are looking down on the x-y plane, with 1 being the origin, and the y axes pointing up, you could do something like this:
lambda = 1; % set this to your desired lambda
pos1 = [-lambda;0;0];
pos2 = [0;lambda/2;0];
pos3 = [lambda;0;0];
array = phased.ConformalArray('ElementPosition',[pos1,pos2,pos3]);
Assuming the antenna elements that you wish to model are isotropic, that is all you need to do, otherwise you need to be careful that the array normal is set correctly.
  1 件のコメント
Mani
Mani 2023 年 12 月 18 日
hi george thanks for answering,its working.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAntennas, Microphones, and Sonar Transducers についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by