phased-array-modeling 1.3.0__tar.gz → 1.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/PKG-INFO +1 -1
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/__init__.py +14 -11
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/beamforming.py +1 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array_modeling.egg-info/PKG-INFO +1 -1
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/pyproject.toml +1 -1
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/LICENSE +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/README.md +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/coordinates.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/core.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/export.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/geometry.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/impairments.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/polarization.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/utils.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/visualization.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array/wideband.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array_modeling.egg-info/SOURCES.txt +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array_modeling.egg-info/dependency_links.txt +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array_modeling.egg-info/requires.txt +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/phased_array_modeling.egg-info/top_level.txt +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/setup.cfg +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_beamforming.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_coordinates.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_core.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_export.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_geometry.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_impairments.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_polarization.py +0 -0
- {phased_array_modeling-1.3.0 → phased_array_modeling-1.3.1}/tests/test_wideband.py +0 -0
|
@@ -32,7 +32,7 @@ Example
|
|
|
32
32
|
>>> theta, phi, pattern_dB = pa.compute_full_pattern(geom.x, geom.y, weights, k)
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
|
-
__version__ = "1.3.
|
|
35
|
+
__version__ = "1.3.1"
|
|
36
36
|
|
|
37
37
|
# Beamforming functions
|
|
38
38
|
from .beamforming import ( # Amplitude tapers; Null steering; Multiple beams; Beam spoiling; Adaptive
|
|
@@ -45,8 +45,13 @@ from .beamforming import ( # Amplitude tapers; Null steering; Multiple beams; B
|
|
|
45
45
|
hamming_taper_2d, hanning_taper_1d, hanning_taper_2d, monopulse_weights,
|
|
46
46
|
multi_beam_weights_orthogonal, multi_beam_weights_superposition,
|
|
47
47
|
null_steering_lcmv, null_steering_projection, plot_adapted_pattern,
|
|
48
|
-
quadratic_phase_spoil, spoiled_beam_gain, spoiled_beamwidth,
|
|
49
|
-
taylor_taper_2d)
|
|
48
|
+
quadratic_phase_spoil, spoiled_beam_gain, spoiled_beamwidth,
|
|
49
|
+
taylor_taper_1d, taylor_taper_2d)
|
|
50
|
+
# Coordinate transformation functions
|
|
51
|
+
from .coordinates import (antenna_to_cone, antenna_to_radar, cone_to_antenna,
|
|
52
|
+
radar_to_antenna, rotate_pattern,
|
|
53
|
+
rotation_matrix_pitch, rotation_matrix_roll,
|
|
54
|
+
rotation_matrix_yaw)
|
|
50
55
|
# Core computation functions
|
|
51
56
|
from .core import (array_factor_fft, array_factor_uv, array_factor_vectorized,
|
|
52
57
|
compute_directivity, compute_full_pattern,
|
|
@@ -78,6 +83,12 @@ from .impairments import ( # Mutual coupling; Phase quantization; Element failu
|
|
|
78
83
|
mutual_coupling_matrix_theoretical, quantization_rms_error,
|
|
79
84
|
quantization_sidelobe_increase, quantize_phase, scan_blindness_model,
|
|
80
85
|
simulate_element_failures, surface_wave_scan_angle, vswr_vs_scan)
|
|
86
|
+
# Polarization functions
|
|
87
|
+
from .polarization import (axial_ratio, co_pol_pattern,
|
|
88
|
+
cross_pol_discrimination, cross_pol_pattern,
|
|
89
|
+
jones_vector, ludwig3_decomposition,
|
|
90
|
+
polarization_loss_factor, stokes_parameters,
|
|
91
|
+
tilt_angle)
|
|
81
92
|
# Utility functions
|
|
82
93
|
from .utils import (azel_to_thetaphi, create_theta_phi_grid, create_uv_grid,
|
|
83
94
|
db_to_linear, deg2rad, frequency_to_k,
|
|
@@ -93,14 +104,6 @@ from .visualization import ( # 2D matplotlib plots; UV-space; 3D Plotly plots;
|
|
|
93
104
|
plot_pattern_contour, plot_pattern_polar, plot_pattern_uv_plotly,
|
|
94
105
|
plot_pattern_uv_space, plot_pattern_vs_frequency,
|
|
95
106
|
plot_pattern_vs_frequency_plotly, plot_subarray_delays)
|
|
96
|
-
# Polarization functions
|
|
97
|
-
from .polarization import (axial_ratio, co_pol_pattern, cross_pol_discrimination,
|
|
98
|
-
cross_pol_pattern, jones_vector, ludwig3_decomposition,
|
|
99
|
-
polarization_loss_factor, stokes_parameters, tilt_angle)
|
|
100
|
-
# Coordinate transformation functions
|
|
101
|
-
from .coordinates import (antenna_to_cone, antenna_to_radar, cone_to_antenna,
|
|
102
|
-
radar_to_antenna, rotate_pattern, rotation_matrix_pitch,
|
|
103
|
-
rotation_matrix_roll, rotation_matrix_yaw)
|
|
104
107
|
# Wideband / TTD functions
|
|
105
108
|
from .wideband import (analyze_instantaneous_bandwidth, compare_steering_modes,
|
|
106
109
|
compute_beam_squint, compute_pattern_vs_frequency,
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "phased-array-modeling"
|
|
7
|
-
version = "1.3.
|
|
7
|
+
version = "1.3.1"
|
|
8
8
|
description = "Comprehensive Python library for phased array antenna modeling and visualization"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|