Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

simulate antenna by matlab

Status
Not open for further replies.

Oska

Newbie level 6
Joined
Jul 13, 2009
Messages
12
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,349
antenna matlab

Is there someone knowing whether matlab can be used to simulate antennas or not?
 

I get nothing from your web ID~~~~~Is it just a book which about the subject?
 

Thanks,I will have a look.
Do you know where the antenna toolbox can be download?
 

The only Matlab toolbox i know about to simulate an antenna is Comsol Mulitphysics. It has an Rf-module where that can be done. Comsol was original Femlab, which was a toolbox for Matlab, which later got so big that it went off on its own. You can set up the simulation with Comsol then export it as an m-file.

Cesar
 

Yes Matlab is the best tool for simulating antenna arrays; Below i have typed some MATLAB code to simulate liner antenna array.
change the different variable and see the results.

%********************************
clc
clear all
f=2000;
c=340;
d=.08;
N=10;

theta= 45 * (pi/180);

si=0:pi/100:pi;
for k=1:101
peak(k)=(sin(N*f*d*pi*(cos(si(k))-cos(theta))/c))/(N*sin(pi*f/c*d*(cos(si(k))-cos(theta))));
end
figure(1)
plot(si*180/pi,20*log10(abs(peak)))
grid on

figure(2)
polar(si,(abs(peak)))
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top