osiris-utils 1.1.3__tar.gz → 1.1.6__tar.gz
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-1.1.3/osiris_utils.egg-info → osiris_utils-1.1.6}/PKG-INFO +20 -2
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/README.rst +18 -0
- osiris_utils-1.1.6/osiris_utils/__init__.py +34 -0
- osiris_utils-1.1.6/osiris_utils/data/__init__.py +0 -0
- osiris_utils-1.1.6/osiris_utils/data/data.py +692 -0
- osiris_utils-1.1.6/osiris_utils/data/diagnostic.py +1437 -0
- osiris_utils-1.1.6/osiris_utils/data/simulation.py +216 -0
- osiris_utils-1.1.6/osiris_utils/decks/__init__.py +0 -0
- osiris_utils-1.1.6/osiris_utils/decks/decks.py +288 -0
- osiris_utils-1.1.6/osiris_utils/decks/species.py +55 -0
- osiris_utils-1.1.6/osiris_utils/gui/__init__.py +0 -0
- osiris_utils-1.1.6/osiris_utils/gui/gui.py +266 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/__init__.py +0 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/derivative.py +223 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/fft.py +234 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/field_centering.py +168 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/heatflux_correction.py +193 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/mft.py +334 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/mft_for_gridfile.py +52 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/postprocess.py +42 -0
- osiris_utils-1.1.6/osiris_utils/postprocessing/pressure_correction.py +171 -0
- osiris_utils-1.1.6/osiris_utils/utils.py +283 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6/osiris_utils.egg-info}/PKG-INFO +20 -2
- osiris_utils-1.1.6/osiris_utils.egg-info/SOURCES.txt +31 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/setup.py +2 -2
- osiris_utils-1.1.3/osiris_utils/__init__.py +0 -15
- osiris_utils-1.1.3/osiris_utils/utils.py +0 -183
- osiris_utils-1.1.3/osiris_utils.egg-info/SOURCES.txt +0 -13
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/LICENSE.txt +0 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/MANIFEST.in +0 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/osiris_utils.egg-info/dependency_links.txt +0 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/osiris_utils.egg-info/requires.txt +0 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/osiris_utils.egg-info/top_level.txt +0 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/pyproject.toml +0 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/requirements.txt +0 -0
- {osiris_utils-1.1.3 → osiris_utils-1.1.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: osiris_utils
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.6
|
|
4
4
|
Summary: Utilities to manipulate and visualize OSIRIS framework output data
|
|
5
5
|
Author: ['João Pedro Ferreira Biu', 'João Cândido', 'Diogo Carvalho']
|
|
6
6
|
Author-email: ['joaopedrofbiu@tecnico.ulisboa.pt']
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Topic :: Scientific/Engineering
|
|
22
|
-
Requires-Python: >=3.
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
23
|
Description-Content-Type: text/x-rst
|
|
24
24
|
License-File: LICENSE.txt
|
|
25
25
|
Requires-Dist: numpy
|
|
@@ -48,6 +48,10 @@ OSIRIS_UTILS
|
|
|
48
48
|
|Pypi|
|
|
49
49
|
|
|
50
50
|
This package contains a set of utilities to open and analyze OSIRIS output files, using Python. All the methods implemented are fully integrated with `NumPy`, and use `np.ndarray` as the main data structure.
|
|
51
|
+
High-level functions are provided to manipulate data from OSIRIS, from reading the data of the diagnostics, to making post-processing calculations.
|
|
52
|
+
|
|
53
|
+
All code is written in Python. To contact the dev team, please send an email to João Biu: `joaopedrofbiu@tecnico.ulisboa.pt <mailto:joaopedrofbiu@tecnico.ulisboa.pt>`_.
|
|
54
|
+
The full dev team can be found below in the Authors and Contributors section.
|
|
51
55
|
|
|
52
56
|
How to install it?
|
|
53
57
|
------------------
|
|
@@ -58,6 +62,12 @@ To install this package, you can use `pip`::
|
|
|
58
62
|
|
|
59
63
|
To install it from source, you can clone this repository and run (in the folder containing ``setup.py``)::
|
|
60
64
|
|
|
65
|
+
git clone https://github.com/joaopedrobiu6/osiris_utils.git
|
|
66
|
+
pip install .
|
|
67
|
+
|
|
68
|
+
Finally, you can install it in editor mode if you want to contribute to the code::
|
|
69
|
+
|
|
70
|
+
git clone https://github.com/joaopedrobiu6/osiris_utils.git
|
|
61
71
|
pip install -e .
|
|
62
72
|
|
|
63
73
|
Documentation
|
|
@@ -69,3 +79,11 @@ The documentation is available at https://osiris-utils.readthedocs.io or via thi
|
|
|
69
79
|
:target: https://pypi.org/project/osiris-utils/
|
|
70
80
|
:alt: Pypi
|
|
71
81
|
|
|
82
|
+
.. _authors:
|
|
83
|
+
|
|
84
|
+
Authors and Contributors
|
|
85
|
+
------------------------
|
|
86
|
+
|
|
87
|
+
- João Biu
|
|
88
|
+
- João Cândido
|
|
89
|
+
- Diogo Carvalho
|
|
@@ -3,6 +3,10 @@ OSIRIS_UTILS
|
|
|
3
3
|
|Pypi|
|
|
4
4
|
|
|
5
5
|
This package contains a set of utilities to open and analyze OSIRIS output files, using Python. All the methods implemented are fully integrated with `NumPy`, and use `np.ndarray` as the main data structure.
|
|
6
|
+
High-level functions are provided to manipulate data from OSIRIS, from reading the data of the diagnostics, to making post-processing calculations.
|
|
7
|
+
|
|
8
|
+
All code is written in Python. To contact the dev team, please send an email to João Biu: `joaopedrofbiu@tecnico.ulisboa.pt <mailto:joaopedrofbiu@tecnico.ulisboa.pt>`_.
|
|
9
|
+
The full dev team can be found below in the Authors and Contributors section.
|
|
6
10
|
|
|
7
11
|
How to install it?
|
|
8
12
|
------------------
|
|
@@ -13,6 +17,12 @@ To install this package, you can use `pip`::
|
|
|
13
17
|
|
|
14
18
|
To install it from source, you can clone this repository and run (in the folder containing ``setup.py``)::
|
|
15
19
|
|
|
20
|
+
git clone https://github.com/joaopedrobiu6/osiris_utils.git
|
|
21
|
+
pip install .
|
|
22
|
+
|
|
23
|
+
Finally, you can install it in editor mode if you want to contribute to the code::
|
|
24
|
+
|
|
25
|
+
git clone https://github.com/joaopedrobiu6/osiris_utils.git
|
|
16
26
|
pip install -e .
|
|
17
27
|
|
|
18
28
|
Documentation
|
|
@@ -24,3 +34,11 @@ The documentation is available at https://osiris-utils.readthedocs.io or via thi
|
|
|
24
34
|
:target: https://pypi.org/project/osiris-utils/
|
|
25
35
|
:alt: Pypi
|
|
26
36
|
|
|
37
|
+
.. _authors:
|
|
38
|
+
|
|
39
|
+
Authors and Contributors
|
|
40
|
+
------------------------
|
|
41
|
+
|
|
42
|
+
- João Biu
|
|
43
|
+
- João Cândido
|
|
44
|
+
- Diogo Carvalho
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
from .utils import (
|
|
2
|
+
time_estimation,
|
|
3
|
+
filesize_estimation,
|
|
4
|
+
transverse_average,
|
|
5
|
+
integrate,
|
|
6
|
+
save_data,
|
|
7
|
+
read_data,
|
|
8
|
+
courant2D,
|
|
9
|
+
)
|
|
10
|
+
from .gui.gui import LAVA_Qt, LAVA
|
|
11
|
+
from .data.data import OsirisGridFile, OsirisRawFile, OsirisData, OsirisHIST, OsirisTrackFile
|
|
12
|
+
from .data.simulation import Simulation, Species_Handler
|
|
13
|
+
from .data.diagnostic import Diagnostic
|
|
14
|
+
|
|
15
|
+
from .decks.decks import InputDeckIO
|
|
16
|
+
from .decks.species import Specie
|
|
17
|
+
|
|
18
|
+
from .postprocessing.postprocess import PostProcess
|
|
19
|
+
from .postprocessing.derivative import Derivative_Simulation, Derivative_Diagnostic
|
|
20
|
+
from .postprocessing.fft import FFT_Diagnostic, FastFourierTransform_Simulation
|
|
21
|
+
|
|
22
|
+
from .postprocessing.mft_for_gridfile import MFT_Single
|
|
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
|
|
33
|
+
|
|
34
|
+
from .postprocessing.heatflux_correction import HeatfluxCorrection_Simulation, HeatfluxCorrection_Diagnostic
|
|
File without changes
|