pyfvtool 0.6.0__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.
pyfvtool/__init__.py ADDED
@@ -0,0 +1,32 @@
1
+ __version__ = "0.6.0"
2
+
3
+ __author__ = ["Ali A. Eftekhari", "Martinus H. V. Werts"]
4
+
5
+ __email__ = ["aliak@dtu.dk", "martinus.werts@univ-angers.fr"]
6
+
7
+ __copyright__ = "Copyright 2023-2026, The Authors"
8
+
9
+ __license__ = "MIT License"
10
+
11
+
12
+
13
+ from .mesh import Grid1D, CylindricalGrid1D, SphericalGrid1D
14
+ from .mesh import Grid2D, CylindricalGrid2D, PolarGrid2D
15
+ from .mesh import Grid3D, CylindricalGrid3D, SphericalGrid3D
16
+ from .advection import convectionTerm, convectionTVDupwindRHSTerm,\
17
+ convectionUpwindTerm
18
+ from .diffusion import diffusionTerm
19
+ from .source import linearSourceTerm, constantSourceTerm, transientTerm
20
+ from .boundary import BoundaryConditions, boundaryConditionsTerm
21
+ from .utilities import fluxLimiter
22
+ from .calculus import gradient, gradientFixedBC
23
+ from .calculus import divergence, divergenceTerm
24
+ from .averaging import linearMean, arithmeticMean, upwindMean,\
25
+ harmonicMean, geometricMean, tvdMean
26
+ from .pdesolver import solveMatrixPDE, solvePDE, solveExplicitPDE
27
+ from .cell import CellVariable
28
+ from .cell import funceval, celleval
29
+ from .cell import cellLocations
30
+ from .face import FaceVariable, faceeval
31
+ from .face import faceLocations
32
+ from .visualization import visualizeCells