|
Functions | |
| def | smeshDC::Mesh.Smooth |
| Smoothes elements. | |
| def | smeshDC::Mesh.SmoothObject |
| Smoothes elements which belong to the given object. | |
| def | smeshDC::Mesh.SmoothParametric |
| Parametrically smoothes the given elements. | |
| def | smeshDC::Mesh.SmoothParametricObject |
| Parametrically smoothes the elements which belong to the given object. | |
| def smeshDC.Mesh.Smooth | ( | self, | |
| IDsOfElements, | |||
| IDsOfFixedNodes, | |||
| MaxNbOfIterations, | |||
| MaxAspectRatio, | |||
| Method | |||
| ) | [inherited] |
Smoothes elements.
| IDsOfElements | the list if ids of elements to smooth |
| IDsOfFixedNodes | the list of ids of fixed nodes. Note that nodes built on edges and boundary nodes are always fixed. |
| MaxNbOfIterations | the maximum number of iterations |
| MaxAspectRatio | varies in range [1.0, inf] |
| Method | is Laplacian(LAPLACIAN_SMOOTH) or Centroidal(CENTROIDAL_SMOOTH) |
Definition at line 3004 of file smeshDC.py.
03006 : 03007 if IDsOfElements == []: 03008 IDsOfElements = self.GetElementsId() 03009 MaxNbOfIterations,MaxAspectRatio,Parameters = geompyDC.ParseParameters(MaxNbOfIterations,MaxAspectRatio) 03010 self.mesh.SetParameters(Parameters) 03011 return self.editor.Smooth(IDsOfElements, IDsOfFixedNodes, 03012 MaxNbOfIterations, MaxAspectRatio, Method)
| def smeshDC.Mesh.SmoothObject | ( | self, | |
| theObject, | |||
| IDsOfFixedNodes, | |||
| MaxNbOfIterations, | |||
| MaxAspectRatio, | |||
| Method | |||
| ) | [inherited] |
Smoothes elements which belong to the given object.
| theObject | the object to smooth |
| IDsOfFixedNodes | the list of ids of fixed nodes. Note that nodes built on edges and boundary nodes are always fixed. |
| MaxNbOfIterations | the maximum number of iterations |
| MaxAspectRatio | varies in range [1.0, inf] |
| Method | is Laplacian(LAPLACIAN_SMOOTH) or Centroidal(CENTROIDAL_SMOOTH) |
Definition at line 3022 of file smeshDC.py.
| def smeshDC.Mesh.SmoothParametric | ( | self, | |
| IDsOfElements, | |||
| IDsOfFixedNodes, | |||
| MaxNbOfIterations, | |||
| MaxAspectRatio, | |||
| Method | |||
| ) | [inherited] |
Parametrically smoothes the given elements.
| IDsOfElements | the list if ids of elements to smooth |
| IDsOfFixedNodes | the list of ids of fixed nodes. Note that nodes built on edges and boundary nodes are always fixed. |
| MaxNbOfIterations | the maximum number of iterations |
| MaxAspectRatio | varies in range [1.0, inf] |
| Method | is Laplacian(LAPLACIAN_SMOOTH) or Centroidal(CENTROIDAL_SMOOTH) |
Definition at line 3038 of file smeshDC.py.
03040 : 03041 if IDsOfElements == []: 03042 IDsOfElements = self.GetElementsId() 03043 MaxNbOfIterations,MaxAspectRatio,Parameters = geompyDC.ParseParameters(MaxNbOfIterations,MaxAspectRatio) 03044 self.mesh.SetParameters(Parameters) 03045 return self.editor.SmoothParametric(IDsOfElements, IDsOfFixedNodes, 03046 MaxNbOfIterations, MaxAspectRatio, Method)
| def smeshDC.Mesh.SmoothParametricObject | ( | self, | |
| theObject, | |||
| IDsOfFixedNodes, | |||
| MaxNbOfIterations, | |||
| MaxAspectRatio, | |||
| Method | |||
| ) | [inherited] |
Parametrically smoothes the elements which belong to the given object.
| theObject | the object to smooth |
| IDsOfFixedNodes | the list of ids of fixed nodes. Note that nodes built on edges and boundary nodes are always fixed. |
| MaxNbOfIterations | the maximum number of iterations |
| MaxAspectRatio | varies in range [1.0, inf] |
| Method | Laplacian(LAPLACIAN_SMOOTH) or Centroidal(CENTROIDAL_SMOOTH) |
Definition at line 3056 of file smeshDC.py.