The AnalyticSurface object is a geometric surface that can be described with straight and/or curved line segments.
odb.parts()[name].analyticSurface() odb.rootAssembly().instances()[name].analyticSurface() odb.steps()[name].frames(i).fieldOutputs()[name].values(i).instance()\ .analyticSurface()
The AnalyticSurface object has the following members:
odb_String name() const; odb_String type() const; double filletRadius() const; odb_SequenceSequenceFloat localCoordData() const; odb_SequenceAnalyticSurfaceSegment segments() const;
An odb_String specifying the name of the analytic surface.
An odb_Enum::odb_typeEnum specifying the type of AnalyticSurface object. Possible values are odb_Enum::SEGMENTS, odb_Enum::CYLINDER, and odb_Enum::REVOLUTION.
A Double specifying radius of curvature to smooth discontinuities between adjoining segments. The default value is 0.0.
An OdbSequenceAnalyticSurfaceSegment object specifying the profile associated with the surface.
An odb_SequenceSequenceFloat specifying the global coordinates of points representing the local coordinate system, if used.