Загрузка страницы

3D radiation pattern of dipole antenna using matlab

MATLAB programme for the radiation pattern:

%3D radiation pattern of dipole antenna
theta=[0:0.1:2*pi];
phi=[0:0.1:2*pi];
kl=1/2;
i0=1;
eta=120*pi;
urad=(eta*(i0^2)*((cos(kl*cos(theta-(pi/2))/2)-cos(kl/2))./sin(theta-(pi/2))).^2)/(8*(pi)^2);
udb=10*log10(urad);

%normalizing in order to make U vector positive
minu=min(udb);
u=udb-minu;

%expanding theta,phi,u to span entire space
u(1,1)=0;
for n=1:length(phi)
theta(n,:)=theta(1,:);
end
phi=phi';
for m=1:length(phi)
phi(:,m)=phi(:,1);
end
for k=1:length(u);
u(k,:)=u(1,:);
end
[x,y,z]=sph2cart(phi,theta,u);
surf(x,y,z);
title('3D radiation pattern of dipole antenna');

Видео 3D radiation pattern of dipole antenna using matlab канала TechoPedia
Показать
Комментарии отсутствуют
Введите заголовок:

Введите адрес ссылки:

Введите адрес видео с YouTube:

Зарегистрируйтесь или войдите с
Информация о видео
27 мая 2017 г. 16:24:30
00:02:34
Яндекс.Метрика