turbx 0.3.9__tar.gz → 0.4.0__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.9 → turbx-0.4.0}/PKG-INFO +1 -1
- {turbx-0.3.9 → turbx-0.4.0}/setup.py +14 -13
- {turbx-0.3.9 → turbx-0.4.0}/turbx/__init__.py +63 -62
- {turbx-0.3.9 → turbx-0.4.0}/turbx/turbx.py +8125 -5959
- {turbx-0.3.9 → turbx-0.4.0}/turbx.egg-info/PKG-INFO +1 -1
- {turbx-0.3.9 → turbx-0.4.0}/LICENSE +0 -0
- {turbx-0.3.9 → turbx-0.4.0}/README.md +0 -0
- {turbx-0.3.9 → turbx-0.4.0}/setup.cfg +0 -0
- {turbx-0.3.9 → turbx-0.4.0}/turbx.egg-info/SOURCES.txt +0 -0
- {turbx-0.3.9 → turbx-0.4.0}/turbx.egg-info/dependency_links.txt +0 -0
- {turbx-0.3.9 → turbx-0.4.0}/turbx.egg-info/requires.txt +0 -0
- {turbx-0.3.9 → turbx-0.4.0}/turbx.egg-info/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ long_description = (this_directory / 'README.md').read_text()
|
|
|
11
11
|
|
|
12
12
|
setup(
|
|
13
13
|
name='turbx',
|
|
14
|
-
version='0.
|
|
14
|
+
version='0.4.0',
|
|
15
15
|
description='Extensible toolkit for analyzing turbulent flow datasets',
|
|
16
16
|
|
|
17
17
|
long_description=long_description,
|
|
@@ -24,18 +24,19 @@ setup(
|
|
|
24
24
|
license='MIT',
|
|
25
25
|
packages=['turbx'],
|
|
26
26
|
#packages=find_packages(exclude=('tests',)),
|
|
27
|
-
install_requires=[
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
27
|
+
install_requires=[
|
|
28
|
+
'mpi4py>=3.1',
|
|
29
|
+
'numpy>=1.25',
|
|
30
|
+
'scipy>=1.11',
|
|
31
|
+
'h5py>=3.10',
|
|
32
|
+
'matplotlib>=3.8',
|
|
33
|
+
'scikit-image>=0.22',
|
|
34
|
+
'psutil>=5.9',
|
|
35
|
+
'tqdm>=4.66',
|
|
36
|
+
'cmocean>=3.0',
|
|
37
|
+
'colorcet>=3.0',
|
|
38
|
+
'cmasher>=1.7',
|
|
39
|
+
],
|
|
39
40
|
|
|
40
41
|
#setup_requires=['pytest-runner'],
|
|
41
42
|
python_requires='>=3.10',
|
|
@@ -4,7 +4,7 @@ turbx
|
|
|
4
4
|
Extensible toolkit for analyzing turbulent flow datasets
|
|
5
5
|
'''
|
|
6
6
|
|
|
7
|
-
__version__ = '0.
|
|
7
|
+
__version__ = '0.4.0'
|
|
8
8
|
__author__ = 'Jason A'
|
|
9
9
|
|
|
10
10
|
from .turbx import cgd
|
|
@@ -79,64 +79,65 @@ from .turbx import axs_grid_compress
|
|
|
79
79
|
from .turbx import tight_layout_helper_ax_with_cbar
|
|
80
80
|
from .turbx import cmap_convert_mpl_to_pview
|
|
81
81
|
|
|
82
|
-
__all__ = [
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
82
|
+
__all__ = [
|
|
83
|
+
'cgd',
|
|
84
|
+
'rgd',
|
|
85
|
+
'eas4',
|
|
86
|
+
'ztmd',
|
|
87
|
+
'lpd',
|
|
88
|
+
'spd',
|
|
89
|
+
'h5_chunk_sizer',
|
|
90
|
+
'h5_visititems_print_attrs',
|
|
91
|
+
'h5_visit_container',
|
|
92
|
+
'eas3',
|
|
93
|
+
'curve_fitter',
|
|
94
|
+
'Blasius_solution',
|
|
95
|
+
'freestream_parameters',
|
|
96
|
+
'calc_profile_edge_1d',
|
|
97
|
+
'calc_d99_1d',
|
|
98
|
+
'calc_bl_integral_quantities_1d',
|
|
99
|
+
'interp_2d_structured',
|
|
100
|
+
'interp_1d',
|
|
101
|
+
'fd_coeff_calculator',
|
|
102
|
+
'assemble_1d_fd_coeff_vector_central',
|
|
103
|
+
'assemble_1d_fd_coeff_vector_custom',
|
|
104
|
+
'gradient',
|
|
105
|
+
'get_metric_tensor_3d',
|
|
106
|
+
'get_metric_tensor_2d',
|
|
107
|
+
'get_grid_quality_metrics_2d',
|
|
108
|
+
'smoothstep',
|
|
109
|
+
'stretch_1d_cluster_ends',
|
|
110
|
+
'time_integrate_2d_seeder',
|
|
111
|
+
'time_integrate_2d',
|
|
112
|
+
'rect_to_cyl',
|
|
113
|
+
'cyl_to_rect',
|
|
114
|
+
'rotate_2d',
|
|
115
|
+
'get_grad',
|
|
116
|
+
'get_curl',
|
|
117
|
+
'get_overlapping_window_size',
|
|
118
|
+
'get_overlapping_windows',
|
|
119
|
+
'ccor',
|
|
120
|
+
'ccor_naive',
|
|
121
|
+
'gulp',
|
|
122
|
+
'format_time_string',
|
|
123
|
+
'format_nbytes',
|
|
124
|
+
'even_print',
|
|
125
|
+
'set_mpl_env',
|
|
126
|
+
'mpl_typeset_templates',
|
|
127
|
+
'colors_table',
|
|
128
|
+
'get_standard_colors',
|
|
129
|
+
'cmap_Lch_edit',
|
|
130
|
+
'colors_test_plot',
|
|
131
|
+
'color_dict_to_tex',
|
|
132
|
+
'get_Lch_colors',
|
|
133
|
+
'hex2rgb',
|
|
134
|
+
'hsv_adjust_hex',
|
|
135
|
+
'analytical_u_plus_y_plus',
|
|
136
|
+
'nice_log_labels',
|
|
137
|
+
'fig_trim_y',
|
|
138
|
+
'fig_trim_x',
|
|
139
|
+
'axs_grid_initializer',
|
|
140
|
+
'axs_grid_compress',
|
|
141
|
+
'tight_layout_helper_ax_with_cbar',
|
|
142
|
+
'cmap_convert_mpl_to_pview',
|
|
143
|
+
]
|