|
Functions | |
| def | smeshDC::Mesh.QuadToTri |
| Splits quadrangles into triangles. | |
| def | smeshDC::Mesh.QuadToTriObject |
| Splits quadrangles into triangles. | |
| def | smeshDC::Mesh.SplitQuad |
| Splits quadrangles into triangles. | |
| def | smeshDC::Mesh.SplitQuadObject |
| Splits quadrangles into triangles. | |
| def | smeshDC::Mesh.BestSplit |
| Finds a better splitting of the given quadrangle. | |
| def | smeshDC::Mesh.SplitVolumesIntoTetra |
| Splits volumic elements into tetrahedrons. | |
| def smeshDC.Mesh.BestSplit | ( | self, | |
| IDOfQuad, | |||
| theCriterion | |||
| ) | [inherited] |
Finds a better splitting of the given quadrangle.
| IDOfQuad | the ID of the quadrangle to be splitted. |
| theCriterion | FT_...; a criterion to choose a diagonal for splitting. |
Definition at line 2838 of file smeshDC.py.
| def smeshDC.Mesh.QuadToTri | ( | self, | |
| IDsOfElements, | |||
| theCriterion | |||
| ) | [inherited] |
Splits quadrangles into triangles.
| IDsOfElements | the faces to be splitted. |
| theCriterion | FT_...; used to choose a diagonal for splitting. |
Definition at line 2797 of file smeshDC.py.
| def smeshDC.Mesh.QuadToTriObject | ( | self, | |
| theObject, | |||
| theCriterion | |||
| ) | [inherited] |
Splits quadrangles into triangles.
| theObject | the object from which the list of elements is taken, this is mesh, submesh or group |
| theCriterion | FT_...; used to choose a diagonal for splitting. |
Definition at line 2807 of file smeshDC.py.
| def smeshDC.Mesh.SplitQuad | ( | self, | |
| IDsOfElements, | |||
| Diag13 | |||
| ) | [inherited] |
Splits quadrangles into triangles.
| IDsOfElements | the faces to be splitted |
| Diag13 | is used to choose a diagonal for splitting. |
Definition at line 2817 of file smeshDC.py.
| def smeshDC.Mesh.SplitQuadObject | ( | self, | |
| theObject, | |||
| Diag13 | |||
| ) | [inherited] |
Splits quadrangles into triangles.
| theObject | the object from which the list of elements is taken, this is mesh, submesh or group |
| Diag13 | is used to choose a diagonal for splitting. |
Definition at line 2827 of file smeshDC.py.
| def smeshDC.Mesh.SplitVolumesIntoTetra | ( | self, | |
| elemIDs, | |||
method = Hex_5Tet |
|||
| ) | [inherited] |
Splits volumic elements into tetrahedrons.
| elemIDs | either list of elements or mesh or group or submesh |
| method | flags passing splitting method: Hex_5Tet, Hex_6Tet, Hex_24Tet Hex_5Tet - split the hexahedron into 5 tetrahedrons, etc |
Definition at line 2846 of file smeshDC.py.