aboutsummaryrefslogtreecommitdiff
path: root/boltzgen/lbm/lattice/D3Q7.py
diff options
context:
space:
mode:
Diffstat (limited to 'boltzgen/lbm/lattice/D3Q7.py')
-rw-r--r--boltzgen/lbm/lattice/D3Q7.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/boltzgen/lbm/lattice/D3Q7.py b/boltzgen/lbm/lattice/D3Q7.py
new file mode 100644
index 0000000..04e16a3
--- /dev/null
+++ b/boltzgen/lbm/lattice/D3Q7.py
@@ -0,0 +1,18 @@
+from sympy import *
+
+q = 7
+d = 3
+
+c = [ Matrix(x) for x in [
+ ( 0, 0, 1),
+ ( 0, 1, 0), (-1, 0, 0), ( 0, 0, 0), ( 1, 0, 0), ( 0, -1, 0),
+ ( 0, 0,-1)
+]]
+
+w = [Rational(*x) for x in [
+ (1,8),
+ (1,8), (1,8), (1,4), (1,8), (1,8),
+ (1,8)
+]]
+
+c_s = sqrt(Rational(1,4))