From cf36eceb77364611c1d76cad2cea5c73ee2d5f8d Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Mon, 25 Sep 2023 15:33:31 +0200 Subject: Added the blog posts from the previous site --- content/blog/ml_array/index.md | 15 +++++++++++++++ content/blog/ml_array/ml_array.png | Bin 0 -> 231345 bytes 2 files changed, 15 insertions(+) create mode 100644 content/blog/ml_array/index.md create mode 100644 content/blog/ml_array/ml_array.png (limited to 'content/blog/ml_array') diff --git a/content/blog/ml_array/index.md b/content/blog/ml_array/index.md new file mode 100644 index 0000000..d6fdb05 --- /dev/null +++ b/content/blog/ml_array/index.md @@ -0,0 +1,15 @@ ++++ +title = 'Minimum Redundancy Linear Array' +date = 2021-11-02T16:31:45+02:00 +math = true ++++ + +It is assumed that the reader understands how a linear antenna array works. With this in mind, we explore the concept of the minimum redundancy linear array. The motivation to create such an array is to provide the maximum resolution for a given number of elements in the array. This is done by reducing the number of redundant spacings in the antenna array. The antenna array factor is calculated using the following formula. + +$$ AF(\theta) = \sum_{i=1}^N e^{j\pi d_i \cos(\theta)} $$ + +Using this formula and the spacing calculations specified in the literature, we can compare the two arrays. The first is the uniform linear array with equal spacing of half wavelength. The second is the spacing based on the MLA calculations multiplies by half wavelengths. From this it is clear that although we main lobe width is lower, the power is distributed into the side lobes. The power HAS to go somewhere. This will also require a more complicated feeding network because of the non-uniform distance which can be done with clever design or phase shifters. + +![Minimum Redundancy Linear Array](ml_array.png) + +You can have a look at the python code used to generate the graph above [here](https://github.com/MrKaranJ/MrKaranJ.github.io/blob/gh-pages/_code/mla.py). Read [this](https://ieeexplore.ieee.org/document/1139138) article for more information. diff --git a/content/blog/ml_array/ml_array.png b/content/blog/ml_array/ml_array.png new file mode 100644 index 0000000..0e0a260 Binary files /dev/null and b/content/blog/ml_array/ml_array.png differ -- cgit v1.3.1