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 CHANGED
@@ -1,15 +1,34 @@
1
- from .utils import (time_estimation, filesize_estimation, transverse_average, integrate, animate_2D,
2
- save_data, read_data, courant2D)
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 MeanFieldTheory_Simulation, MFT_Diagnostic, MFT_Diagnostic_Average, MFT_Diagnostic_Fluctuations
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
- # true div not working because of rtruediv - division is not commutative
34
+ from .postprocessing.heatflux_correction import HeatfluxCorrection_Simulation, HeatfluxCorrection_Diagnostic
File without changes