acoular 25.7__py3-none-any.whl → 25.10__py3-none-any.whl
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.
- acoular/aiaa/aiaa.py +7 -9
- acoular/base.py +6 -9
- acoular/calib.py +19 -18
- acoular/configuration.py +2 -2
- acoular/environments.py +102 -113
- acoular/fbeamform.py +296 -301
- acoular/fprocess.py +7 -4
- acoular/grids.py +98 -111
- acoular/h5cache.py +5 -1
- acoular/h5files.py +96 -9
- acoular/microphones.py +22 -27
- acoular/process.py +7 -11
- acoular/sdinput.py +0 -5
- acoular/signals.py +29 -27
- acoular/sources.py +189 -322
- acoular/spectra.py +33 -44
- acoular/tbeamform.py +217 -199
- acoular/tools/helpers.py +25 -33
- acoular/tools/metrics.py +5 -10
- acoular/tprocess.py +173 -209
- acoular/trajectory.py +5 -5
- acoular/version.py +2 -2
- {acoular-25.7.dist-info → acoular-25.10.dist-info}/METADATA +6 -2
- {acoular-25.7.dist-info → acoular-25.10.dist-info}/RECORD +27 -27
- {acoular-25.7.dist-info → acoular-25.10.dist-info}/WHEEL +0 -0
- {acoular-25.7.dist-info → acoular-25.10.dist-info}/licenses/AUTHORS.rst +0 -0
- {acoular-25.7.dist-info → acoular-25.10.dist-info}/licenses/LICENSE +0 -0
acoular/trajectory.py
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"""
|
|
11
11
|
|
|
12
12
|
# imports from other packages
|
|
13
|
-
|
|
13
|
+
import numpy as np
|
|
14
14
|
from scipy.interpolate import splev, splprep
|
|
15
15
|
from traits.api import Dict, Float, HasStrictTraits, Property, Tuple, cached_property, property_depends_on
|
|
16
16
|
|
|
@@ -101,12 +101,12 @@ class Trajectory(HasStrictTraits):
|
|
|
101
101
|
|
|
102
102
|
@property_depends_on(['points[]'])
|
|
103
103
|
def _get_interval(self):
|
|
104
|
-
return sort(list(self.points.keys()))[r_[0, -1]]
|
|
104
|
+
return np.sort(list(self.points.keys()))[np.r_[0, -1]]
|
|
105
105
|
|
|
106
106
|
@property_depends_on(['points[]'])
|
|
107
107
|
def _get_tck(self):
|
|
108
|
-
t = sort(list(self.points.keys()))
|
|
109
|
-
xp = array([self.points[i] for i in t]).T
|
|
108
|
+
t = np.sort(list(self.points.keys()))
|
|
109
|
+
xp = np.array([self.points[i] for i in t]).T
|
|
110
110
|
k = min(3, len(self.points) - 1)
|
|
111
111
|
tcku = splprep(xp, u=t, s=0, k=k)
|
|
112
112
|
return tcku[0]
|
|
@@ -194,4 +194,4 @@ class Trajectory(HasStrictTraits):
|
|
|
194
194
|
t_end = self.interval[1]
|
|
195
195
|
# all locations are fetched in one go because that is much faster further improvement could
|
|
196
196
|
# be possible if interpolated locations are fetched in blocks
|
|
197
|
-
yield from zip(*self.location(arange(t_start, t_end, delta_t), der))
|
|
197
|
+
yield from zip(*self.location(np.arange(t_start, t_end, delta_t), der))
|
acoular/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acoular
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.10
|
|
4
4
|
Summary: Python library for acoustic beamforming
|
|
5
5
|
Project-URL: homepage, https://acoular.org
|
|
6
6
|
Project-URL: documentation, https://acoular.org
|
|
@@ -62,6 +62,7 @@ Requires-Dist: ipython; extra == 'dev'
|
|
|
62
62
|
Requires-Dist: matplotlib; extra == 'dev'
|
|
63
63
|
Requires-Dist: numpydoc; extra == 'dev'
|
|
64
64
|
Requires-Dist: pickleshare; extra == 'dev'
|
|
65
|
+
Requires-Dist: pydata-sphinx-theme; extra == 'dev'
|
|
65
66
|
Requires-Dist: pylops; extra == 'dev'
|
|
66
67
|
Requires-Dist: pytest; extra == 'dev'
|
|
67
68
|
Requires-Dist: pytest-cases; extra == 'dev'
|
|
@@ -75,6 +76,7 @@ Requires-Dist: ruff==0.8.1; extra == 'dev'
|
|
|
75
76
|
Requires-Dist: setuptools; extra == 'dev'
|
|
76
77
|
Requires-Dist: sounddevice; extra == 'dev'
|
|
77
78
|
Requires-Dist: sphinx; extra == 'dev'
|
|
79
|
+
Requires-Dist: sphinx-copybutton; extra == 'dev'
|
|
78
80
|
Requires-Dist: sphinx-gallery; extra == 'dev'
|
|
79
81
|
Requires-Dist: sphinxcontrib-bibtex; extra == 'dev'
|
|
80
82
|
Requires-Dist: traitsui; extra == 'dev'
|
|
@@ -84,9 +86,11 @@ Requires-Dist: ipython; extra == 'docs'
|
|
|
84
86
|
Requires-Dist: matplotlib; extra == 'docs'
|
|
85
87
|
Requires-Dist: numpydoc; extra == 'docs'
|
|
86
88
|
Requires-Dist: pickleshare; extra == 'docs'
|
|
89
|
+
Requires-Dist: pydata-sphinx-theme; extra == 'docs'
|
|
87
90
|
Requires-Dist: setuptools; extra == 'docs'
|
|
88
91
|
Requires-Dist: sounddevice; extra == 'docs'
|
|
89
92
|
Requires-Dist: sphinx; extra == 'docs'
|
|
93
|
+
Requires-Dist: sphinx-copybutton; extra == 'docs'
|
|
90
94
|
Requires-Dist: sphinx-gallery; extra == 'docs'
|
|
91
95
|
Requires-Dist: sphinxcontrib-bibtex; extra == 'docs'
|
|
92
96
|
Provides-Extra: full
|
|
@@ -238,6 +242,6 @@ plt.savefig('three_sources.png', dpi=300, bbox_inches='tight')
|
|
|
238
242
|
plt.show()
|
|
239
243
|
```
|
|
240
244
|
|
|
241
|
-

|
|
242
246
|
|
|
243
247
|
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
acoular/__init__.py,sha256=FzwGAAHTrQbqo_UxXSwydKK8RundiTxMFZgda3hg-RU,3210
|
|
2
|
-
acoular/base.py,sha256=
|
|
3
|
-
acoular/calib.py,sha256=
|
|
4
|
-
acoular/configuration.py,sha256=
|
|
2
|
+
acoular/base.py,sha256=D2KgS-qmIUgR6XOTI6BCq1wnozEhbpThzZC1W8qq2MY,9561
|
|
3
|
+
acoular/calib.py,sha256=z0No-bMFpaarnFzLrh3Pq3PYClyk5EYPU8z5tAoZjF8,7247
|
|
4
|
+
acoular/configuration.py,sha256=kVo0FSaycuUF7eM7wKVZy20ec_SyWc0IQ7EJ2dE92pk,8633
|
|
5
5
|
acoular/deprecation.py,sha256=9KgdNddd5NjmPibPWCQ-VCgCUccpZgo5c6z4nfMEHp8,4005
|
|
6
|
-
acoular/environments.py,sha256=
|
|
6
|
+
acoular/environments.py,sha256=evIoDDkVAe9Mm1KuGLER-IWKsfAczwCqEYaOt44QTiM,36495
|
|
7
7
|
acoular/fastFuncs.py,sha256=COq3IYq2PIOJOsQr5JhU-EcE5qmnpXj1MAhaDWznFNI,37333
|
|
8
|
-
acoular/fbeamform.py,sha256=
|
|
9
|
-
acoular/fprocess.py,sha256=
|
|
10
|
-
acoular/grids.py,sha256
|
|
11
|
-
acoular/h5cache.py,sha256=
|
|
12
|
-
acoular/h5files.py,sha256=
|
|
8
|
+
acoular/fbeamform.py,sha256=NwbUVl7xOY75AeDkPdm8u3dOs9VlPtsa0ZKsQrgjaHY,96399
|
|
9
|
+
acoular/fprocess.py,sha256=Eho6SO0SQV7x-BrcZHoVApDDvkHttY-X8ijga9OxHTI,19667
|
|
10
|
+
acoular/grids.py,sha256=-T5D_wMTQeRAKcYKWrP1CVnByMoo2i5chpUQ16gvFeA,63473
|
|
11
|
+
acoular/h5cache.py,sha256=nmfnLhfKL6PSMk_Z7GzJrbmSRtXVqzhQ7yTLjih_6OY,4499
|
|
12
|
+
acoular/h5files.py,sha256=K30ylkKtna-h7GmGh2P-DHLZaKQnvrFQnrMpk_N_Grw,11513
|
|
13
13
|
acoular/internal.py,sha256=XBXWTc5SbUXdPEoc120O8-xGlGAN6-c2giLU1KdpGb4,1078
|
|
14
|
-
acoular/microphones.py,sha256=
|
|
15
|
-
acoular/process.py,sha256=
|
|
16
|
-
acoular/sdinput.py,sha256=
|
|
17
|
-
acoular/signals.py,sha256=
|
|
18
|
-
acoular/sources.py,sha256
|
|
19
|
-
acoular/spectra.py,sha256=
|
|
20
|
-
acoular/tbeamform.py,sha256=
|
|
14
|
+
acoular/microphones.py,sha256=6WoEe1XoEMlmXZFsmfygvM40VDAFB1_qmF2dqWr5I08,11376
|
|
15
|
+
acoular/process.py,sha256=CYjmpeuEcazPcxPOzQ6Tl3cCmrQK-EPM0DJQ6bddPaQ,39576
|
|
16
|
+
acoular/sdinput.py,sha256=o6vnY0UcA4QMu_KHYhGtov-Il6zYXCHGuDOYlkiKsrg,5034
|
|
17
|
+
acoular/signals.py,sha256=UUtekblfqR-SVMSRpiL2fAmFjj1X2qAS4pJ0ZW-uHCM,24411
|
|
18
|
+
acoular/sources.py,sha256=JGE0ahSBjXI7X1vtJ3mrzb3XU3cHt68enCKgoisVKks,92213
|
|
19
|
+
acoular/spectra.py,sha256=6-3vDBkUpAFyGNb-QLaILXFn5C1_pf0Rwt3QQKzrwXY,28701
|
|
20
|
+
acoular/tbeamform.py,sha256=EMnCZRl8QQxVqiWQq0LGRGUNkvT4GFNQQLJkysEG2bg,31857
|
|
21
21
|
acoular/tfastfuncs.py,sha256=q2ZbDoWmFbGMZw1TT_h-21hn24qGi2of_ZqJVoLMYhc,7901
|
|
22
|
-
acoular/tprocess.py,sha256=
|
|
22
|
+
acoular/tprocess.py,sha256=r_5QEcXNYq8ZNZM5HzC4xujpXnwBFo27Hw1YI_CxcNw,117224
|
|
23
23
|
acoular/traitsviews.py,sha256=D2__nVUNELFbb7X9BrLw-mzRMpCDYdYEseKcX-meQNM,13727
|
|
24
|
-
acoular/trajectory.py,sha256=
|
|
25
|
-
acoular/version.py,sha256=
|
|
24
|
+
acoular/trajectory.py,sha256=XINRFS-BaN0SFu8Nh5wr6hFyBN-aRaaFxFBoTbvi7WM,7902
|
|
25
|
+
acoular/version.py,sha256=hadDy9UFoNWEhN5gsnUuna-lBNucxJrcpXTnipua0kA,387
|
|
26
26
|
acoular/aiaa/__init__.py,sha256=5RhoERGQmLBf6uosr9hYHWy_MruKiyR5x-8cMRX4hT4,420
|
|
27
|
-
acoular/aiaa/aiaa.py,sha256=
|
|
27
|
+
acoular/aiaa/aiaa.py,sha256=Mf9x6wGFSp7yYCGo4vI_qe_O3x2TDEI3fpRRD-ZaGWU,6306
|
|
28
28
|
acoular/demo/__init__.py,sha256=nCi3nEqJP8fmE8kfTIGhNicC5kq_k0ZRgzuRgWbBCwc,481
|
|
29
29
|
acoular/demo/acoular_demo.py,sha256=RPwXQmORB1GasREpQpa-qqmFjGNBpEPMJukQTB0Lk9I,4480
|
|
30
30
|
acoular/tools/__init__.py,sha256=z8RHRQhcmqkUKwD8v3pInpAMN8csPcN5J4Z9QXu_GjQ,511
|
|
31
|
-
acoular/tools/helpers.py,sha256=
|
|
32
|
-
acoular/tools/metrics.py,sha256=
|
|
31
|
+
acoular/tools/helpers.py,sha256=KrAOeZV4kSXOCwHlKvzqE_-lkFuLZGCDq8odZzKXrg4,14165
|
|
32
|
+
acoular/tools/metrics.py,sha256=uD11YT54GcY6WyIy8LnOEiC-rjmGmOOErDLtwjF4eO0,6102
|
|
33
33
|
acoular/tools/utils.py,sha256=GXWM7zU0pRbZV93vdV5eRs_kvhQWp8OiNVmrg5Kx064,3164
|
|
34
34
|
acoular/xml/HW90D240_f10.xml,sha256=WvowIe8aYJaeHSExjwaY9fjpYukLxX6A-H7fD1PW2g8,5127
|
|
35
35
|
acoular/xml/W90_D105_f10.xml,sha256=f8NHPoOYjEnRsstYDa_4E65EBR5m5BVzlg87jpCgckA,5283
|
|
@@ -49,8 +49,8 @@ acoular/xml/gfai_ring32.xml,sha256=liKaGpfgUn8R1psDmiw6qqpZi5SwtPWBRhwhqy7YuOc,1
|
|
|
49
49
|
acoular/xml/minidsp_uma-16.xml,sha256=oBj7J96RTDZufsQ7S4rw0jAvLOoykJaIGgl6_2gMON4,1140
|
|
50
50
|
acoular/xml/minidsp_uma-16_mirrored.xml,sha256=l6LUPIsEVg7HPMbs9NbnqZyFhpCSYS70glsbyH3IUOE,1418
|
|
51
51
|
acoular/xml/tub_vogel64.xml,sha256=PixVMx5hMJjgBOekH46uu6D3ODqYVOLlk82zkYl4EBM,4424
|
|
52
|
-
acoular-25.
|
|
53
|
-
acoular-25.
|
|
54
|
-
acoular-25.
|
|
55
|
-
acoular-25.
|
|
56
|
-
acoular-25.
|
|
52
|
+
acoular-25.10.dist-info/METADATA,sha256=pC_-eeoT-UO9WjWw69qIlxwFufhLXc454VpaIrvydkk,12978
|
|
53
|
+
acoular-25.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
54
|
+
acoular-25.10.dist-info/licenses/AUTHORS.rst,sha256=445q_Us_TnQx8s_GP2yringU2DMTk3-ycrk2REtSsx0,382
|
|
55
|
+
acoular-25.10.dist-info/licenses/LICENSE,sha256=tbw7-nx204gXCo8p-NwwR7w8oKvNMWB4H07FTT6V9p8,1505
|
|
56
|
+
acoular-25.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|