From 2445bc980c790149d41eef1fd018ed8d501cf86f Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Wed, 16 Jun 2021 16:23:47 +0200 Subject: [PATCH] FEM: examples, fix mesh information --- src/Mod/Fem/femexamples/constraint_contact_shell_shell.py | 2 +- .../Fem/femexamples/material_multiple_bendingbeam_fivefaces.py | 2 +- src/Mod/Fem/femexamples/rc_wall_2d.py | 2 +- src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py | 2 +- src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py | 2 +- src/Mod/Fem/femexamples/thermomech_flow1d.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py b/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py index dad36eda1a..3b9a8fa7ae 100644 --- a/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py +++ b/src/Mod/Fem/femexamples/constraint_contact_shell_shell.py @@ -47,7 +47,7 @@ from .manager import init_doc def get_information(): return { "name": "Constraint Constact Shell Shell", - "meshtype": "solid", + "meshtype": "face", "meshelement": "Tria3", "constraints": ["fixed", "force", "contact"], "solvers": ["calculix"], diff --git a/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py b/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py index 954494f489..70f281252c 100644 --- a/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py +++ b/src/Mod/Fem/femexamples/material_multiple_bendingbeam_fivefaces.py @@ -41,7 +41,7 @@ from .manager import init_doc def get_information(): return { "name": "Multimaterial bending beam 5 faces", - "meshtype": "solid", + "meshtype": "face", "meshelement": "Tria6", "constraints": ["fixed", "force"], "solvers": ["calculix"], diff --git a/src/Mod/Fem/femexamples/rc_wall_2d.py b/src/Mod/Fem/femexamples/rc_wall_2d.py index 466ae59bda..bbfb704604 100644 --- a/src/Mod/Fem/femexamples/rc_wall_2d.py +++ b/src/Mod/Fem/femexamples/rc_wall_2d.py @@ -47,7 +47,7 @@ from .manager import init_doc def get_information(): return { "name": "RC Wall 2D", - "meshtype": "solid", + "meshtype": "face", "meshelement": "Tria6", "constraints": ["fixed", "force", "displacement"], "solvers": ["calculix"], diff --git a/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py b/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py index 18752dd159..ed4f00b33a 100644 --- a/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py +++ b/src/Mod/Fem/femexamples/square_pipe_end_twisted_edgeforces.py @@ -43,7 +43,7 @@ from .manager import init_doc def get_information(): return { "name": "Square Pipe End Twisted Edgeforces", - "meshtype": "solid", + "meshtype": "face", "meshelement": "Tria6", "constraints": ["force", "fixed"], "solvers": ["calculix"], diff --git a/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py b/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py index e6adbf2a34..6cd015bdcf 100644 --- a/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py +++ b/src/Mod/Fem/femexamples/square_pipe_end_twisted_nodeforces.py @@ -43,7 +43,7 @@ from .manager import init_doc def get_information(): return { "name": "Square Pipe End Twisted Nodeforces", - "meshtype": "solid", + "meshtype": "face", "meshelement": "Tria6", "constraints": ["force", "fixed"], "solvers": ["calculix"], diff --git a/src/Mod/Fem/femexamples/thermomech_flow1d.py b/src/Mod/Fem/femexamples/thermomech_flow1d.py index ad40ff599a..e9b7e00286 100644 --- a/src/Mod/Fem/femexamples/thermomech_flow1d.py +++ b/src/Mod/Fem/femexamples/thermomech_flow1d.py @@ -46,7 +46,7 @@ from .manager import init_doc def get_information(): return { "name": "Thermomech Flow 1D", - "meshtype": "solid", + "meshtype": "edge", "meshelement": "Seg3", "constraints": ["self weight"], "solvers": ["calculix"],