From 80339e04d2d16681c8d1e9699b161612c709dc39 Mon Sep 17 00:00:00 2001
From: Romain Boman <romain.boman@gmail.com>
Date: Wed, 8 Jun 2022 08:53:08 +0200
Subject: [PATCH] coarser mesh

---
 cxxfem/tests/beam3d.py | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/cxxfem/tests/beam3d.py b/cxxfem/tests/beam3d.py
index ad4b932..7e2b254 100644
--- a/cxxfem/tests/beam3d.py
+++ b/cxxfem/tests/beam3d.py
@@ -9,25 +9,25 @@ fem.debug_level(0)
 if __name__ == "__main__":
 
     # fine mesh
-    pars = {
-        "Lx": 5.0, # width
-        "Ly": 1.0, # depth
-        "Lz": 1.0, # height/thickness
-        "nx": 60,         
-        "ny": 30,
-        "nz": 30
-    }
-
-    # same as python
     # pars = {
     #     "Lx": 5.0, # width
     #     "Ly": 1.0, # depth
     #     "Lz": 1.0, # height/thickness
-    #     "nx": 15,         
-    #     "ny": 2,
-    #     "nz": 10
+    #     "nx": 60,         
+    #     "ny": 30,
+    #     "nz": 30
     # }
 
+    # same as python
+    pars = {
+        "Lx": 5.0, # width
+        "Ly": 1.0, # depth
+        "Lz": 1.0, # height/thickness
+        "nx": 15,         
+        "ny": 2,
+        "nz": 10
+    }
+
     # mono-element for debug
     # pars = {
     #     "Lx": 5.0, # width
-- 
GitLab