AnalyticSurfaceSegment object

An individual segment of the analytic surface.

This page discusses:

Access

odb.parts()[name].analyticSurface().segments()[i]
odb.rootAssembly().instances()[name].analyticSurface().segments()[i]
odb.steps()[name].frames(i).fieldOutputs()[name].values(i).instance()\
.analyticSurface().segments()[i]

Members

The AnalyticSurfaceSegment object has the following members:

Prototype

odb_String type() const;
odb_SequenceSequenceFloat data() const;
type

An odb_String specifying the type of AnalyticSurfaceSegment. Possible odb_String names are START, LINE, CIRCLE, and PARABOLA.

data

An odb_SequenceSequenceFloat specifying the coordinates of points representing the segment of the AnalyticSurface object. If type=odb_Enum::CIRCLE, the first row contains coordinates of the end point and the second row contains coordinates of the center point. If type=odb_Enum::PARABOLA, the first row contains coordinates of the middle point and the second row contains coordinates of the end point. If type=odb_Enum::START or type=odb_Enum::LINE, a single row contains coordinates of the start/end point.