acoular 25.4__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/traitsviews.py CHANGED
@@ -1,9 +1,7 @@
1
1
  # ------------------------------------------------------------------------------
2
2
  # Copyright (c) Acoular Development Team.
3
3
  # ------------------------------------------------------------------------------
4
- """Implements support separate traits_view definitions for all relevant
5
- classes to lift the traitsui requirement for the Acoular package.
6
- """
4
+ """Implements separate traits_view definitions to lift the traitsui requirement for acoular."""
7
5
 
8
6
  # imports from other packages
9
7
  from traitsui.api import Item, View
acoular/trajectory.py CHANGED
@@ -10,7 +10,7 @@
10
10
  """
11
11
 
12
12
  # imports from other packages
13
- from numpy import arange, array, r_, sort
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
@@ -2,7 +2,8 @@
2
2
  # Copyright (c) Acoular Development Team.
3
3
  # ------------------------------------------------------------------------------
4
4
 
5
- # separate file to find out about version without importing the acoular lib
5
+ """Dedicated file to determine the package version without importing acoular."""
6
+
6
7
  __author__ = 'Acoular Development Team'
7
- __date__ = '29 April 2025'
8
- __version__ = '25.04'
8
+ __date__ = '23 October 2025'
9
+ __version__ = '25.10'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: acoular
3
- Version: 25.4
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
@@ -51,7 +51,7 @@ Requires-Python: <3.14,>=3.10
51
51
  Requires-Dist: numba
52
52
  Requires-Dist: numpy
53
53
  Requires-Dist: scikit-learn
54
- Requires-Dist: scipy>=1.1.0
54
+ Requires-Dist: scipy!=1.16.*,>=1.1.0
55
55
  Requires-Dist: tables
56
56
  Requires-Dist: traits>=6.0
57
57
  Provides-Extra: dev
@@ -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
@@ -228,7 +232,7 @@ pm = bb.synthetic( 8000, 3 )
228
232
  # compute the sound pressure level
229
233
  Lm = ac.L_p( pm )
230
234
  # plot the map
231
- plt.imshow( Lm.T, origin='lower', vmin=Lm.max()-10, extent=rg.extend(), \
235
+ plt.imshow( Lm.T, origin='lower', vmin=Lm.max()-10, extent=rg.extent, \
232
236
  interpolation='bicubic')
233
237
  plt.title('Beamformer (base) for 3 sources measured for 8000 Hz')
234
238
  plt.xlabel('x in m')
@@ -238,6 +242,6 @@ plt.savefig('three_sources.png', dpi=300, bbox_inches='tight')
238
242
  plt.show()
239
243
  ```
240
244
 
241
- ![result](https://github.com/acoular/acoular/blob/master/docs/source/get_started/three_source_py3_colormap.png?raw=true)
245
+ ![result](https://github.com/acoular/acoular/blob/master/docs/source/user_guide/three_source_py3_colormap.png?raw=true)
242
246
 
243
247
 
@@ -0,0 +1,56 @@
1
+ acoular/__init__.py,sha256=FzwGAAHTrQbqo_UxXSwydKK8RundiTxMFZgda3hg-RU,3210
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
+ acoular/deprecation.py,sha256=9KgdNddd5NjmPibPWCQ-VCgCUccpZgo5c6z4nfMEHp8,4005
6
+ acoular/environments.py,sha256=evIoDDkVAe9Mm1KuGLER-IWKsfAczwCqEYaOt44QTiM,36495
7
+ acoular/fastFuncs.py,sha256=COq3IYq2PIOJOsQr5JhU-EcE5qmnpXj1MAhaDWznFNI,37333
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
+ acoular/internal.py,sha256=XBXWTc5SbUXdPEoc120O8-xGlGAN6-c2giLU1KdpGb4,1078
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
+ acoular/tfastfuncs.py,sha256=q2ZbDoWmFbGMZw1TT_h-21hn24qGi2of_ZqJVoLMYhc,7901
22
+ acoular/tprocess.py,sha256=r_5QEcXNYq8ZNZM5HzC4xujpXnwBFo27Hw1YI_CxcNw,117224
23
+ acoular/traitsviews.py,sha256=D2__nVUNELFbb7X9BrLw-mzRMpCDYdYEseKcX-meQNM,13727
24
+ acoular/trajectory.py,sha256=XINRFS-BaN0SFu8Nh5wr6hFyBN-aRaaFxFBoTbvi7WM,7902
25
+ acoular/version.py,sha256=hadDy9UFoNWEhN5gsnUuna-lBNucxJrcpXTnipua0kA,387
26
+ acoular/aiaa/__init__.py,sha256=5RhoERGQmLBf6uosr9hYHWy_MruKiyR5x-8cMRX4hT4,420
27
+ acoular/aiaa/aiaa.py,sha256=Mf9x6wGFSp7yYCGo4vI_qe_O3x2TDEI3fpRRD-ZaGWU,6306
28
+ acoular/demo/__init__.py,sha256=nCi3nEqJP8fmE8kfTIGhNicC5kq_k0ZRgzuRgWbBCwc,481
29
+ acoular/demo/acoular_demo.py,sha256=RPwXQmORB1GasREpQpa-qqmFjGNBpEPMJukQTB0Lk9I,4480
30
+ acoular/tools/__init__.py,sha256=z8RHRQhcmqkUKwD8v3pInpAMN8csPcN5J4Z9QXu_GjQ,511
31
+ acoular/tools/helpers.py,sha256=KrAOeZV4kSXOCwHlKvzqE_-lkFuLZGCDq8odZzKXrg4,14165
32
+ acoular/tools/metrics.py,sha256=uD11YT54GcY6WyIy8LnOEiC-rjmGmOOErDLtwjF4eO0,6102
33
+ acoular/tools/utils.py,sha256=GXWM7zU0pRbZV93vdV5eRs_kvhQWp8OiNVmrg5Kx064,3164
34
+ acoular/xml/HW90D240_f10.xml,sha256=WvowIe8aYJaeHSExjwaY9fjpYukLxX6A-H7fD1PW2g8,5127
35
+ acoular/xml/W90_D105_f10.xml,sha256=f8NHPoOYjEnRsstYDa_4E65EBR5m5BVzlg87jpCgckA,5283
36
+ acoular/xml/acousticam_2c.xml,sha256=xcVlKQhGbRqMQHLKuTAyXTt3SM3aLZEAfGqbuFaWx4k,1993
37
+ acoular/xml/acousticam_4c.xml,sha256=P8wAP5_GT0HS40VV3f7_88xQXwTLN1YRxI7MudnwIqw,1949
38
+ acoular/xml/array38.xml,sha256=FrbC-1yVHNfWTamEJPiJhhdPtVYVfGbPXJ3TLljBKx0,2363
39
+ acoular/xml/array92x.xml,sha256=65Wf2xbA6Dt_k98C3q4MfTtwPzceT8B2vKvK77hO9Yc,5874
40
+ acoular/xml/array_56.xml,sha256=qe8CAcRP7-3MLpPn919XKHB8hMb9G5JUPFzP1qOA4IM,3428
41
+ acoular/xml/array_56_10_9.xml,sha256=2G-KZSwvAtIuxyC6JKW2Hv2IWXVFd4Sux1tLxizJ5Z4,4432
42
+ acoular/xml/array_56_bomb.xml,sha256=tAdhLzvUrhMh7DMrbXU7skAEAlCvQ6GLbJXAU7Z2JxE,4193
43
+ acoular/xml/array_56_v2.xml,sha256=x4OTI77Fttfaqu-Kl7uWmslg8rZAuw2Y-RUa21MqzXk,3458
44
+ acoular/xml/array_64.xml,sha256=1ZHuQEHhFhz9EhBcNbXkVT-9tnAr6T9cHH5Xb1gHL7Y,4039
45
+ acoular/xml/array_84_10_9.xml,sha256=jzvMYZlQqo8y6jt3yllGOL7vk8bxMVpISexkZL0uquA,6558
46
+ acoular/xml/array_84_bomb_v3.xml,sha256=Mv8nvqSOUezrdIjrCHZt4gZpJ-Z3BzF2wIYPawHZjlA,6248
47
+ acoular/xml/calib_vw_ring32.xml,sha256=9chpz0O3e__oIs4ZuJTvUJNIuawjDqEnkdRbfyUBBxU,1341
48
+ acoular/xml/gfai_ring32.xml,sha256=liKaGpfgUn8R1psDmiw6qqpZi5SwtPWBRhwhqy7YuOc,1831
49
+ acoular/xml/minidsp_uma-16.xml,sha256=oBj7J96RTDZufsQ7S4rw0jAvLOoykJaIGgl6_2gMON4,1140
50
+ acoular/xml/minidsp_uma-16_mirrored.xml,sha256=l6LUPIsEVg7HPMbs9NbnqZyFhpCSYS70glsbyH3IUOE,1418
51
+ acoular/xml/tub_vogel64.xml,sha256=PixVMx5hMJjgBOekH46uu6D3ODqYVOLlk82zkYl4EBM,4424
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,,
@@ -1,56 +0,0 @@
1
- acoular/__init__.py,sha256=mbNHGVcWp6aSs9dZ22rEJGX11Kw4S8Mr_CELLsfOBNU,3284
2
- acoular/base.py,sha256=gqFsfgSG1YrS-BAmV44ao6ckXo7v5B2VMX86QH3QowE,10717
3
- acoular/calib.py,sha256=_KX3IgrIA5qqj-fUU1bijHMT_MkAVDGblvLBEslcG5M,7153
4
- acoular/configuration.py,sha256=QQU5HWjXEDMuMU3LEoaDnDszhqeJzCGhZ5oGbsW2qFY,8630
5
- acoular/deprecation.py,sha256=Kl28jlHAhlbse84znSXIWGckgXl1qHZtzrZG7Og6sXY,3873
6
- acoular/environments.py,sha256=dbOeaMGD1U76bFgNDbpFwg3HLpUAgtM6nAjPVXFxijw,36014
7
- acoular/fastFuncs.py,sha256=6Iqm-xy2T7qBaYpdpgUquup6JkAwdURhSXfAEkgqVOs,37362
8
- acoular/fbeamform.py,sha256=Cs5Zs_QbYHcFh4xo6nbhBCT8urpKP4mv2Nj7TnSgGto,99147
9
- acoular/fprocess.py,sha256=NK3Nt2jD0Dvq5kPLWvodFRGKd9oIpk6Rgy_U48R49Yg,20706
10
- acoular/grids.py,sha256=ND5k5ufymoBV1NqOtcO6o6V27m86shjakHb5PTnPi6c,58994
11
- acoular/h5cache.py,sha256=tHCJjHs26ZnRtPO6uj9PqJ2xMEEJup-A8FoiiojkkLw,4166
12
- acoular/h5files.py,sha256=RKMBfbFX8d_d4JEnyMyHQQjN74EhW6W4CE-drmDZakY,7553
13
- acoular/internal.py,sha256=qgluN_4Br7U74keTiavbmxRMkcNkoHcL1TihKTcMEBs,829
14
- acoular/microphones.py,sha256=GpOZmL309B1gp4HAZg_5XEn_1qvNQOaHyjAxfvY8kW4,10615
15
- acoular/process.py,sha256=86wfR87RsSpYqa7ZmC4FtmEmp4zPDL0ICq8QdiTYLeI,41043
16
- acoular/sdinput.py,sha256=93uQaO5Zt2DV83iyeoFMaPXww1rp0PP4HB6M-C2FDak,5109
17
- acoular/signals.py,sha256=ue_KtTbrcMUzX_aUM8pqhm3jviNGeh32Nk-wXrCVw_g,24416
18
- acoular/sources.py,sha256=tejGp9EWH12q4XCFg26g6KI1YKnTDTqyTRCc9gyEoNs,97238
19
- acoular/spectra.py,sha256=rbafre2kUraqTp3Ych4ZhIjm_I1z8FI7YbskVMNZptM,28828
20
- acoular/tbeamform.py,sha256=-CAvutAY4VK4cILq1GOu7oTjwNh_R0gjVCLjLmM-5U0,30857
21
- acoular/tfastfuncs.py,sha256=q2ZbDoWmFbGMZw1TT_h-21hn24qGi2of_ZqJVoLMYhc,7901
22
- acoular/tprocess.py,sha256=PYxqIx0An0TaddS1dPspMtl3rlPv1DDde9XHx4hWqm0,77509
23
- acoular/traitsviews.py,sha256=VO-i509WAMQG7KuJatlCWeexZeTAFEjmjbNDkGSfzX4,13773
24
- acoular/trajectory.py,sha256=cOawITHARdcsBwpHfBleosltDwU-31xtOlZ7clrcbvA,7910
25
- acoular/version.py,sha256=r5l9Vml56nU6X7p_vxMnporsFoUjaJmhRKMPRW0NDiw,378
26
- acoular/aiaa/__init__.py,sha256=5RhoERGQmLBf6uosr9hYHWy_MruKiyR5x-8cMRX4hT4,420
27
- acoular/aiaa/aiaa.py,sha256=KITWrOWEMf73Cg1IrEqJUuGwIY6IvADnZtpCYs2rGhQ,6362
28
- acoular/demo/__init__.py,sha256=fxf0-D7Pxepi0bmxPwCj3Yo-vgCC37faTLlPaotMkB0,380
29
- acoular/demo/acoular_demo.py,sha256=HDANP1vA5OXBkuolpCeWRt8hr_jFKnu_sQRbCtbApPo,3513
30
- acoular/tools/__init__.py,sha256=z8RHRQhcmqkUKwD8v3pInpAMN8csPcN5J4Z9QXu_GjQ,511
31
- acoular/tools/helpers.py,sha256=L9Bi6WmGBiyF_Xz5L5wtIgk0tobd4FX8gG6mfGA8z2k,13468
32
- acoular/tools/metrics.py,sha256=y6TsavywfnuMScBcFxIrcKcDuC55WfIGkNFnCuuuj3Y,6136
33
- acoular/tools/utils.py,sha256=GXWM7zU0pRbZV93vdV5eRs_kvhQWp8OiNVmrg5Kx064,3164
34
- acoular/xml/HW90D240_f10.xml,sha256=WvowIe8aYJaeHSExjwaY9fjpYukLxX6A-H7fD1PW2g8,5127
35
- acoular/xml/W90_D105_f10.xml,sha256=f8NHPoOYjEnRsstYDa_4E65EBR5m5BVzlg87jpCgckA,5283
36
- acoular/xml/acousticam_2c.xml,sha256=xcVlKQhGbRqMQHLKuTAyXTt3SM3aLZEAfGqbuFaWx4k,1993
37
- acoular/xml/acousticam_4c.xml,sha256=P8wAP5_GT0HS40VV3f7_88xQXwTLN1YRxI7MudnwIqw,1949
38
- acoular/xml/array38.xml,sha256=FrbC-1yVHNfWTamEJPiJhhdPtVYVfGbPXJ3TLljBKx0,2363
39
- acoular/xml/array92x.xml,sha256=65Wf2xbA6Dt_k98C3q4MfTtwPzceT8B2vKvK77hO9Yc,5874
40
- acoular/xml/array_56.xml,sha256=qe8CAcRP7-3MLpPn919XKHB8hMb9G5JUPFzP1qOA4IM,3428
41
- acoular/xml/array_56_10_9.xml,sha256=2G-KZSwvAtIuxyC6JKW2Hv2IWXVFd4Sux1tLxizJ5Z4,4432
42
- acoular/xml/array_56_bomb.xml,sha256=tAdhLzvUrhMh7DMrbXU7skAEAlCvQ6GLbJXAU7Z2JxE,4193
43
- acoular/xml/array_56_v2.xml,sha256=x4OTI77Fttfaqu-Kl7uWmslg8rZAuw2Y-RUa21MqzXk,3458
44
- acoular/xml/array_64.xml,sha256=1ZHuQEHhFhz9EhBcNbXkVT-9tnAr6T9cHH5Xb1gHL7Y,4039
45
- acoular/xml/array_84_10_9.xml,sha256=jzvMYZlQqo8y6jt3yllGOL7vk8bxMVpISexkZL0uquA,6558
46
- acoular/xml/array_84_bomb_v3.xml,sha256=Mv8nvqSOUezrdIjrCHZt4gZpJ-Z3BzF2wIYPawHZjlA,6248
47
- acoular/xml/calib_vw_ring32.xml,sha256=9chpz0O3e__oIs4ZuJTvUJNIuawjDqEnkdRbfyUBBxU,1341
48
- acoular/xml/gfai_ring32.xml,sha256=liKaGpfgUn8R1psDmiw6qqpZi5SwtPWBRhwhqy7YuOc,1831
49
- acoular/xml/minidsp_uma-16.xml,sha256=oBj7J96RTDZufsQ7S4rw0jAvLOoykJaIGgl6_2gMON4,1140
50
- acoular/xml/minidsp_uma-16_mirrored.xml,sha256=l6LUPIsEVg7HPMbs9NbnqZyFhpCSYS70glsbyH3IUOE,1418
51
- acoular/xml/tub_vogel64.xml,sha256=PixVMx5hMJjgBOekH46uu6D3ODqYVOLlk82zkYl4EBM,4424
52
- acoular-25.4.dist-info/METADATA,sha256=khc4VZbdV7etQxRSzLTYrXEgVAIws7wqhmPe6G04wzA,12769
53
- acoular-25.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
54
- acoular-25.4.dist-info/licenses/AUTHORS.rst,sha256=445q_Us_TnQx8s_GP2yringU2DMTk3-ycrk2REtSsx0,382
55
- acoular-25.4.dist-info/licenses/LICENSE,sha256=tbw7-nx204gXCo8p-NwwR7w8oKvNMWB4H07FTT6V9p8,1505
56
- acoular-25.4.dist-info/RECORD,,