cfdpre 0.2__tar.gz → 0.2.2__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.
cfdpre-0.2.2/PKG-INFO ADDED
@@ -0,0 +1,104 @@
1
+ Metadata-Version: 2.1
2
+ Name: cfdpre
3
+ Version: 0.2.2
4
+ Summary: CFD PreProcessing Library
5
+ Author: Pushkar Sheth
6
+ Author-email: siglyserdev@gmail.com
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: CoolProp
10
+
11
+ <h1 align="center">
12
+ <img src="cfdprelogo.png" width="300">
13
+ </h1><br>
14
+
15
+
16
+ What is CFDPre?
17
+ ----------------------
18
+
19
+ CFDPre is an open-source collection of object-oriented software tools for
20
+ calculating boundary layer mesh dimensions for Computational Fluid Dynamics simulations.
21
+ Among other things, it can be used to:
22
+
23
+ * Calculate First Layer Thickness, Growth Ratio and Final Layer Thickess
24
+
25
+
26
+ Installation
27
+ ----------------------
28
+
29
+ [![Install](https://img.shields.io/pypi/v/cfdpre?label=CFDPre)](
30
+ https://pypi.org/project/cfdpre/) [![PyPI Downloads](https://img.shields.io/pypi/dm/cfdpre?label=PyPI%20Downloads)](
31
+ https://pypistats.org/packages/cfdpre)
32
+
33
+ In your command line, within Python environment:
34
+ ```pythom
35
+ pip install cfdpre
36
+ ```
37
+ - The Python module can also be installed using pip on Windows, macOS, and Linux.
38
+
39
+
40
+ Usage
41
+ ----------------------
42
+
43
+ ```python
44
+ from cfdpre import yhgrcalc
45
+ yhgrcalc('Air', 50, 10, 2.5, 125, 1, 8)
46
+ ```
47
+
48
+ Output:
49
+ ```python
50
+ {'fluid': 'Air',
51
+ 'temperature [C]': 50,
52
+ 'pressure [bar]': 10,
53
+ 'massflow [kg/sec]': 2.5,
54
+ 'hydraulicdia [mm]': 125,
55
+ 'target yplus': 1,
56
+ 'number of layers': 8,
57
+ 'dynvisc [N-sec/m^2]': 1.9762497305390764e-05,
58
+ 'thermal conductivity [W/m-k]': 0.028357331300649127,
59
+ 'specific heat [cp] [J/kg-k]': 1019.3146170790077,
60
+ 'density [kg/m^3]': 10.792698589669245,
61
+ 'kinematic viscosity [m^2/s]': 1.8310987878701066e-06,
62
+ 'flow velocity [m/sec]': 18.875569021507275,
63
+ 'reynolds number': 1288541.1444310248,
64
+ 'prandtl number': 0.7103701741111368,
65
+ 'skin friction coefficient [cf]': 0.0035835733898580227,
66
+ 'wall shear stress [tau_wall]': 6.889956204766106,
67
+ 'yplus [m]': 2.2917570116263887e-06,
68
+ 'first layer height [m]': 4.5835140232527775e-06,
69
+ 'Growth Ratio': 2.3120331242085856,
70
+ 'Final Layer Thickness [m]': 0.0016186648187374525}
71
+ ```
72
+
73
+ Documentation
74
+ ----------------------
75
+
76
+ In progress - not yet made!
77
+
78
+
79
+ - **Users Group:** https://groups.google.com/g/cfdpre
80
+ - **Source code:** https://github.com/phsheth/cfdpre
81
+
82
+ Call for Contributors
83
+ ----------------------
84
+
85
+ The CFDPre project welcomes your expertise and enthusiasm! Better to discuss on the users group before starting to contribute!
86
+
87
+
88
+ Project Log
89
+ ----------------------
90
+ January 2025:
91
+ 1. Created Library
92
+
93
+
94
+ Project RoadMap:
95
+ ----------------------
96
+
97
+ 1. Documentation for existing functionality.
98
+ 2. Include example data within library.
99
+
100
+
101
+
102
+
103
+
104
+
cfdpre-0.2.2/README.md ADDED
@@ -0,0 +1,94 @@
1
+ <h1 align="center">
2
+ <img src="cfdprelogo.png" width="300">
3
+ </h1><br>
4
+
5
+
6
+ What is CFDPre?
7
+ ----------------------
8
+
9
+ CFDPre is an open-source collection of object-oriented software tools for
10
+ calculating boundary layer mesh dimensions for Computational Fluid Dynamics simulations.
11
+ Among other things, it can be used to:
12
+
13
+ * Calculate First Layer Thickness, Growth Ratio and Final Layer Thickess
14
+
15
+
16
+ Installation
17
+ ----------------------
18
+
19
+ [![Install](https://img.shields.io/pypi/v/cfdpre?label=CFDPre)](
20
+ https://pypi.org/project/cfdpre/) [![PyPI Downloads](https://img.shields.io/pypi/dm/cfdpre?label=PyPI%20Downloads)](
21
+ https://pypistats.org/packages/cfdpre)
22
+
23
+ In your command line, within Python environment:
24
+ ```pythom
25
+ pip install cfdpre
26
+ ```
27
+ - The Python module can also be installed using pip on Windows, macOS, and Linux.
28
+
29
+
30
+ Usage
31
+ ----------------------
32
+
33
+ ```python
34
+ from cfdpre import yhgrcalc
35
+ yhgrcalc('Air', 50, 10, 2.5, 125, 1, 8)
36
+ ```
37
+
38
+ Output:
39
+ ```python
40
+ {'fluid': 'Air',
41
+ 'temperature [C]': 50,
42
+ 'pressure [bar]': 10,
43
+ 'massflow [kg/sec]': 2.5,
44
+ 'hydraulicdia [mm]': 125,
45
+ 'target yplus': 1,
46
+ 'number of layers': 8,
47
+ 'dynvisc [N-sec/m^2]': 1.9762497305390764e-05,
48
+ 'thermal conductivity [W/m-k]': 0.028357331300649127,
49
+ 'specific heat [cp] [J/kg-k]': 1019.3146170790077,
50
+ 'density [kg/m^3]': 10.792698589669245,
51
+ 'kinematic viscosity [m^2/s]': 1.8310987878701066e-06,
52
+ 'flow velocity [m/sec]': 18.875569021507275,
53
+ 'reynolds number': 1288541.1444310248,
54
+ 'prandtl number': 0.7103701741111368,
55
+ 'skin friction coefficient [cf]': 0.0035835733898580227,
56
+ 'wall shear stress [tau_wall]': 6.889956204766106,
57
+ 'yplus [m]': 2.2917570116263887e-06,
58
+ 'first layer height [m]': 4.5835140232527775e-06,
59
+ 'Growth Ratio': 2.3120331242085856,
60
+ 'Final Layer Thickness [m]': 0.0016186648187374525}
61
+ ```
62
+
63
+ Documentation
64
+ ----------------------
65
+
66
+ In progress - not yet made!
67
+
68
+
69
+ - **Users Group:** https://groups.google.com/g/cfdpre
70
+ - **Source code:** https://github.com/phsheth/cfdpre
71
+
72
+ Call for Contributors
73
+ ----------------------
74
+
75
+ The CFDPre project welcomes your expertise and enthusiasm! Better to discuss on the users group before starting to contribute!
76
+
77
+
78
+ Project Log
79
+ ----------------------
80
+ January 2025:
81
+ 1. Created Library
82
+
83
+
84
+ Project RoadMap:
85
+ ----------------------
86
+
87
+ 1. Documentation for existing functionality.
88
+ 2. Include example data within library.
89
+
90
+
91
+
92
+
93
+
94
+
@@ -0,0 +1,104 @@
1
+ Metadata-Version: 2.1
2
+ Name: cfdpre
3
+ Version: 0.2.2
4
+ Summary: CFD PreProcessing Library
5
+ Author: Pushkar Sheth
6
+ Author-email: siglyserdev@gmail.com
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: CoolProp
10
+
11
+ <h1 align="center">
12
+ <img src="cfdprelogo.png" width="300">
13
+ </h1><br>
14
+
15
+
16
+ What is CFDPre?
17
+ ----------------------
18
+
19
+ CFDPre is an open-source collection of object-oriented software tools for
20
+ calculating boundary layer mesh dimensions for Computational Fluid Dynamics simulations.
21
+ Among other things, it can be used to:
22
+
23
+ * Calculate First Layer Thickness, Growth Ratio and Final Layer Thickess
24
+
25
+
26
+ Installation
27
+ ----------------------
28
+
29
+ [![Install](https://img.shields.io/pypi/v/cfdpre?label=CFDPre)](
30
+ https://pypi.org/project/cfdpre/) [![PyPI Downloads](https://img.shields.io/pypi/dm/cfdpre?label=PyPI%20Downloads)](
31
+ https://pypistats.org/packages/cfdpre)
32
+
33
+ In your command line, within Python environment:
34
+ ```pythom
35
+ pip install cfdpre
36
+ ```
37
+ - The Python module can also be installed using pip on Windows, macOS, and Linux.
38
+
39
+
40
+ Usage
41
+ ----------------------
42
+
43
+ ```python
44
+ from cfdpre import yhgrcalc
45
+ yhgrcalc('Air', 50, 10, 2.5, 125, 1, 8)
46
+ ```
47
+
48
+ Output:
49
+ ```python
50
+ {'fluid': 'Air',
51
+ 'temperature [C]': 50,
52
+ 'pressure [bar]': 10,
53
+ 'massflow [kg/sec]': 2.5,
54
+ 'hydraulicdia [mm]': 125,
55
+ 'target yplus': 1,
56
+ 'number of layers': 8,
57
+ 'dynvisc [N-sec/m^2]': 1.9762497305390764e-05,
58
+ 'thermal conductivity [W/m-k]': 0.028357331300649127,
59
+ 'specific heat [cp] [J/kg-k]': 1019.3146170790077,
60
+ 'density [kg/m^3]': 10.792698589669245,
61
+ 'kinematic viscosity [m^2/s]': 1.8310987878701066e-06,
62
+ 'flow velocity [m/sec]': 18.875569021507275,
63
+ 'reynolds number': 1288541.1444310248,
64
+ 'prandtl number': 0.7103701741111368,
65
+ 'skin friction coefficient [cf]': 0.0035835733898580227,
66
+ 'wall shear stress [tau_wall]': 6.889956204766106,
67
+ 'yplus [m]': 2.2917570116263887e-06,
68
+ 'first layer height [m]': 4.5835140232527775e-06,
69
+ 'Growth Ratio': 2.3120331242085856,
70
+ 'Final Layer Thickness [m]': 0.0016186648187374525}
71
+ ```
72
+
73
+ Documentation
74
+ ----------------------
75
+
76
+ In progress - not yet made!
77
+
78
+
79
+ - **Users Group:** https://groups.google.com/g/cfdpre
80
+ - **Source code:** https://github.com/phsheth/cfdpre
81
+
82
+ Call for Contributors
83
+ ----------------------
84
+
85
+ The CFDPre project welcomes your expertise and enthusiasm! Better to discuss on the users group before starting to contribute!
86
+
87
+
88
+ Project Log
89
+ ----------------------
90
+ January 2025:
91
+ 1. Created Library
92
+
93
+
94
+ Project RoadMap:
95
+ ----------------------
96
+
97
+ 1. Documentation for existing functionality.
98
+ 2. Include example data within library.
99
+
100
+
101
+
102
+
103
+
104
+
@@ -8,7 +8,7 @@ with open("README.md", "r") as f:
8
8
 
9
9
  setup(
10
10
  name='cfdpre',
11
- version='0.2',
11
+ version='0.2.2',
12
12
  description='CFD PreProcessing Library',
13
13
  author='Pushkar Sheth',
14
14
  author_email='siglyserdev@gmail.com',
cfdpre-0.2/PKG-INFO DELETED
@@ -1,69 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cfdpre
3
- Version: 0.2
4
- Summary: CFD PreProcessing Library
5
- Author: Pushkar Sheth
6
- Author-email: siglyserdev@gmail.com
7
- Description-Content-Type: text/markdown
8
- Requires-Dist: numpy
9
- Requires-Dist: CoolProp
10
-
11
- # CFDPre
12
-
13
-
14
- What is CFDPre?
15
- ================
16
-
17
- CFDPre is an open-source collection of object-oriented software tools for
18
- calculating boundary layer mesh dimensions for Computational Fluid Dynamics simulations.
19
- Among other things, it can be used to:
20
-
21
- * Calculate First Layer Thickness, Growth Ratio and Final Layer Thickess
22
-
23
-
24
- Installation
25
- ============
26
-
27
- [![PyPI Downloads](https://img.shields.io/pypi/v/cfdpre?label=PyPI%20downloads)](
28
- https://pypi.org/project/cfdpre/)
29
-
30
- pip install cfdpre
31
-
32
- - The Python module can also be installed using pip on Windows, macOS, and Linux.
33
-
34
- Documentation
35
- =============
36
-
37
- In progress - not yet made!
38
-
39
- Users' Group
40
- ============
41
-
42
- - **Users Group:** https://groups.google.com/g/cfdpre
43
-
44
- Source Code
45
- ===========
46
-
47
- - **Source code:** https://github.com/phsheth/cfdpre
48
-
49
- Call for Contributions
50
- ----------------------
51
-
52
- The CFDPre project welcomes your expertise and enthusiasm! Better to discuss before strarting to contribute!
53
-
54
-
55
- ## Project Log
56
- January 2025:
57
- 1. Created Library
58
-
59
-
60
- ## Project Road Map:
61
-
62
- 1. Documentation for existing functionality.
63
- 2. Include example data within library.
64
-
65
-
66
-
67
-
68
-
69
-
cfdpre-0.2/README.md DELETED
@@ -1,59 +0,0 @@
1
- # CFDPre
2
-
3
-
4
- What is CFDPre?
5
- ================
6
-
7
- CFDPre is an open-source collection of object-oriented software tools for
8
- calculating boundary layer mesh dimensions for Computational Fluid Dynamics simulations.
9
- Among other things, it can be used to:
10
-
11
- * Calculate First Layer Thickness, Growth Ratio and Final Layer Thickess
12
-
13
-
14
- Installation
15
- ============
16
-
17
- [![PyPI Downloads](https://img.shields.io/pypi/v/cfdpre?label=PyPI%20downloads)](
18
- https://pypi.org/project/cfdpre/)
19
-
20
- pip install cfdpre
21
-
22
- - The Python module can also be installed using pip on Windows, macOS, and Linux.
23
-
24
- Documentation
25
- =============
26
-
27
- In progress - not yet made!
28
-
29
- Users' Group
30
- ============
31
-
32
- - **Users Group:** https://groups.google.com/g/cfdpre
33
-
34
- Source Code
35
- ===========
36
-
37
- - **Source code:** https://github.com/phsheth/cfdpre
38
-
39
- Call for Contributions
40
- ----------------------
41
-
42
- The CFDPre project welcomes your expertise and enthusiasm! Better to discuss before strarting to contribute!
43
-
44
-
45
- ## Project Log
46
- January 2025:
47
- 1. Created Library
48
-
49
-
50
- ## Project Road Map:
51
-
52
- 1. Documentation for existing functionality.
53
- 2. Include example data within library.
54
-
55
-
56
-
57
-
58
-
59
-
@@ -1,69 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cfdpre
3
- Version: 0.2
4
- Summary: CFD PreProcessing Library
5
- Author: Pushkar Sheth
6
- Author-email: siglyserdev@gmail.com
7
- Description-Content-Type: text/markdown
8
- Requires-Dist: numpy
9
- Requires-Dist: CoolProp
10
-
11
- # CFDPre
12
-
13
-
14
- What is CFDPre?
15
- ================
16
-
17
- CFDPre is an open-source collection of object-oriented software tools for
18
- calculating boundary layer mesh dimensions for Computational Fluid Dynamics simulations.
19
- Among other things, it can be used to:
20
-
21
- * Calculate First Layer Thickness, Growth Ratio and Final Layer Thickess
22
-
23
-
24
- Installation
25
- ============
26
-
27
- [![PyPI Downloads](https://img.shields.io/pypi/v/cfdpre?label=PyPI%20downloads)](
28
- https://pypi.org/project/cfdpre/)
29
-
30
- pip install cfdpre
31
-
32
- - The Python module can also be installed using pip on Windows, macOS, and Linux.
33
-
34
- Documentation
35
- =============
36
-
37
- In progress - not yet made!
38
-
39
- Users' Group
40
- ============
41
-
42
- - **Users Group:** https://groups.google.com/g/cfdpre
43
-
44
- Source Code
45
- ===========
46
-
47
- - **Source code:** https://github.com/phsheth/cfdpre
48
-
49
- Call for Contributions
50
- ----------------------
51
-
52
- The CFDPre project welcomes your expertise and enthusiasm! Better to discuss before strarting to contribute!
53
-
54
-
55
- ## Project Log
56
- January 2025:
57
- 1. Created Library
58
-
59
-
60
- ## Project Road Map:
61
-
62
- 1. Documentation for existing functionality.
63
- 2. Include example data within library.
64
-
65
-
66
-
67
-
68
-
69
-
File without changes
File without changes
File without changes
File without changes