フィルターのクリア

Patch antenna with multiple feeds with independent voltage and phases

5 ビュー (過去 30 日間)
xadu
xadu 2019 年 9 月 7 日
コメント済み: xadu 2019 年 9 月 24 日
I'm using the antenna toolbox and would like to create a custom antenna element which consists of two patches above a ground plane. I have no problem in creating the geometry and the final element using pcbStack (this tutorial helped). However, even though I can specify multiple feeds using pcbStack's FeedLocation property, I can only specify one value each for the voltage and phase (using FeedVoltage and FeedPhase, respectively). Is it possible to specify independent voltage and phases?
Thanks!

採用された回答

Da Huang
Da Huang 2019 年 9 月 24 日
Hi udax,
if you setup the FeedLocations property properly in pcbStack object. Then you shall be able to set the FeedVoltage and FeedPhase as vector in the same object. Please see example below for a two feed patchMicrostripEnotch, which has independent feed voltage and phase.
p = patchMicrostripEnotch;
p = pcbStack(p);
p.FeedLocations = [-0.0034 0 1 3;0.0034 0 1 3];
p.FeedVoltage = [1,2];
p.FeedPhase = [0,90];
p.pattern(1e9);
  1 件のコメント
xadu
xadu 2019 年 9 月 24 日
Thanks for the helpful answer. That works!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Antenna Toolbox についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by