FEM MeshDisplayInfo: Difference between revisions

From FreeCAD Documentation
No edit summary
mNo edit summary
Line 53: Line 53:
# To close the FEM Mesh Info window, click {{Button|OK}}.
# To close the FEM Mesh Info window, click {{Button|OK}}.


==Scripting==
<!--T:3-->

<br />
{{code|code=
print(App.ActiveDocument.Box_Mesh.FemMesh)
}}





Revision as of 12:53, 10 August 2021

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.

FEM_MeshDisplayInfo

Menu location
Context menu on mesh object → Display FEM mesh info
Workbenches
FEM
Default shortcut
None
Introduced in version
-
See also
FEM tutorial

Description

Displays basic statistics of existing mesh - number of nodes and elements of each type. Particularly, total number of the following features is shown:

  • Nodes,
  • Edges,
  • Faces,
  • Polygons,
  • Volumes,
  • Polyhedrons,
  • Linear edges,
  • Linear faces,
  • Linear volumes,
  • Quadratic edges,
  • Quadratic faces,
  • Quadratic triangles,
  • Quadratic quadrangles,
  • Quadratic volumes,
  • Quadratic hexahedrons,
  • Quadratic tetrahedrons,
  • Quadratic prisms,
  • Quadratic pyramids.

Usage

  1. Create finite element mesh first (using one of the available techniques).
  2. Select the mesh in the Tree view.
  3. Right click on it and choose the Display FEM mesh info option.
  4. To close the FEM Mesh Info window, click OK.

Scripting

print(App.ActiveDocument.Box_Mesh.FemMesh)