acoular 24.7__py3-none-any.whl → 24.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/__init__.py +17 -8
- acoular/base.py +312 -0
- acoular/configuration.py +3 -3
- acoular/demo/acoular_demo.py +1 -1
- acoular/environments.py +7 -5
- acoular/fbeamform.py +221 -58
- acoular/fprocess.py +368 -0
- acoular/grids.py +31 -17
- acoular/process.py +464 -0
- acoular/sdinput.py +14 -3
- acoular/signals.py +6 -6
- acoular/sources.py +20 -7
- acoular/spectra.py +29 -48
- acoular/tbeamform.py +264 -141
- acoular/tools/__init__.py +2 -0
- acoular/tools/aiaa.py +3 -3
- acoular/tools/helpers.py +2 -2
- acoular/tools/metrics.py +1 -1
- acoular/tools/utils.py +210 -0
- acoular/tprocess.py +89 -453
- acoular/traitsviews.py +5 -3
- acoular/version.py +2 -2
- {acoular-24.7.dist-info → acoular-24.10.dist-info}/METADATA +28 -7
- {acoular-24.7.dist-info → acoular-24.10.dist-info}/RECORD +27 -23
- {acoular-24.7.dist-info → acoular-24.10.dist-info}/WHEEL +0 -0
- {acoular-24.7.dist-info → acoular-24.10.dist-info}/licenses/AUTHORS.rst +0 -0
- {acoular-24.7.dist-info → acoular-24.10.dist-info}/licenses/LICENSE +0 -0
acoular/traitsviews.py
CHANGED
|
@@ -9,6 +9,7 @@ classes to lift the traitsui requirement for the Acoular package.
|
|
|
9
9
|
from traitsui.api import Item, View
|
|
10
10
|
from traitsui.menu import OKCancelButtons
|
|
11
11
|
|
|
12
|
+
from .base import TimeOut
|
|
12
13
|
from .calib import Calib
|
|
13
14
|
from .environments import GeneralFlowEnvironment, OpenJet, RotatingFlow, SlotJet, UniformFlowEnvironment
|
|
14
15
|
from .fbeamform import (
|
|
@@ -27,10 +28,11 @@ from .fbeamform import (
|
|
|
27
28
|
)
|
|
28
29
|
from .grids import RectGrid, RectGrid3D
|
|
29
30
|
from .microphones import MicGeom
|
|
31
|
+
from .process import Average
|
|
30
32
|
from .sources import MaskedTimeSamples, SourceMixer, TimeSamples
|
|
31
33
|
from .spectra import PowerSpectra
|
|
32
34
|
from .tbeamform import BeamformerTime, BeamformerTimeSq, BeamformerTimeSqTraj, BeamformerTimeTraj, IntegratorSectorTime
|
|
33
|
-
from .tprocess import FiltFiltOctave,
|
|
35
|
+
from .tprocess import FiltFiltOctave, WriteH5, WriteWAV
|
|
34
36
|
from .trajectory import Trajectory
|
|
35
37
|
|
|
36
38
|
MicGeom.class_trait_view(
|
|
@@ -236,14 +238,14 @@ RotatingFlow.class_trait_view(
|
|
|
236
238
|
),
|
|
237
239
|
)
|
|
238
240
|
|
|
239
|
-
|
|
241
|
+
TimeOut.class_trait_view(
|
|
240
242
|
'traits_view',
|
|
241
243
|
View(
|
|
242
244
|
Item('source', style='custom'),
|
|
243
245
|
),
|
|
244
246
|
)
|
|
245
247
|
|
|
246
|
-
|
|
248
|
+
Average.class_trait_view(
|
|
247
249
|
'traits_view',
|
|
248
250
|
View(
|
|
249
251
|
[
|
acoular/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: acoular
|
|
3
|
-
Version: 24.
|
|
3
|
+
Version: 24.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
|
|
@@ -42,21 +42,20 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
42
42
|
Classifier: Intended Audience :: Education
|
|
43
43
|
Classifier: Intended Audience :: Science/Research
|
|
44
44
|
Classifier: License :: OSI Approved :: BSD License
|
|
45
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
46
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
47
45
|
Classifier: Programming Language :: Python :: 3.10
|
|
48
46
|
Classifier: Programming Language :: Python :: 3.11
|
|
49
47
|
Classifier: Programming Language :: Python :: 3.12
|
|
50
48
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
51
|
-
Requires-Python: <=12,>=3.
|
|
49
|
+
Requires-Python: <=12,>=3.10
|
|
52
50
|
Requires-Dist: numba
|
|
53
|
-
Requires-Dist: numpy
|
|
51
|
+
Requires-Dist: numpy
|
|
54
52
|
Requires-Dist: scikit-learn
|
|
55
53
|
Requires-Dist: scipy>=1.1.0
|
|
56
|
-
Requires-Dist: tables
|
|
54
|
+
Requires-Dist: tables
|
|
57
55
|
Requires-Dist: traits>=6.0
|
|
58
56
|
Provides-Extra: dev
|
|
59
57
|
Requires-Dist: graphviz; extra == 'dev'
|
|
58
|
+
Requires-Dist: h5py; extra == 'dev'
|
|
60
59
|
Requires-Dist: hatch; extra == 'dev'
|
|
61
60
|
Requires-Dist: ipython; extra == 'dev'
|
|
62
61
|
Requires-Dist: matplotlib; extra == 'dev'
|
|
@@ -64,15 +63,37 @@ Requires-Dist: numpydoc; extra == 'dev'
|
|
|
64
63
|
Requires-Dist: pickleshare; extra == 'dev'
|
|
65
64
|
Requires-Dist: pylops; extra == 'dev'
|
|
66
65
|
Requires-Dist: pytest; extra == 'dev'
|
|
66
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
|
67
|
+
Requires-Dist: pyyaml; extra == 'dev'
|
|
67
68
|
Requires-Dist: ruff==0.4.1; extra == 'dev'
|
|
69
|
+
Requires-Dist: setuptools; extra == 'dev'
|
|
68
70
|
Requires-Dist: sounddevice; extra == 'dev'
|
|
69
71
|
Requires-Dist: sphinx; extra == 'dev'
|
|
70
72
|
Requires-Dist: sphinx-gallery; extra == 'dev'
|
|
73
|
+
Requires-Dist: sphinxcontrib-bibtex; extra == 'dev'
|
|
71
74
|
Requires-Dist: traitsui; extra == 'dev'
|
|
75
|
+
Provides-Extra: docs
|
|
76
|
+
Requires-Dist: graphviz; extra == 'docs'
|
|
77
|
+
Requires-Dist: ipython; extra == 'docs'
|
|
78
|
+
Requires-Dist: matplotlib; extra == 'docs'
|
|
79
|
+
Requires-Dist: numpydoc; extra == 'docs'
|
|
80
|
+
Requires-Dist: pickleshare; extra == 'docs'
|
|
81
|
+
Requires-Dist: setuptools; extra == 'docs'
|
|
82
|
+
Requires-Dist: sounddevice; extra == 'docs'
|
|
83
|
+
Requires-Dist: sphinx; extra == 'docs'
|
|
84
|
+
Requires-Dist: sphinx-gallery; extra == 'docs'
|
|
85
|
+
Requires-Dist: sphinxcontrib-bibtex; extra == 'docs'
|
|
72
86
|
Provides-Extra: full
|
|
73
87
|
Requires-Dist: matplotlib; extra == 'full'
|
|
74
88
|
Requires-Dist: pylops; extra == 'full'
|
|
75
89
|
Requires-Dist: sounddevice; extra == 'full'
|
|
90
|
+
Provides-Extra: tests
|
|
91
|
+
Requires-Dist: h5py; extra == 'tests'
|
|
92
|
+
Requires-Dist: pytest; extra == 'tests'
|
|
93
|
+
Requires-Dist: pytest-cov; extra == 'tests'
|
|
94
|
+
Requires-Dist: pyyaml; extra == 'tests'
|
|
95
|
+
Requires-Dist: sounddevice; extra == 'tests'
|
|
96
|
+
Requires-Dist: traitsui; extra == 'tests'
|
|
76
97
|
Description-Content-Type: text/markdown
|
|
77
98
|
|
|
78
99
|

|
|
@@ -175,7 +196,7 @@ mg = acoular.MicGeom( from_file=micgeofile )
|
|
|
175
196
|
# set up object managing the microphone array data (usually from measurement)
|
|
176
197
|
ts = acoular.TimeSamples( name='three_sources.h5' )
|
|
177
198
|
# set up object managing the cross spectral matrix computation
|
|
178
|
-
ps = acoular.PowerSpectra(
|
|
199
|
+
ps = acoular.PowerSpectra( source=ts, block_size=128, window='Hanning' )
|
|
179
200
|
# set up object managing the mapping grid
|
|
180
201
|
rg = acoular.RectGrid( x_min=-0.2, x_max=0.2, y_min=-0.2, y_max=0.2, z=0.3, \
|
|
181
202
|
increment=0.01 )
|
|
@@ -1,30 +1,34 @@
|
|
|
1
|
-
acoular/__init__.py,sha256=
|
|
1
|
+
acoular/__init__.py,sha256=Y-bkeQCE1Jo9he1Ps61a7lH43uXXleOz-RJLVQOQPaU,3200
|
|
2
|
+
acoular/base.py,sha256=qIY6oOyuwX41vXZlxZjR4TlM2huwxxtTEI1SxFuXLxE,10078
|
|
2
3
|
acoular/calib.py,sha256=7hyas42kn33qvvO4Is2nxkyQEnL8MTo6mIq1VZ56vOQ,2509
|
|
3
|
-
acoular/configuration.py,sha256=
|
|
4
|
-
acoular/environments.py,sha256=
|
|
4
|
+
acoular/configuration.py,sha256=vRjyibxKjhm3n8jjY3Cl3WF2vV0GpyYp8F5SxtV9ngQ,8516
|
|
5
|
+
acoular/environments.py,sha256=Ps8EAP1Fveb6r40XCnILeWVSX6Z572VUoc4xW509KOk,22441
|
|
5
6
|
acoular/fastFuncs.py,sha256=UHIVLsog5U4urV5h8_0Sh5xT8no7guE4Q6amRRZiib0,38863
|
|
6
|
-
acoular/fbeamform.py,sha256=
|
|
7
|
-
acoular/
|
|
7
|
+
acoular/fbeamform.py,sha256=lw1vPW-pAjF-SS0628SYif75uyuudooF1QLpS3b-AYA,106870
|
|
8
|
+
acoular/fprocess.py,sha256=D_vDLNZXeCvJULry2ixeqa_SzsHCkTKOlhD5_SSzIWo,14394
|
|
9
|
+
acoular/grids.py,sha256=DFY4bSwgmB0tduwzeLPccVC2RXrhlflV19kHr1JswD8,41113
|
|
8
10
|
acoular/h5cache.py,sha256=87OU9sVw96j5Hvj5Xtk21_k2PoqG5e3yl8FruqJqPPQ,4214
|
|
9
11
|
acoular/h5files.py,sha256=YlnHOAr3ePOs6-AJcN_eNun0XBws-cSNGCj3U2jhJP0,7653
|
|
10
12
|
acoular/internal.py,sha256=qgluN_4Br7U74keTiavbmxRMkcNkoHcL1TihKTcMEBs,829
|
|
11
13
|
acoular/microphones.py,sha256=Pn4pKZtr82LRE3TkBfLyWQZnnLyppIVhoqJjhiHhdOk,5113
|
|
12
|
-
acoular/
|
|
13
|
-
acoular/
|
|
14
|
-
acoular/
|
|
15
|
-
acoular/
|
|
16
|
-
acoular/
|
|
14
|
+
acoular/process.py,sha256=QDAtuNbg_tSnKCb3LqRBsG8pI5aQI17KPKlces_NR-w,17598
|
|
15
|
+
acoular/sdinput.py,sha256=23Gek414D0Oyd4YpMyPU-AEn9kuTnL7koSAdVO-WeqI,4919
|
|
16
|
+
acoular/signals.py,sha256=VQHH02cI0wWOEM2SuHdMuGnymcuTKD7RX5aP0vdj9m4,11942
|
|
17
|
+
acoular/sources.py,sha256=_gEwlZEihK_k0jM8JikG_PuUPPnxOxCta6gpdfDELAM,56369
|
|
18
|
+
acoular/spectra.py,sha256=8feistmN0w0R1Lyy2i7cxdTWebCrYGiFDBVixH7Czf4,27669
|
|
19
|
+
acoular/tbeamform.py,sha256=248tlFOJ81ycT-ree-c9ls4FfRJKs_TUtg33cyXo3gE,35559
|
|
17
20
|
acoular/tfastfuncs.py,sha256=YtLvz-WAW9SY9zNLYBzkLTj8da9ibCsjPOGWe9ZLFEg,7880
|
|
18
|
-
acoular/tprocess.py,sha256=
|
|
19
|
-
acoular/traitsviews.py,sha256=
|
|
21
|
+
acoular/tprocess.py,sha256=pwosxIYq-rdnP7Y03cu_f9BifUXlY60O32jCGujB-Ck,76011
|
|
22
|
+
acoular/traitsviews.py,sha256=g0dLZII3WThAitI1cNMz_gtPorC6e3qwjzvAEhER-m4,13766
|
|
20
23
|
acoular/trajectory.py,sha256=I3Ve08IlritHcG7iOBt-jjjRY7bCGWwOjTwD4rorTi8,3964
|
|
21
|
-
acoular/version.py,sha256=
|
|
24
|
+
acoular/version.py,sha256=fgoZRTXp0NwB1POzd5Nj4EiKbhE1X-5sYLK_3l12SBs,380
|
|
22
25
|
acoular/demo/__init__.py,sha256=ejn5L3j0M3BwsaxQNSAAFdBNU1kr0LpVFxtONtj9dP8,332
|
|
23
|
-
acoular/demo/acoular_demo.py,sha256=
|
|
24
|
-
acoular/tools/__init__.py,sha256
|
|
25
|
-
acoular/tools/aiaa.py,sha256=
|
|
26
|
-
acoular/tools/helpers.py,sha256=
|
|
27
|
-
acoular/tools/metrics.py,sha256=
|
|
26
|
+
acoular/demo/acoular_demo.py,sha256=BWNZdwIEUFs9VdXe4eTOL4doNqgx7FPuPs0qlJwVkOA,3273
|
|
27
|
+
acoular/tools/__init__.py,sha256=-SQy1ZhFVZ36tn4rkCARwS71Ko2D5Pp4EBElgEXckZg,618
|
|
28
|
+
acoular/tools/aiaa.py,sha256=3pSZkjkkPpGEKUfuU6IUA3-bb4jFy83mR6bJDSONVmw,6447
|
|
29
|
+
acoular/tools/helpers.py,sha256=ySgeIiIOA-TTmcjtbqe6zjI-ZJjC8E9N_uiBddIEXRo,6284
|
|
30
|
+
acoular/tools/metrics.py,sha256=gyceQywoL7fNo-XdZwGSz3z0x_Pze5720egP2QYkn3s,6140
|
|
31
|
+
acoular/tools/utils.py,sha256=hWNWdUYfS_YC0hkXm2v6g9sUWQYT5devdMBmI9iEiRs,7677
|
|
28
32
|
acoular/xml/HW90D240_f10.xml,sha256=WvowIe8aYJaeHSExjwaY9fjpYukLxX6A-H7fD1PW2g8,5127
|
|
29
33
|
acoular/xml/W90_D105_f10.xml,sha256=f8NHPoOYjEnRsstYDa_4E65EBR5m5BVzlg87jpCgckA,5283
|
|
30
34
|
acoular/xml/acousticam_2c.xml,sha256=xcVlKQhGbRqMQHLKuTAyXTt3SM3aLZEAfGqbuFaWx4k,1993
|
|
@@ -43,8 +47,8 @@ acoular/xml/gfai_ring32.xml,sha256=liKaGpfgUn8R1psDmiw6qqpZi5SwtPWBRhwhqy7YuOc,1
|
|
|
43
47
|
acoular/xml/minidsp_uma-16.xml,sha256=oBj7J96RTDZufsQ7S4rw0jAvLOoykJaIGgl6_2gMON4,1140
|
|
44
48
|
acoular/xml/minidsp_uma-16_mirrored.xml,sha256=l6LUPIsEVg7HPMbs9NbnqZyFhpCSYS70glsbyH3IUOE,1418
|
|
45
49
|
acoular/xml/tub_vogel64.xml,sha256=PixVMx5hMJjgBOekH46uu6D3ODqYVOLlk82zkYl4EBM,4424
|
|
46
|
-
acoular-24.
|
|
47
|
-
acoular-24.
|
|
48
|
-
acoular-24.
|
|
49
|
-
acoular-24.
|
|
50
|
-
acoular-24.
|
|
50
|
+
acoular-24.10.dist-info/METADATA,sha256=-jhuw-l14NoGYtmYEuv6s7mHNsUAIpPCCFjOb0C56OM,11821
|
|
51
|
+
acoular-24.10.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
52
|
+
acoular-24.10.dist-info/licenses/AUTHORS.rst,sha256=445q_Us_TnQx8s_GP2yringU2DMTk3-ycrk2REtSsx0,382
|
|
53
|
+
acoular-24.10.dist-info/licenses/LICENSE,sha256=tbw7-nx204gXCo8p-NwwR7w8oKvNMWB4H07FTT6V9p8,1505
|
|
54
|
+
acoular-24.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|