Segment 1D algorithm for discretization of a set of adjacent edges as one edge.
More...
|
def | __init__ |
| Private constructor. More...
|
|
def | LocalLength |
| Defines "LocalLength" hypothesis to cut an edge in several segments with the same length. More...
|
|
def | MaxSize |
| Defines "MaxSize" hypothesis to cut an edge into segments not longer than given value. More...
|
|
def | NumberOfSegments |
| Defines "NumberOfSegments" hypothesis to cut an edge in a fixed number of segments. More...
|
|
def | Adaptive |
| Defines "Adaptive" hypothesis to cut an edge into segments keeping segment size within the given range and considering (1) deflection of segments from the edge and (2) distance from segments to closest edges and faces to have segment length not longer than two times shortest distances to edges and faces. More...
|
|
def | Arithmetic1D |
| Defines "Arithmetic1D" hypothesis to cut an edge in several segments with a length that changes in arithmetic progression. More...
|
|
def | GeometricProgression |
| Defines "GeometricProgression" hypothesis to cut an edge in several segments with a length that changes in Geometric progression. More...
|
|
def | FixedPoints1D |
| Defines "FixedPoints1D" hypothesis to cut an edge using parameter on curve from 0 to 1 (additionally it is neecessary to check orientation of edges and create list of reversed edges if it is needed) and sets numbers of segments between given points (default values are 1) More...
|
|
def | StartEndLength |
| Defines "StartEndLength" hypothesis to cut an edge in several segments with increasing geometric length. More...
|
|
def | Deflection1D |
| Defines "Deflection1D" hypothesis. More...
|
|
def | Propagation |
| Defines "Propagation" hypothesis that propagates 1D hypotheses from an edge where this hypothesis is assigned to on all other edges that are at the opposite side in case of quadrangular faces This hypothesis should be assigned to an edge to propagate a hypothesis from. More...
|
|
def | PropagationOfDistribution |
| Defines "Propagation of Node Distribution" hypothesis that propagates distribution of nodes from an edge where this hypothesis is assigned to, to opposite edges of quadrangular faces, so that number of segments on all these edges will be the same, as well as relations between segment lengths. More...
|
|
def | AutomaticLength |
| Defines "AutomaticLength" hypothesis. More...
|
|
def | LengthNearVertex |
| Defines "SegmentLengthAroundVertex" hypothesis. More...
|
|
def | QuadraticMesh |
| Defines "QuadraticMesh" hypothesis, forcing construction of quadratic edges. More...
|
|
Segment 1D algorithm for discretization of a set of adjacent edges as one edge.
It is created by calling smeshBuilder.Mesh.Segment(smeshBuilder.COMPOSITE,geom=0)