Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 1.24 KB

File metadata and controls

31 lines (27 loc) · 1.24 KB

ArrayDesignOpt

Python files developed to simulate 2D random array patterns, and transform regular uniform arrays to pseudo random through side lobe minimization.
Similar to the LWA (long wavelength array) stations, the stations for the IGP JARGUS Project were designed using the Leonid Kogan's algorithm.


This library is still in development and testing :) ...

Instalation

Requierement libraries:

Usage

-------------------------------------------------------
Simple script
-------------------------------------------------------
from arrayDesignOpt import main
arr = main.AntennaArray(N=64)
norm_pattern, _domg, _cosxy, _radmin, _pat_int = arr.getPattern()
SLLdB, XBest, YBest, BeamOpt, Xlast1, Ylast1 = arr.minimizeSLL( _radmin,gain=10, plotPattern=True)