Radiation pattern code needed.
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
Can someone please help me to plot a radiation pattern of a H-plane horn antenna in matlab. I have tried so many times but it doesn't work. Please share the code if somebody has it. thanks a bunch.
0 comentarios
Respuestas (2)
  RAGHUNATHRAJU DASHARATHA
      
 el 14 de Sept. de 2022
        As per my understanding you want to plot the radiation pattern of a H-plane Horn Antenna in MATLAB 
 I will be demonstrating it using an example. First, I will create a H-plane Horn antenna and plot the radiation pattern for it. You can use the below code to verify that.  
%% Antenna Properties  
 antennaObject = horn; 
antennaObject.FlareWidth = 0.25715; 
antennaObject.FlareHeight = 0.023782; 
% Show 
figure; 
show(antennaObject)  
 %%Antenna Analysis  
% Define plot frequency  
plotFrequency = 15*1e9; 
% Define frequency range  
freqRange = (13.5:0.15:16.5)*1e9; 
% Reference Impedance  
refImpedance = 50; 
% pattern 
figure; 
pattern(antennaObject, plotFrequency) 
0 comentarios
  manjula
 el 26 de En. de 2025
        
      Editada: Walter Roberson
      
      
 el 26 de En. de 2025
  
      antennaObject = horn; 
antennaObject.FlareWidth = 0.25715; 
antennaObject.FlareHeight = 0.023782; 
% Show 
figure; 
show(antennaObject)  
%%Antenna Analysis  
% Define plot frequency  
plotFrequency = 15*1e9; 
% Define frequency range  
freqRange = (13.5:0.15:16.5)*1e9; 
% Reference Impedance  
refImpedance = 50; 
% pattern 
figure; 
pattern(antennaObject, plotFrequency) 
0 comentarios
Ver también
Categorías
				Más información sobre Analysis en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

