AOT-biomaps 2.9.380__py3-none-any.whl → 2.9.382__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.
- AOT_biomaps/AOT_Acoustic/StructuredWave.py +0 -1
- AOT_biomaps/AOT_Acoustic/_mainAcoustic.py +4 -4
- AOT_biomaps/__init__.py +3 -1
- {aot_biomaps-2.9.380.dist-info → aot_biomaps-2.9.382.dist-info}/METADATA +1 -1
- {aot_biomaps-2.9.380.dist-info → aot_biomaps-2.9.382.dist-info}/RECORD +7 -7
- {aot_biomaps-2.9.380.dist-info → aot_biomaps-2.9.382.dist-info}/WHEEL +0 -0
- {aot_biomaps-2.9.380.dist-info → aot_biomaps-2.9.382.dist-info}/top_level.txt +0 -0
|
@@ -242,10 +242,10 @@ class AcousticField(ABC):
|
|
|
242
242
|
field = self._generate_acoustic_field_KWAVE_2D(isGpu, show_log)
|
|
243
243
|
except Exception as e:
|
|
244
244
|
raise RuntimeError(f"Failed to generate 2D acoustic field: {e}")
|
|
245
|
-
self.field =
|
|
245
|
+
self.field = calculate_envelope_squared(field)
|
|
246
246
|
elif self.params["dim"] == Dim.D3.value:
|
|
247
247
|
field = self._generate_acoustic_field_KWAVE_3D(isGpu, show_log)
|
|
248
|
-
self.field =
|
|
248
|
+
self.field = calculate_envelope_squared(field)
|
|
249
249
|
elif self.params['typeSim'] == TypeSim.HYDRO.value:
|
|
250
250
|
raise ValueError("Cannot generate field for Hydrophone simulation, load exciting acquisitions.")
|
|
251
251
|
else:
|
|
@@ -536,8 +536,7 @@ class AcousticField(ABC):
|
|
|
536
536
|
|
|
537
537
|
Nx_final = int(round((self.params['Xrange'][1] - self.params['Xrange'][0]) / self.params['dx']))
|
|
538
538
|
Nz_final = int(round((self.params['Zrange'][1] - self.params['Zrange'][0]) / self.params['dx']))
|
|
539
|
-
# --- 2.
|
|
540
|
-
factorT = int(np.ceil(self.params['f_AQ'] / self.params['f_saving']))
|
|
539
|
+
# --- 2. space factors ---
|
|
541
540
|
factorX = int(np.ceil(self.params['dx'] / dx))
|
|
542
541
|
factorZ = factorX
|
|
543
542
|
|
|
@@ -565,6 +564,7 @@ class AcousticField(ABC):
|
|
|
565
564
|
dt = cfl * dx / c_max
|
|
566
565
|
kgrid.setTime(self.kgrid.Nt, dt)
|
|
567
566
|
|
|
567
|
+
factorT = int(np.ceil((1/dt) / (self.params['f_saving'])))
|
|
568
568
|
|
|
569
569
|
source = kSource()
|
|
570
570
|
source.p_mask = np.zeros((Nx, Nz))
|
AOT_biomaps/__init__.py
CHANGED
|
@@ -85,7 +85,7 @@ from .AOT_Recon.AOT_PotentialFunctions.RelativeDifferences import *
|
|
|
85
85
|
from .Config import config
|
|
86
86
|
from .Settings import *
|
|
87
87
|
|
|
88
|
-
__version__ = '2.9.
|
|
88
|
+
__version__ = '2.9.382'
|
|
89
89
|
__process__ = config.get_process()
|
|
90
90
|
|
|
91
91
|
def initialize(process=None):
|
|
@@ -241,6 +241,8 @@ def initialize(process=None):
|
|
|
241
241
|
|
|
242
242
|
|
|
243
243
|
|
|
244
|
+
|
|
245
|
+
|
|
244
246
|
|
|
245
247
|
|
|
246
248
|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
AOT_biomaps/Config.py,sha256=ghEOP1n8aO1pR-su13wMeAZAxZRfry5hH67NbtZ8SqI,3614
|
|
2
2
|
AOT_biomaps/Settings.py,sha256=v8fPhnvvcfBJP29m1RLOTEr3jndGLGwbUiORXmsj2Bo,2853
|
|
3
|
-
AOT_biomaps/__init__.py,sha256=
|
|
3
|
+
AOT_biomaps/__init__.py,sha256=XsJVtG_H-Q-IsVaWnuVZo39_ZKmNHO4bK_k3a_5f23g,4426
|
|
4
4
|
AOT_biomaps/AOT_Acoustic/AcousticEnums.py,sha256=s5kXa6jKzbS4btwbubrVcynLOr0yg5tth5vL_FGfbMk,1802
|
|
5
5
|
AOT_biomaps/AOT_Acoustic/AcousticTools.py,sha256=7kuWIIGyzZPQrzRI0zVvdwNUp7qKUE67yCYOMzSb0Ug,8283
|
|
6
6
|
AOT_biomaps/AOT_Acoustic/FocusedWave.py,sha256=3kGKKDx_3Msy5COYqIwzROPORGWvNjw8UsDanBfkMXE,11037
|
|
7
7
|
AOT_biomaps/AOT_Acoustic/IrregularWave.py,sha256=yZhtxkR6zlciRcEpdTR0BAhvgQl40XHKFaF8f4VXarE,3035
|
|
8
8
|
AOT_biomaps/AOT_Acoustic/PlaneWave.py,sha256=xza-rj5AUWDecLkGDxRcULrwZVWeBvGnEP2d51TyR04,1447
|
|
9
|
-
AOT_biomaps/AOT_Acoustic/StructuredWave.py,sha256=
|
|
9
|
+
AOT_biomaps/AOT_Acoustic/StructuredWave.py,sha256=GPh_mD6TUVolKa32tu6juPxvmzgLB7eXBfuXO-8ZhEg,21243
|
|
10
10
|
AOT_biomaps/AOT_Acoustic/__init__.py,sha256=t9M2rRqa_L9pk7W2FeELTkHEMuP4DBr4gBRldMqsQbg,491
|
|
11
|
-
AOT_biomaps/AOT_Acoustic/_mainAcoustic.py,sha256=
|
|
11
|
+
AOT_biomaps/AOT_Acoustic/_mainAcoustic.py,sha256=ZP6jD03-3huddXMICP2Fj6Y_AVqbYjn2VWpX6jtBT-Q,47566
|
|
12
12
|
AOT_biomaps/AOT_Experiment/ExperimentTools.py,sha256=aFvJw6J_jfFVTDFnG7J3a61SHEgORdZKZS0UI82VMaY,2637
|
|
13
13
|
AOT_biomaps/AOT_Experiment/Focus.py,sha256=B2nBawmv-NG2AWJx9zgQ8GlN6aFB9FwTSqX-M-phKXg,3193
|
|
14
14
|
AOT_biomaps/AOT_Experiment/Tomography.py,sha256=9mJDwV9WVphoX8drL7MgN3WhS6fjYwS6HWQD3x1CrVs,37625
|
|
@@ -42,7 +42,7 @@ AOT_biomaps/AOT_Recon/AOT_PotentialFunctions/__init__.py,sha256=RwrJdLOFbAFBFnRx
|
|
|
42
42
|
AOT_biomaps/AOT_Recon/AOT_SparseSMatrix/SparseSMatrix_CSR.py,sha256=RACc2P5oxmp0uPLAGnNj9mEtAxa_OlepNgCawKij3jI,12062
|
|
43
43
|
AOT_biomaps/AOT_Recon/AOT_SparseSMatrix/SparseSMatrix_SELL.py,sha256=ti3dZQsb_Uu62C7Bn65Z-yf-R5NKCFsmnBT5GlLd_HY,15138
|
|
44
44
|
AOT_biomaps/AOT_Recon/AOT_SparseSMatrix/__init__.py,sha256=8nou-hqjQjuCTLhoL5qv4EM_lMPFviAZAZKSPhi84jE,67
|
|
45
|
-
aot_biomaps-2.9.
|
|
46
|
-
aot_biomaps-2.9.
|
|
47
|
-
aot_biomaps-2.9.
|
|
48
|
-
aot_biomaps-2.9.
|
|
45
|
+
aot_biomaps-2.9.382.dist-info/METADATA,sha256=XZd7oCpQl1cW7rDa2n37DZXzB8C3HZqj7bOChY_wd7g,700
|
|
46
|
+
aot_biomaps-2.9.382.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
47
|
+
aot_biomaps-2.9.382.dist-info/top_level.txt,sha256=6STF-lT4kaAnBHJYCripmN5mZABoHjMuY689JdiDphk,12
|
|
48
|
+
aot_biomaps-2.9.382.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|