|
Modules | |
| 1D Meshing Hypotheses | |
| 2D Meshing Hypotheses | |
| Max Element Volume hypothesis | |
| Netgen 2D and 3D hypotheses | |
| GHS3D Parameters hypothesis | |
| BLSURF Parameters hypothesis | |
| Hexotic Parameters hypothesis | |
| Quadrangle Parameters hypothesis | |
| Additional Hypotheses | |
Functions | |
| def | smeshDC::Mesh.AddHypothesis |
| Assigns a hypothesis. | |
| def | smeshDC::Mesh.RemoveHypothesis |
| Unassigns a hypothesis. | |
| def | smeshDC::Mesh.GetHypothesisList |
| Gets the list of hypotheses added on a geometry. | |
| def | smeshDC::Mesh.RemoveGlobalHypotheses |
| Removes all global hypotheses. | |
| def smeshDC.Mesh.AddHypothesis | ( | self, | |
| hyp, | |||
geom = 0 |
|||
| ) | [inherited] |
Assigns a hypothesis.
| hyp | a hypothesis to assign |
| geom | a subhape of mesh geometry |
Definition at line 1615 of file smeshDC.py.
01616 : 01617 if isinstance( hyp, Mesh_Algorithm ): 01618 hyp = hyp.GetAlgorithm() 01619 pass 01620 if not geom: 01621 geom = self.geom 01622 if not geom: 01623 geom = self.mesh.GetShapeToMesh() 01624 pass 01625 status = self.mesh.AddHypothesis(geom, hyp) 01626 isAlgo = hyp._narrow( SMESH_Algo ) 01627 hyp_name = GetName( hyp ) 01628 geom_name = "" 01629 if geom: 01630 geom_name = GetName( geom ) 01631 TreatHypoStatus( status, hyp_name, geom_name, isAlgo ) 01632 return status
| def smeshDC.Mesh.GetHypothesisList | ( | self, | |
| geom | |||
| ) | [inherited] |
Gets the list of hypotheses added on a geometry.
| geom | a subshape of mesh geometry |
Definition at line 1652 of file smeshDC.py.
| def smeshDC.Mesh.RemoveGlobalHypotheses | ( | self | ) | [inherited] |
Removes all global hypotheses.
Definition at line 1657 of file smeshDC.py.
| def smeshDC.Mesh.RemoveHypothesis | ( | self, | |
| hyp, | |||
geom = 0 |
|||
| ) | [inherited] |
Unassigns a hypothesis.
| hyp | a hypothesis to unassign |
| geom | a subshape of mesh geometry |
Definition at line 1638 of file smeshDC.py.