Could I design a semi circular antenna array in the array designer?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    dimakopoulos alexandros
 il 3 Apr 2023
  
    
    
    
    
    Risposto: Raghunathraju
    
 il 28 Apr 2023
            The title pretty much.There s only an option for circular. If not, is there any script that can do that?
0 Commenti
Risposta accettata
  Raghunathraju
    
 il 28 Apr 2023
        Hi, 
You can use coformalArray for designing an array of any shape in antennaArrayDesigner app or you can do the following code
r=2;
N = 12;
elem = repmat(dipole(Length=1.5),1,N);
del_th = 360/N;
th = del_th/2:del_th/2:180;
x = r.*cosd(th);
y = r.*sind(th);
z = ones(1,N);
pos = [x;y;z];
c = conformalArray(Element=elem,ElementPosition=pos');
show(c)
For more information refer conformalArray
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Analysis in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


