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=0i/100i;
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.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…