matlab code for an E-shaped antenna?

this is a matlab code for patch antenna,anybody can convert it to be usable code for an E-shaped antenna?.....please
S11 parameter code:
% plot reflection coefficient S11
figure
plot( freq/1e6, 20*log10(abs(s11)), 'k-', 'Linewidth', 2 );
grid on
title( 'reflection coefficient S_{11}' );
xlabel( 'frequency f / MHz' );
ylabel( 'reflection coefficient S_{11}' );
radiation pattern code:
% calculate the far field at phi=0 degrees and at phi=90 degrees
disp( 'calculating far field at phi=[0 90] deg...' );
nf2ff = CalcNF2FF(nf2ff, Sim_Path, f_res, [-180:2:180]*pi/180, [0 90]*pi/180);
we have the full code for designing the patch antenna , if you want any other details please tell us.

1 件のコメント

ROHIT  KUMAR
ROHIT KUMAR 2017 年 7 月 6 日
編集済み: ROHIT KUMAR 2017 年 7 月 6 日
can anybody please design E patch antenna using matlab? need very urgent

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

回答 (1 件)

Chandra Amma Palanisamy
Chandra Amma Palanisamy 約5時間 前
編集済み: Chandra Amma Palanisamy 約5時間 前

0 投票

Antenna Toolbox already includes a built-in E-shaped patch antenna model (patchMicrostripEnotch). You can use it to analyze S11 (return loss), input impedance, and radiation patterns directly.
Example:
ant = design(patchMicrostripEnotch,2e9);
figure,show(ant)
fiigure,pattern(ant,2e9)

カテゴリ

ヘルプ センター および File ExchangeDesign, Analysis, Benchmarking, and Verification についてさらに検索

タグ

質問済み:

R Q
2013 年 4 月 16 日

編集済み:

2026 年 7 月 15 日 19:48

Community Treasure Hunt

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

Start Hunting!

Translated by