FEM: examples, move base setups in separate modules

This commit is contained in:
Bernd Hahnebach
2021-06-16 15:55:45 +02:00
parent cb1af60183
commit 6466aadbce
10 changed files with 202 additions and 149 deletions

View File

@@ -54,11 +54,13 @@ class FemExamples(QtGui.QWidget):
path = os.path.dirname(os.path.realpath(__file__))
files = [f for f in os.listdir(str(path))]
not_files = [
"__init__.py",
"__pycache__",
"boxanalysis_base.py",
"ccx_cantilever_base.py",
"examplesgui.py",
"manager.py",
"meshes",
"__init__.py",
"__pycache__",
]
files = [str(f) for f in files if f not in not_files]