OdbSequenceAnalyticSurfaceSegment object

A sequence of AnalyticSurfaceSegment describing an analytic surface profile.

The following topics are discussed:

Access

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

Start(...)

This method adds a AnalyticSurfaceSegment describing the first segment of the surface profile.

Prototype

void
Start(const odb_SequenceFloat& origin);

Required arguments

origin

An odb_SequenceFloat specifying the coordinates of start point.

Optional arguments

None.

Return value

None.

Exceptions

None.

Line(...)

This method adds a AnalyticSurfaceSegment describing the line segment of the surface profile.

Prototype

void
Line(const odb_SequenceFloat& endPoint);

Required arguments

endPoint

An odb_SequenceFloat specifying the coordinates of end point.

Optional arguments

None.

Return value

None.

Exceptions

None.

Circle(...)

This method adds a AnalyticSurfaceSegment describing a circular segment of the surface profile.

Prototype

void
Circle(const odb_SequenceFloat& center,
       const odb_SequenceFloat& endPoint);

Required arguments

center

An odb_SequenceFloat specifying the coordinates of center of the circular segment.

endPoint

An odb_SequenceFloat specifying the coordinates of end point of the circular segment.

Optional arguments

None.

Return value

None.

Exceptions

None.

Parabola(...)

This method adds a AnalyticSurfaceSegment describing a parabolic segment of the surface profile.

Prototype

void
Parabola(const odb_SequenceFloat& middlePoint,
         const odb_SequenceFloat& endPoint);

Required arguments

middlePoint

An odb_SequenceFloat specifying the coordinates of middle point of the parabolic segment.

endPoint

An odb_SequenceFloat specifying the coordinates of end point of the parabolic segment.

Optional arguments

None.

Return value

None.

Exceptions

None.

Members

The OdbSequenceAnalyticSurfaceSegment object has no members.