aboutsummaryrefslogtreecommitdiff
path: root/lid_driven_cavity.py
diff options
context:
space:
mode:
Diffstat (limited to 'lid_driven_cavity.py')
-rw-r--r--lid_driven_cavity.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/lid_driven_cavity.py b/lid_driven_cavity.py
index b8a59db..db51e73 100644
--- a/lid_driven_cavity.py
+++ b/lid_driven_cavity.py
@@ -31,6 +31,17 @@ def box(nX, nY, x, y):
else:
return 1
+boundary = """
+ if ( m == 2 ) {
+ u_0 = 0.0;
+ u_1 = 0.0;
+ }
+ if ( m == 3 ) {
+ u_0 = 0.1;
+ u_1 = 0.0;
+ }
+"""
+
nUpdates = 100000
nStat = 5000
@@ -38,7 +49,7 @@ moments = []
print("Initializing simulation...\n")
-lattice = Lattice(nX = 256, nY = 256, tau = 0.56, geometry = box)
+lattice = Lattice(nX = 256, nY = 256, tau = 0.56, geometry = box, boundary_src = boundary)
print("Starting simulation using %d cells...\n" % lattice.nCells)