osiris-utils 1.1.3__py3-none-any.whl → 1.1.6__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.
- osiris_utils/__init__.py +25 -6
- osiris_utils/data/__init__.py +0 -0
- osiris_utils/data/data.py +692 -0
- osiris_utils/data/diagnostic.py +1437 -0
- osiris_utils/data/simulation.py +216 -0
- osiris_utils/decks/__init__.py +0 -0
- osiris_utils/decks/decks.py +288 -0
- osiris_utils/decks/species.py +55 -0
- osiris_utils/gui/__init__.py +0 -0
- osiris_utils/gui/gui.py +266 -0
- osiris_utils/postprocessing/__init__.py +0 -0
- osiris_utils/postprocessing/derivative.py +223 -0
- osiris_utils/postprocessing/fft.py +234 -0
- osiris_utils/postprocessing/field_centering.py +168 -0
- osiris_utils/postprocessing/heatflux_correction.py +193 -0
- osiris_utils/postprocessing/mft.py +334 -0
- osiris_utils/postprocessing/mft_for_gridfile.py +52 -0
- osiris_utils/postprocessing/postprocess.py +42 -0
- osiris_utils/postprocessing/pressure_correction.py +171 -0
- osiris_utils/utils.py +141 -41
- {osiris_utils-1.1.3.dist-info → osiris_utils-1.1.6.dist-info}/METADATA +20 -2
- osiris_utils-1.1.6.dist-info/RECORD +25 -0
- {osiris_utils-1.1.3.dist-info → osiris_utils-1.1.6.dist-info}/WHEEL +1 -1
- osiris_utils-1.1.3.dist-info/RECORD +0 -7
- {osiris_utils-1.1.3.dist-info → osiris_utils-1.1.6.dist-info}/licenses/LICENSE.txt +0 -0
- {osiris_utils-1.1.3.dist-info → osiris_utils-1.1.6.dist-info}/top_level.txt +0 -0
osiris_utils/__init__.py
CHANGED
|
@@ -1,15 +1,34 @@
|
|
|
1
|
-
from .utils import (
|
|
2
|
-
|
|
1
|
+
from .utils import (
|
|
2
|
+
time_estimation,
|
|
3
|
+
filesize_estimation,
|
|
4
|
+
transverse_average,
|
|
5
|
+
integrate,
|
|
6
|
+
save_data,
|
|
7
|
+
read_data,
|
|
8
|
+
courant2D,
|
|
9
|
+
)
|
|
3
10
|
from .gui.gui import LAVA_Qt, LAVA
|
|
4
|
-
from .data.data import OsirisGridFile, OsirisRawFile, OsirisData, OsirisHIST
|
|
5
|
-
from .data.simulation import Simulation
|
|
11
|
+
from .data.data import OsirisGridFile, OsirisRawFile, OsirisData, OsirisHIST, OsirisTrackFile
|
|
12
|
+
from .data.simulation import Simulation, Species_Handler
|
|
6
13
|
from .data.diagnostic import Diagnostic
|
|
7
14
|
|
|
15
|
+
from .decks.decks import InputDeckIO
|
|
16
|
+
from .decks.species import Specie
|
|
17
|
+
|
|
8
18
|
from .postprocessing.postprocess import PostProcess
|
|
9
19
|
from .postprocessing.derivative import Derivative_Simulation, Derivative_Diagnostic
|
|
10
20
|
from .postprocessing.fft import FFT_Diagnostic, FastFourierTransform_Simulation
|
|
11
21
|
|
|
12
22
|
from .postprocessing.mft_for_gridfile import MFT_Single
|
|
13
|
-
from .postprocessing.mft import
|
|
23
|
+
from .postprocessing.mft import (
|
|
24
|
+
MeanFieldTheory_Simulation,
|
|
25
|
+
MFT_Diagnostic,
|
|
26
|
+
MFT_Diagnostic_Average,
|
|
27
|
+
MFT_Diagnostic_Fluctuations,
|
|
28
|
+
)
|
|
29
|
+
|
|
30
|
+
from .postprocessing.field_centering import FieldCentering_Simulation, FieldCentering_Diagnostic
|
|
31
|
+
|
|
32
|
+
from .postprocessing.pressure_correction import PressureCorrection_Simulation, PressureCorrection_Diagnostic
|
|
14
33
|
|
|
15
|
-
|
|
34
|
+
from .postprocessing.heatflux_correction import HeatfluxCorrection_Simulation, HeatfluxCorrection_Diagnostic
|
|
File without changes
|