Skip to main content

Phased Array Antenna Modeling

CI PyPI version PyPI downloads Python 3.8+ License: MIT Open In Colab Streamlit App Documentation

A comprehensive Python library for computing and visualizing phased array antenna radiation patterns. Features vectorized computations (50-100x faster than naive loops), multiple array geometries, advanced beamforming, and interactive 3D visualization.

Features

  • High Performance: Vectorized array factor computation (50-100x faster than naive loops)
  • Multiple Geometries: Rectangular, triangular, circular, cylindrical, spherical, sparse/thinned arrays
  • Beamforming: Amplitude tapering (Taylor, Chebyshev, etc.), null steering, multi-beam
  • Realistic Impairments: Mutual coupling, phase quantization, element failures, scan blindness
  • Visualization: 2D matplotlib, interactive 3D Plotly, UV-space representation
  • Subarray Support: Subarray-level beamforming with quantized phase shifters
  • Data Export: CSV, JSON, and NumPy formats for patterns, weights, and geometry

Try it Online

Launch Interactive Web App - No installation required!

The Streamlit app provides an interactive interface for:

  • Designing array geometries (rectangular, triangular, circular, concentric rings, elliptical)
  • Beam steering with real-time pattern visualization
  • Amplitude tapering with sidelobe comparison
  • Impairment simulation (phase quantization, element failures, mutual coupling)
  • UV-space pattern analysis
  • Export data to CSV for further analysis

Installation

From PyPI (recommended)

pip install phased-array-modeling

With optional dependencies

# Include Plotly for 3D visualization
pip install "phased-array-modeling[plotting]"

# Include all optional dependencies
pip install "phased-array-modeling[full]"

For development

git clone https://github.com/jman4162/Phased-Array-Antenna-Model.git
cd Phased-Array-Antenna-Model
pip install -e ".[dev]"

Quick Start

import phased_array as pa
import numpy as np

# Create a 16x16 rectangular array with half-wavelength spacing
geom = pa.create_rectangular_array(16, 16, dx=0.5, dy=0.5)

# Wavenumber for normalized wavelength
k = pa.wavelength_to_k(1.0)

# Steering weights for 30 degree scan with Taylor taper
weights = pa.steering_vector(k, geom.x, geom.y, theta0_deg=30, phi0_deg=0)
weights *= pa.taylor_taper_2d(16, 16, sidelobe_dB=-30)

# Compute full 2D pattern
theta, phi, pattern_dB = pa.compute_full_pattern(geom.x, geom.y, weights, k)

# Plot
pa.plot_pattern_contour(np.rad2deg(theta), np.rad2deg(phi), pattern_dB,
                        title="16x16 Array - 30deg Scan with Taylor Taper")

Examples

Beam Steering

# Steer beam to theta=25 deg, phi=45 deg
weights = pa.steering_vector(k, geom.x, geom.y, theta0_deg=25, phi0_deg=45)

# Compute E-plane and H-plane cuts
angles, E_plane, H_plane = pa.compute_pattern_cuts(
    geom.x, geom.y, weights, k,
    theta0_deg=25, phi0_deg=45
)

Null Steering

# Place nulls at specific directions to reject interference
null_directions = [(20, 0), (-20, 0)]  # (theta, phi) in degrees

weights = pa.null_steering_projection(
    geom, k,
    theta_main_deg=0, phi_main_deg=0,
    null_directions=null_directions
)

Multiple Simultaneous Beams

# Create 3 simultaneous beams
beam_directions = [(0, 0), (25, 0), (25, 180)]

weights = pa.multi_beam_weights_superposition(
    geom, k, beam_directions,
    amplitudes=[1.0, 0.7, 0.7]
)

Circular/Conformal Arrays

# Cylindrical array
geom_cyl = pa.create_cylindrical_array(
    n_azimuth=16, n_vertical=8,
    radius=2.0, height=4.0
)

# Compute pattern accounting for element orientations
AF = pa.array_factor_conformal(theta, phi, geom_cyl, weights, k)

Phase Quantization Analysis

# Simulate 4-bit phase shifters
weights_quantized = pa.quantize_phase(weights, n_bits=4)

# Analyze effect on pattern
results = pa.analyze_quantization_effect(weights, geom, k, n_bits=4)
print(f"RMS phase error: {results['rms_error_deg']:.1f} degrees")

3D Interactive Visualization

# Create interactive 3D pattern plot
fig = pa.plot_pattern_3d_plotly(theta, phi, pattern_dB,
                                 title="3D Radiation Pattern")
fig.show()

Documentation

Full Documentation on ReadTheDocs includes:

  • Getting Started: Installation, quickstart guide, core concepts
  • User Guides: Detailed tutorials for geometry, beamforming, impairments, wideband, and visualization
  • API Reference: Complete reference for all functions with examples
  • Cookbook: Practical recipes for hardware engineers, systems engineers, and researchers
  • Theory Background: Mathematical foundations for array analysis

For hands-on learning, see the demo notebook which covers:

  1. Basic array factor computation
  2. Beam steering
  3. Performance benchmarking
  4. Amplitude tapering comparison
  5. Array geometries (rectangular, triangular, circular, etc.)
  6. Null steering
  7. Multiple simultaneous beams
  8. Phase quantization effects
  9. Element failure analysis
  10. UV-space visualization
  11. 3D Plotly visualization
  12. Conformal array patterns
  13. Mutual coupling effects
  14. Subarray beamforming

Package Structure

phased_array/
├── core.py          # Vectorized AF, FFT, steering, element patterns
├── geometry.py      # Array geometries and subarray architectures
├── beamforming.py   # Tapering, null steering, multi-beam, adaptive
├── impairments.py   # Coupling, quantization, failures, scan blindness
├── wideband.py      # True-time-delay steering, beam squint, bandwidth
├── polarization.py  # Jones/Stokes, axial ratio, XPD, Ludwig-3
├── coordinates.py   # Antenna/radar/cone frames, pattern rotation
├── export.py        # CSV/JSON/NPZ export, summary reports
├── visualization.py # 2D, 3D Plotly, UV-space plotting
└── utils.py         # Coordinate transforms, helpers

Requirements

  • Python 3.8+
  • NumPy >= 1.20.0
  • Matplotlib >= 3.5.0
  • SciPy >= 1.7.0
  • Plotly >= 5.0.0 (optional, for 3D visualization)

Running Tests

pytest tests/ -v

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Citation

If you use this library in your research, please cite:

@software{phased_array,
  author = {Hodge, John},
  title = {Phased Array Antenna Modeling},
  url = {https://github.com/jman4162/Phased-Array-Antenna-Model},
  year = {2026}
}

Contact

John Hodge - jah70@vt.edu

Project Link: https://github.com/jman4162/Phased-Array-Antenna-Model

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

phased_array_modeling-1.3.2.tar.gz (77.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

phased_array_modeling-1.3.2-py3-none-any.whl (63.0 kB view details)

Uploaded Python 3

File details

Details for the file phased_array_modeling-1.3.2.tar.gz.

File metadata

  • Download URL: phased_array_modeling-1.3.2.tar.gz
  • Upload date:
  • Size: 77.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for phased_array_modeling-1.3.2.tar.gz
Algorithm Hash digest
SHA256 cb8f0e946eeffb0752f719c07c8251f9afe0fac4ae86367299dc99cdb773bec5
MD5 8845998c0f4d5e1652979126a380e9b7
BLAKE2b-256 a75374ad416b37cd252331c725eb6f6dbd5ac81681a509c8ef51b5134a38094d

See more details on using hashes here.

Provenance

The following attestation bundles were made for phased_array_modeling-1.3.2.tar.gz:

Publisher: release.yml on jman4162/Phased-Array-Antenna-Model

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file phased_array_modeling-1.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for phased_array_modeling-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e5158f70d2430b0cabfa17f36c358d7c305538b3f6aca6d24295bd471f2d8529
MD5 628568317a4c808092e43c65b3ed10d7
BLAKE2b-256 119949d4137eaa90a161572d3eef4e4d2a956f604f151c1e1f49a8b737a1eea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for phased_array_modeling-1.3.2-py3-none-any.whl:

Publisher: release.yml on jman4162/Phased-Array-Antenna-Model

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.4.1

2 files

1.4.0

2 files

This release

1.3.2 This release

2 files

1.3.1

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page