FemMesh class Set the Part shape to mesh Update the internal mesh structure Add hypothesis Set some standard hypotheses for the whole shape Add a node by setting (x,y,z). Add an edge by setting two node indices. Add a face by setting three node indices. Add a quad by setting four node indices. Add a volume by setting an arbitrary number of node indices. Read in a various FEM mesh file formats. read(file.endingToExportTo) supported formats: DAT, INP, MED, STL, UNV, VTK, Z88 Write out various FEM mesh file formats. write(file.endingToExportTo) supported formats: BDF, DAT, INP, MED, STL, UNV, VTK, Z88 Write out as ABAQUS inp writeABAQUS(file, int elemParam, bool groupParam) elemParam: 0 = all elements, 1 = highest elements only, 2 = FEM elements only (only edges not belonging to faces and faces not belonging to volumes) groupParam: true = write group data, false = do not write group data Use a Placement object to perform a translation or rotation Make a copy of this FEM mesh. Return a list of face IDs which belong to a TopoFace Return a list of edge IDs which belong to a TopoEdge Return a dict of volume IDs and face IDs which belong to a TopoFace Return a dict of volume IDs and ccx face numbers which belong to a TopoFace Get the node position vector by a Node-ID Return a list of node IDs which belong to a TopoSolid Return a list of node IDs which belong to a TopoFace Return a list of node IDs which belong to a TopoEdge Return a list of node IDs which belong to a TopoVertex Return a tuple of node IDs to a given element ID Return a string of group name to a given group ID Return a string of group element type to a given group ID Return a tuple of ElementIDs to a given group ID Return the element type of a given ID Return a tuple of IDs to a given element type Dictionary of Nodes by ID (int ID:Vector()) Number of nodes in the Mesh. Tuple of edge IDs Tuple of edge IDs which does not belong to any face (and thus not belong to any volume too) Number of edges in the Mesh. Tuple of face IDs Tuple of face IDs which does not belong to any volume Number of Faces in the Mesh. Number of Triangles in the Mesh. Number of Quadrangles in the Mesh. Number of Quadrangles in the Mesh. Tuple of volume IDs Number of Volumes in the Mesh. Number of Tetras in the Mesh. Number of Hexas in the Mesh. Number of Pyramids in the Mesh. Number of Prisms in the Mesh. Number of Polyhedrons in the Mesh. Number of SubMeshs in the Mesh. Number of Groups in the Mesh. Tuple of Group IDs. Volume of the mesh.