turbx 0.3.7__tar.gz → 0.3.9__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.
Potentially problematic release.
This version of turbx might be problematic. Click here for more details.
- {turbx-0.3.7 → turbx-0.3.9}/PKG-INFO +10 -16
- {turbx-0.3.7 → turbx-0.3.9}/README.md +0 -4
- {turbx-0.3.7 → turbx-0.3.9}/setup.py +10 -12
- {turbx-0.3.7 → turbx-0.3.9}/turbx/__init__.py +9 -3
- {turbx-0.3.7 → turbx-0.3.9}/turbx/turbx.py +1924 -621
- {turbx-0.3.7 → turbx-0.3.9}/turbx.egg-info/PKG-INFO +10 -16
- turbx-0.3.9/turbx.egg-info/requires.txt +11 -0
- turbx-0.3.7/turbx.egg-info/requires.txt +0 -11
- {turbx-0.3.7 → turbx-0.3.9}/LICENSE +0 -0
- {turbx-0.3.7 → turbx-0.3.9}/setup.cfg +0 -0
- {turbx-0.3.7 → turbx-0.3.9}/turbx.egg-info/SOURCES.txt +0 -0
- {turbx-0.3.7 → turbx-0.3.9}/turbx.egg-info/dependency_links.txt +0 -0
- {turbx-0.3.7 → turbx-0.3.9}/turbx.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: turbx
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: Extensible toolkit for analyzing turbulent flow datasets
|
|
5
5
|
Home-page: https://github.com/iagappel/turbx
|
|
6
6
|
Author: Jason A
|
|
@@ -17,28 +17,26 @@ Classifier: Natural Language :: English
|
|
|
17
17
|
Classifier: Operating System :: POSIX :: Linux
|
|
18
18
|
Classifier: Operating System :: MacOS
|
|
19
19
|
Classifier: Operating System :: Microsoft :: Windows
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
23
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
26
24
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
27
25
|
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
28
|
-
Requires-Python: >=3.
|
|
26
|
+
Requires-Python: >=3.10
|
|
29
27
|
Description-Content-Type: text/markdown
|
|
30
28
|
License-File: LICENSE
|
|
31
29
|
Requires-Dist: mpi4py>=3.1
|
|
32
|
-
Requires-Dist: numpy>=1.
|
|
33
|
-
Requires-Dist: scipy>=1.
|
|
34
|
-
Requires-Dist: h5py>=3.
|
|
35
|
-
Requires-Dist: matplotlib>=3.
|
|
36
|
-
Requires-Dist: scikit-image>=0.
|
|
30
|
+
Requires-Dist: numpy>=1.25
|
|
31
|
+
Requires-Dist: scipy>=1.11
|
|
32
|
+
Requires-Dist: h5py>=3.10
|
|
33
|
+
Requires-Dist: matplotlib>=3.8
|
|
34
|
+
Requires-Dist: scikit-image>=0.22
|
|
37
35
|
Requires-Dist: psutil>=5.9
|
|
38
|
-
Requires-Dist: tqdm>=4.
|
|
39
|
-
Requires-Dist: cmocean>=
|
|
36
|
+
Requires-Dist: tqdm>=4.66
|
|
37
|
+
Requires-Dist: cmocean>=3.0
|
|
40
38
|
Requires-Dist: colorcet>=3.0
|
|
41
|
-
Requires-Dist: cmasher>=1.
|
|
39
|
+
Requires-Dist: cmasher>=1.7
|
|
42
40
|
|
|
43
41
|
# turbx
|
|
44
42
|
[](https://badge.fury.io/py/turbx)
|
|
@@ -52,8 +50,6 @@ Install with `pip`:
|
|
|
52
50
|
pip install --upgrade --user turbx
|
|
53
51
|
```
|
|
54
52
|
|
|
55
|
-
Documentation available at: https://iagappel.github.io/turbx
|
|
56
|
-
|
|
57
53
|
`turbx` runs in `python3` and uses parallel `HDF5` (wrapped by `h5py`) for high-performance collective MPI-IO with `mpi4py`. This requires:
|
|
58
54
|
|
|
59
55
|
- A `python3` installation (3.8+ recommended)
|
|
@@ -62,6 +58,4 @@ Documentation available at: https://iagappel.github.io/turbx
|
|
|
62
58
|
- `mpi4py` (optionally compiled from source)
|
|
63
59
|
- `h5py` compiled with parallel configuration
|
|
64
60
|
|
|
65
|
-
An environment configuration guide can be found here: https://iagappel.github.io/turbx/env
|
|
66
|
-
|
|
67
61
|
Visualization of `HDF5` datasets is possible using `Paraview` with the use of `xdmf` data descriptor files, which are written automatically by calling `.make_xdmf()` on `turbx` data class (such as `rgd`) class instances.
|
|
@@ -10,8 +10,6 @@ Install with `pip`:
|
|
|
10
10
|
pip install --upgrade --user turbx
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Documentation available at: https://iagappel.github.io/turbx
|
|
14
|
-
|
|
15
13
|
`turbx` runs in `python3` and uses parallel `HDF5` (wrapped by `h5py`) for high-performance collective MPI-IO with `mpi4py`. This requires:
|
|
16
14
|
|
|
17
15
|
- A `python3` installation (3.8+ recommended)
|
|
@@ -20,6 +18,4 @@ Documentation available at: https://iagappel.github.io/turbx
|
|
|
20
18
|
- `mpi4py` (optionally compiled from source)
|
|
21
19
|
- `h5py` compiled with parallel configuration
|
|
22
20
|
|
|
23
|
-
An environment configuration guide can be found here: https://iagappel.github.io/turbx/env
|
|
24
|
-
|
|
25
21
|
Visualization of `HDF5` datasets is possible using `Paraview` with the use of `xdmf` data descriptor files, which are written automatically by calling `.make_xdmf()` on `turbx` data class (such as `rgd`) class instances.
|
|
@@ -11,7 +11,7 @@ long_description = (this_directory / 'README.md').read_text()
|
|
|
11
11
|
|
|
12
12
|
setup(
|
|
13
13
|
name='turbx',
|
|
14
|
-
version='0.3.
|
|
14
|
+
version='0.3.9',
|
|
15
15
|
description='Extensible toolkit for analyzing turbulent flow datasets',
|
|
16
16
|
|
|
17
17
|
long_description=long_description,
|
|
@@ -25,20 +25,20 @@ setup(
|
|
|
25
25
|
packages=['turbx'],
|
|
26
26
|
#packages=find_packages(exclude=('tests',)),
|
|
27
27
|
install_requires=['mpi4py>=3.1',
|
|
28
|
-
'numpy>=1.
|
|
29
|
-
'scipy>=1.
|
|
30
|
-
'h5py>=3.
|
|
31
|
-
'matplotlib>=3.
|
|
32
|
-
'scikit-image>=0.
|
|
28
|
+
'numpy>=1.25',
|
|
29
|
+
'scipy>=1.11',
|
|
30
|
+
'h5py>=3.10',
|
|
31
|
+
'matplotlib>=3.8',
|
|
32
|
+
'scikit-image>=0.22',
|
|
33
33
|
'psutil>=5.9',
|
|
34
|
-
'tqdm>=4.
|
|
35
|
-
'cmocean>=
|
|
34
|
+
'tqdm>=4.66',
|
|
35
|
+
'cmocean>=3.0',
|
|
36
36
|
'colorcet>=3.0',
|
|
37
|
-
'cmasher>=1.
|
|
37
|
+
'cmasher>=1.7',
|
|
38
38
|
],
|
|
39
39
|
|
|
40
40
|
#setup_requires=['pytest-runner'],
|
|
41
|
-
python_requires='>=3.
|
|
41
|
+
python_requires='>=3.10',
|
|
42
42
|
#tests_require=['pytest'],
|
|
43
43
|
platforms=['any'],
|
|
44
44
|
|
|
@@ -52,8 +52,6 @@ setup(
|
|
|
52
52
|
'Operating System :: POSIX :: Linux',
|
|
53
53
|
'Operating System :: MacOS',
|
|
54
54
|
'Operating System :: Microsoft :: Windows',
|
|
55
|
-
'Programming Language :: Python :: 3.8',
|
|
56
|
-
'Programming Language :: Python :: 3.9',
|
|
57
55
|
'Programming Language :: Python :: 3.10',
|
|
58
56
|
'Programming Language :: Python :: 3.11',
|
|
59
57
|
'Programming Language :: Python :: 3.12',
|
|
@@ -4,7 +4,7 @@ turbx
|
|
|
4
4
|
Extensible toolkit for analyzing turbulent flow datasets
|
|
5
5
|
'''
|
|
6
6
|
|
|
7
|
-
__version__ = '0.3.
|
|
7
|
+
__version__ = '0.3.9'
|
|
8
8
|
__author__ = 'Jason A'
|
|
9
9
|
|
|
10
10
|
from .turbx import cgd
|
|
@@ -24,7 +24,7 @@ from .turbx import curve_fitter
|
|
|
24
24
|
|
|
25
25
|
from .turbx import Blasius_solution
|
|
26
26
|
from .turbx import freestream_parameters
|
|
27
|
-
from .turbx import
|
|
27
|
+
from .turbx import calc_profile_edge_1d
|
|
28
28
|
from .turbx import calc_d99_1d
|
|
29
29
|
from .turbx import calc_bl_integral_quantities_1d
|
|
30
30
|
|
|
@@ -39,6 +39,7 @@ from .turbx import get_metric_tensor_2d
|
|
|
39
39
|
from .turbx import get_grid_quality_metrics_2d
|
|
40
40
|
from .turbx import smoothstep
|
|
41
41
|
from .turbx import stretch_1d_cluster_ends
|
|
42
|
+
from .turbx import time_integrate_2d_seeder
|
|
42
43
|
from .turbx import time_integrate_2d
|
|
43
44
|
|
|
44
45
|
from .turbx import rect_to_cyl
|
|
@@ -60,8 +61,10 @@ from .turbx import format_nbytes
|
|
|
60
61
|
from .turbx import even_print
|
|
61
62
|
|
|
62
63
|
from .turbx import set_mpl_env
|
|
64
|
+
from .turbx import mpl_typeset_templates
|
|
63
65
|
from .turbx import colors_table
|
|
64
66
|
from .turbx import get_standard_colors
|
|
67
|
+
from .turbx import cmap_Lch_edit
|
|
65
68
|
from .turbx import colors_test_plot
|
|
66
69
|
from .turbx import color_dict_to_tex
|
|
67
70
|
from .turbx import get_Lch_colors
|
|
@@ -89,7 +92,7 @@ __all__ = ['cgd',
|
|
|
89
92
|
'curve_fitter',
|
|
90
93
|
'Blasius_solution',
|
|
91
94
|
'freestream_parameters',
|
|
92
|
-
'
|
|
95
|
+
'calc_profile_edge_1d',
|
|
93
96
|
'calc_d99_1d',
|
|
94
97
|
'calc_bl_integral_quantities_1d',
|
|
95
98
|
'interp_2d_structured',
|
|
@@ -103,6 +106,7 @@ __all__ = ['cgd',
|
|
|
103
106
|
'get_grid_quality_metrics_2d',
|
|
104
107
|
'smoothstep',
|
|
105
108
|
'stretch_1d_cluster_ends',
|
|
109
|
+
'time_integrate_2d_seeder',
|
|
106
110
|
'time_integrate_2d',
|
|
107
111
|
'rect_to_cyl',
|
|
108
112
|
'cyl_to_rect',
|
|
@@ -118,8 +122,10 @@ __all__ = ['cgd',
|
|
|
118
122
|
'format_nbytes',
|
|
119
123
|
'even_print',
|
|
120
124
|
'set_mpl_env',
|
|
125
|
+
'mpl_typeset_templates',
|
|
121
126
|
'colors_table',
|
|
122
127
|
'get_standard_colors',
|
|
128
|
+
'cmap_Lch_edit',
|
|
123
129
|
'colors_test_plot',
|
|
124
130
|
'color_dict_to_tex',
|
|
125
131
|
'get_Lch_colors',
|