Path and Probe¶
Path commands are used to define a line through your model by specifying a series of points. You can view results along the path in the form of an X-Y plot. Probe commands are used to determine model data and analysis results at selected locations.
Create paths in Session¶
- class PathSession[源代码]¶
基类:
SessionBase
Public Data Attributes:
Inherited from
SessionBase
A Boolean specifying whether an Abaqus interactive session is running.
A Boolean specifying whether Abaqus is executing a replay file.
A Float specifying the memory usage value for the Abaqus/CAE kernel process in megabytes.
A Float specifying the maximum value for the memory usage for the Abaqus/CAE kernel process in megabytes.
A Float specifying the limit for the memory use for the Abaqus/CAE kernel process in megabytes.
A repository of Color objects.
A JournalOptions object specifying how to record selection of geometry in the journal and replay files.
A MemoryReductionOptions object specifying options for running in reduced memory mode.
A NodeQuery object specifying nodes and their coordinates in a path.
A ConstrainedSketcherOptions object specifying common options for all sketches.
A ViewerOptions object.
An AnimationOptions object.
An AVIOptions object.
An ImageAnimationOptions object.
An ImageAnimation object.
A QuickTimeOptions object.
A repository of Viewport objects.
A RepositorySupport object.
A FieldReportOptions object.
A FreeBodyReportOptions object.
A FieldReportOptions object.
A FreeBodyReportOptions object.
A repository of Odb objects.
A repository of ScratchOdb objects.
A DefaultOdbDisplay object.
A DefaultPlot object.
A DefaultChartOptions object.
A repository of OdbData objects.
A repository of MdbData objects.
A repository of Path objects.
A repository of FreeBody objects.
A repository of Stream objects.
A repository of Spectrum objects.
A CurrentProbeValues object.
A ProbeOptions object.
A ProbeOptions object.
A ProbeReport object.
A ProbeReport object.
A SelectedProbeValues object.
A PrintOptions object.
An EpsOptions object.
A PageSetupOptions object.
A PngOptions object.
A PsOptions object.
A SvgOptions object.
A TiffOptions object.
An AutoColors object specifying the color palette to be used for color coding.
An AutoColors object specifying the color palette to be used forXYCurve objects.
A repository of XYData objects.
A repository of XYCurve objects.
A repository of XYPlot objects.
A repository of Chart objects.
An XYReportOptions object.
An XYReportOptions object.
A repository of View objects.
A repository of NetworkDatabaseConnector objects.
A repository of DisplayGroup objects.
A GraphicsInfo object.
A GraphicsOptions object.
A GraphicsOptions object.
A ViewportAnnotationOptions object.
A repository of Queue objects.
A String specifying the name of the current viewport.
A Dictionary object specifying the viewports and their associated models.
A repository of Image objects.
A repository of Movie objects.
A LightOptions object.
A DrawingArea object.
A MesherOptions object specifying how to control default settings in the Mesh module.
A repository of Drawing objects.
Public Methods:
Path
(name, type, expression, ...)This method creates a Path object.
Spectrum
(name, colors)This method creates a Spectrum object and places it in the spectrums repository.
Stream
(name, numPointsOnRake[, pointA, ...])This method creates aStream object and places it in the streams repository.
Inherited from
SessionBase
setValues
([kernelMemoryLimit])This method modifies the Session object.
enableCADConnection
(CADName[, portNum])This method enables the Abaqus/CAE listening port for the specified CAD system.
This method checks the status of CAD Connection.
disableCADConnection
(CADName)This method disables an associative import CAD connection that was enabled.
enableParameterUpdate
(CADName, CADVersion[, ...])This method enables parameter updates for ProE and NX by establishing a connection with the listening port previously setup by the CAD application.
setCADPortNumber
(CADName, Port)This method enables parameter updates for CATIA V5 and CATIA V6 by establishing a connection with the listening port previously setup by the CAD application.
updateCADParameters
(modelName, CADName, ...)This method updates the parameters for the specified model using the specified parameter file.
disableParameterUpdate
(CADName)This method disables an associative CAD connection using parameters.
printToFile
(fileName[, format, ...])This method prints canvas objects to a file using the attributes stored in the PrintOptions object and the appropriate format options object.
printToPrinter
([printCommand, numCopies, ...])This method prints canvas objects to a Windows printer or to a PostScript printer.
saveOptions
(directory)This method saves your customized display settings.
writeVrmlFile
(fileName[, format, canvasObjects])This method exports the current viewport objects to a file.
write3DXMLFile
(fileName[, format, canvasObjects])This method exports the current viewport objects to a file.
writeOBJFile
(fileName[, canvasObjects])This method exports the current viewport objects to a file.
Member Details:
- Path(
- name,
- type,
- expression,
- circleDefinition,
- numSegments,
- startAngle,
- endAngle,
- radius,
- radialAngle,
- startRadius,
- endRadius,
This method creates a Path object.
备注
This function can be accessed by:
session.Path
备注
Check Path on help.3ds.com/2022.
- 参数:¶
- name¶
A String specifying the repository key.
- type¶
A SymbolicConstant specifying the type of path being created. Possible values are NODE_LIST, POINT_LIST, EDGE_LIST, CIRCUMFERENTIAL, and RADIAL.
- expression¶
A sequence specifying the nodes or points that make up the path. The definition of the path expression depends on the type argument.
If type = NODE_LIST, expression must be a sequence of sequences. Each inner sequence contains two items, the first item is a String specifying the name of a part instance, and the second item can be either a sequence of Ints or a sequence of Strings, each specifying a range of Ints.
If type = POINT_LIST, expression must be a sequence of tuples of three Floats, specifying the coordinates of each point.
If type = EDGE_LIST, expression must be a sequence of sequences. Each inner sequence contains two items, the first item is a String specifying the name of the part instance, and the second item is a sequence of tuples of four Ints that uniquely identify an element edge. The four Ints are: 1. The element label. 2. The element face index (one-based). 3. The face edge index (one-based). 4. The edge direction. A positive number specifies that the edge direction runs from the edge start node to the edge end node. A negative number specifies the opposite.
When type = CIRCUMFERENTIAL or RADIAL, expression must be a sequence of three tuples of three Floats, specifying the coordinates of the points used to define a coordinate system.
- circleDefinition¶
A SymbolicConstant specifying the method in which the circle is being defined. This argument is valid only when type = CIRCUMFERENTIAL or RADIAL. Possible values are ORIGIN_AXIS and POINT_ARC.When the value is ORIGIN_AXIS, the first two points in expression are points on the rotational axis and the third point lies on the x-axis. When the value is POINT_ARC, the three points in expression are points lying on the arc of the circle.
- numSegments¶
An Int specifying the number of equal segments in the path. This argument is valid only when type = CIRCUMFERENTIAL or RADIAL.
- startAngle¶
A Float specifying the start angle of the circumferential path. This argument is valid only when type = CIRCUMFERENTIAL.
- endAngle¶
A Float specifying the end angle of the circumferential path. This argument is valid only when type = CIRCUMFERENTIAL.
- radius¶
The SymbolicConstant CIRCLE_RADIUS or a Float specifying the radius of the circumferential path. This argument is valid only when type = CIRCUMFERENTIAL.
- radialAngle¶
A Float specifying the angle between the radial path and the X axis of the specified coordinate system. This argument is valid only when type = RADIAL.
- startRadius¶
The SymbolicConstant CIRCLE_RADIUS or a Float specifying the start radius of the radial path. This argument is valid only when type = RADIAL.
- endRadius¶
The SymbolicConstant CIRCLE_RADIUS or a Float specifying the end radius of the radial path. This argument is valid only when type = RADIAL.
- 返回:¶
A Path object.
- 返回类型:¶
- 抛出:¶
ModelError –
KeyError –
ValueError – When type = CIRCUMFERENTIAL or RADIAL, the three points specified in expression are collinear.
- Spectrum(name, colors)[源代码]¶
This method creates a Spectrum object and places it in the spectrums repository.
备注
This function can be accessed by:
session.Spectrum
备注
-
Stream(name, numPointsOnRake, pointA=
()
, pointB=()
, path=''
)[源代码]¶ This method creates aStream object and places it in the streams repository.
备注
This function can be accessed by:
session.Stream
备注
Check Stream on help.3ds.com/2022.
- 参数:¶
- name¶
A string name for the stream.
- numPointsOnRake¶
An integer specifying the number of points along the rake.
- pointA=
()
¶ A tuple of 3 floats specifying the starting point of the rake. Alternatively, a string representation of the node selected in the viewport.
- pointB=
()
¶ A tuple of 3 floats specifying the end point of the rake. Alternatively, a string representation of the node selected in the viewport.
- path=
''
¶ APath object that specifies the rake.
- 返回:¶
A Stream object.
- 返回类型:¶
Create free bodies in Session¶
- class FreeBody[源代码]¶
基类:
object
The FreeBody object defines a section across which resultant forces and moments are computed.
备注
This object can be accessed by:
import visualization session.freeBodies[name]
备注
Public Methods:
FreeBodyFromEdges
(name, edges[, ...])This method creates a FreeBody object and places it in the freeBodies repository.
FreeBodyFromFaces
(name, faces[, ...])This method creates a FreeBody object and places it in the freeBodies repository.
FreeBodyFromNodesElements
(name, elements, nodes)This method creates a FreeBody object and places it in the freeBodies repository.
Member Details:
- FreeBodyFromEdges(
- name,
- edges,
- summationLoc=
CENTROID
, - summationPoint=
()
, - componentResolution=
NORMAL_TANGENTIAL
, - csysName=
''
, This method creates a FreeBody object and places it in the freeBodies repository.
备注
This function can be accessed by:
session.FreeBodyFromEdges
备注
- 参数:¶
- name¶
A string name for the free body.
- edges¶
A DisplayGroup leaf object that specifies the physical constituents of the free body.
- summationLoc=
CENTROID
¶ A SymbolicConstant specifying the location of the summation point. Possible values are CENTROID, NODAL_AVERAGE and SPECIFY. The default value is CENTROID.
- summationPoint=
()
¶ A tuple of 3 floats specifying the summation point.
- componentResolution=
NORMAL_TANGENTIAL
¶ A SymbolicConstant specifying the component resolution. Possible values are NORMAL_TANGENTIAL and CSYS. The default value is NORMAL_TANGENTIAL.
- csysName=
''
¶ A string specifying the name of the coordinate system.
- 返回:¶
A FreeBody object.
- 返回类型:¶
- FreeBodyFromFaces(
- name,
- faces,
- summationLoc=
CENTROID
, - summationPoint=
()
, - componentResolution=
NORMAL_TANGENTIAL
, - csysName=
''
, This method creates a FreeBody object and places it in the freeBodies repository.
备注
This function can be accessed by:
session.FreeBodyFromEdges
备注
- 参数:¶
- name¶
A string name for the free body.
- faces¶
A DisplayGroup leaf object that specifies the physical constituents of the free body.
- summationLoc=
CENTROID
¶ A SymbolicConstant specifying the location of the summation point. Possible values are CENTROID, NODAL_AVERAGE and SPECIFY. The default value is CENTROID.
- summationPoint=
()
¶ A tuple of 3 floats specifying the summation point.
- componentResolution=
NORMAL_TANGENTIAL
¶ A SymbolicConstant specifying the component resolution. Possible values are NORMAL_TANGENTIAL and CSYS. The default value is NORMAL_TANGENTIAL.
- csysName=
''
¶ A string specifying the name of the coordinate system.
- 返回:¶
A FreeBody object.
- 返回类型:¶
- FreeBodyFromNodesElements(
- name,
- elements,
- nodes,
- summationLoc=
CENTROID
, - summationPoint=
()
, - componentResolution=
NORMAL_TANGENTIAL
, - csysName=
''
, This method creates a FreeBody object and places it in the freeBodies repository.
备注
This function can be accessed by:
session.FreeBodyFromEdges
- 参数:¶
- name¶
A string name for the free body.
- elements¶
A DisplayGroup leaf object that specifies the physical constituents of the free body.
- nodes¶
A DisplayGroup leaf object that specifies the physical constituents of the free body.
- summationLoc=
CENTROID
¶ A SymbolicConstant specifying the location of the summation point. Possible values are CENTROID, NODAL_AVERAGE and SPECIFY. The default value is CENTROID.
- summationPoint=
()
¶ A tuple of 3 floats specifying the summation point.
- componentResolution=
NORMAL_TANGENTIAL
¶ A SymbolicConstant specifying the component resolution. Possible values are NORMAL_TANGENTIAL and CSYS. The default value is NORMAL_TANGENTIAL.
- csysName=
''
¶ A string specifying the name of the coordinate system.
- 返回:¶
A FreeBody object.
- 返回类型:¶
Other Classes¶
- class CurrentProbeValues[源代码]¶
基类:
object
The CurrentProbeValues object has no constructor. The CurrentProbeValues object is created when you import the Visualization module.
备注
This object can be accessed by:
import visualization session.currentProbeValues
备注
Member Details:
- class NodeQuery[源代码]¶
基类:
object
The NodeQuery object specifies nodes and their coordinates in a path. The NodeQuery object has no constructor or methods. Abaqus creates the nodeQuery member when you import the visualization module.
备注
This object can be accessed by:
import visualization session.nodeQuery
备注
Member Details:
- class Path(
- name,
- type,
- expression,
- circleDefinition,
- numSegments,
- startAngle,
- endAngle,
- radius,
- radialAngle,
- startRadius,
- endRadius,
基类:
object
The Path object defines a line through your model by specifying a series of nodes or points.
备注
This object can be accessed by:
import visualization session.paths[name]
备注
Check Path on help.3ds.com/2022.
Member Details:
- circleDefinition : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant`[源代码]¶
A SymbolicConstant specifying the method in which the circle is being defined. This argument is valid only when type = CIRCUMFERENTIAL or RADIAL. Possible values are ORIGIN_AXIS and POINT_ARC.When the value is ORIGIN_AXIS, the first two points in expression are points on the rotational axis and the third point lies on the x-axis. When the value is POINT_ARC, the three points in expression are points lying on the arc of the circle.
-
coordinates : --is-rst--:py:class:`list`\ \[:py:class:`~typing.Sequence`\ \[:py:class:`float`]] =
[]
[源代码]¶ If type = NODE_LIST, coordinates is a sequence of tuples of three Floats. This can be used as the value for the expression argument when creating a Path object of type = POINT_LIST.
- endAngle : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the end angle of the circumferential path. This argument is valid only when type = CIRCUMFERENTIAL.
- endRadius : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant`, :py:class:`float`][源代码]¶
The SymbolicConstant CIRCLE_RADIUS or a Float specifying the end radius of the radial path. This argument is valid only when type = RADIAL.
- expression : --is-rst--:py:class:`tuple`[源代码]¶
of three Floats, specifying the coordinates of the points used to define a coordinate system.
- numSegments : --is-rst--:py:class:`int`[源代码]¶
An Int specifying the number of equal segments in the path. This argument is valid only when type = CIRCUMFERENTIAL or RADIAL.
- radialAngle : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the angle between the radial path and the X axis of the specified coordinate system. This argument is valid only when type = RADIAL.
- radius : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant`, :py:class:`float`][源代码]¶
The SymbolicConstant CIRCLE_RADIUS or a Float specifying the radius of the circumferential path. This argument is valid only when type = CIRCUMFERENTIAL.
- startAngle : --is-rst--:py:class:`float`[源代码]¶
A Float specifying the start angle of the circumferential path. This argument is valid only when type = CIRCUMFERENTIAL.
- class Spectrum(name, colors)[源代码]¶
基类:
object
The Spectrum object defines a color spectrum for the contour display.
备注
This object can be accessed by:
import visualization session.spectrums[name]
备注
Member Details:
-
class Stream(name, numPointsOnRake, pointA=
()
, pointB=()
, path=''
)[源代码]¶ 基类:
object
TheStream object defines a set of streamlines in fluid mechanics.
备注
This object can be accessed by:
import visualization session.streams[name]
备注
Check Stream on help.3ds.com/2022.
Member Details:
- class ProbeOptions[源代码]¶
基类:
object
The ProbeOptions object is used to store settings associated with probing a model or an.
X - Y plot. The ProbeOptions object has no constructor. Abaqus creates the defaultProbeOptions and the probeOptions members when you import the Visualization module. When probing is initiated for the first time, the values in the probeOptions member are initialized using the values from the defaultProbeOptions member.
备注
This object can be accessed by:
import visualization session.defaultProbeOptions session.probeOptions
备注
Member Details:
-
attachedElements : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the elements attached to a node when probeObject = ODB and probeEntity = NODE. The default value is ON.
-
baseCoordinates : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the base coordinates of a node when probeObject = ODB and probeEntity = NODE. The default value is ON.
-
deformedCoordinates : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the deformed coordinates of a node when probeObject = ODB and probeEntity = NODE. The default value is ON.
-
elementConnectivity : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the element connectivity. This member is valid when probeObject = ODB and probeEntity = ELEMENT. The default value is ON.
-
elementFieldResults : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the element field output results. This member is valid when probeObject = ODB, probeEntity = ELEMENT, and isFieldOutputAvailable = ON. The default value is ON.
-
elementID : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the element ID information. This member is valid when probeObject = ODB and probeEntity = ELEMENT. The default value is ON.
-
elementType : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the element type information. This member is valid when probeObject = ODB and probeEntity = ELEMENT. The default value is ON.
-
interpolateXy : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
0
[源代码]¶ A Boolean specifying whether to interpolate values within a line segment when probeObject = XYPlot. When interpolateXy = OFF, probing returns the nearest X - Y data point on the curve. When interpolateXy = ON, probing interpolates data to return a value at the nearest point on the curve. The default value is OFF.
-
isFieldOutputAvailable : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
0
[源代码]¶ A Boolean specifying whether field output is available for probing when probeObject = XYPlot. This member is read-only.
-
legend : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the legend for a curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
-
nodeFieldResults : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the node field output results. This member is valid when probeObject = ODB, probeEntity = NODE, and isFieldOutputAvailable = ON. The default value is ON.
-
nodeId : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the node ID when probeObject = ODB and probeEntity = NODE. The default value is ON.
-
partInstance : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the part instance information. This member is valid when probeObject = ODB. The default value is ON.
-
probeEntity : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant` =
'ELEMENT'
[源代码]¶ A SymbolicConstant specifying the entity being probed when probeObject = “ODB”. Possible values are NODE and ELEMENT. The default value is ELEMENT.
-
probeObject : --is-rst--:py:class:`str` =
''
[源代码]¶ A String specifying the type of the displayed object being probed. Possible values are “ODB” and “XYPlot”. This member is read-only.
- probeOutputPosition : --is-rst--:py:class:`~abaqus.UtilityAndView.SymbolicConstant.SymbolicConstant`[源代码]¶
A SymbolicConstant specifying the output position to probe for field output results when probeObject = “ODB”. Possible values are NODAL, INTEGRATION_POINT, ELEMENT_FACE, ELEMENT_NODAL, and ELEMENT_CENTROID.When probeEntity = NODE, the only possible value is NODAL. When probeEntity = ELEMENT, the only possible values are INTEGRATION_POINT, ELEMENT_FACE, ELEMENT_NODAL, and ELEMENT_CENTROID, and the default is INTEGRATION_POINT.
-
sequenceID : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the sequence ID of the point on the curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
- setValues(
- options=
None
, - probeEntity=
ELEMENT
, - probeOutputPosition=
None
, - partInstance=
1
, - elementID=
1
, - elementType=
1
, - elementConnectivity=
1
, - elementFieldResults=
1
, - nodeId=
1
, - baseCoordinates=
1
, - deformedCoordinates=
1
, - attachedElements=
1
, - nodeFieldResults=
1
, - legend=
1
, - xValue=
1
, - yValue=
1
, - sequenceID=
1
, - interpolateXy=
0
, This method modifies the settings on the ProbeOptions object.
- 参数:¶
- options=
None
¶ A ProbeOptions object from which values are to be copied. If other arguments are also supplied to setValues, they will override the values in options. The default value is None.
- probeEntity=
ELEMENT
¶ A SymbolicConstant specifying the entity being probed when probeObject = “ODB”. Possible values are NODE and ELEMENT. The default value is ELEMENT.
- probeOutputPosition=
None
¶ A SymbolicConstant specifying the output position to probe for field output results when probeObject = “ODB”. Possible values are NODAL, INTEGRATION_POINT, ELEMENT_FACE, ELEMENT_NODAL, and ELEMENT_CENTROID.When probeEntity = NODE, the only possible value is NODAL. When probeEntity = ELEMENT, the only possible values are INTEGRATION_POINT, ELEMENT_FACE, ELEMENT_NODAL, and ELEMENT_CENTROID, and the default is INTEGRATION_POINT.
- partInstance=
1
¶ A Boolean specifying whether to display the part instance information. This member is valid when probeObject = ODB. The default value is ON.
- elementID=
1
¶ A Boolean specifying whether to display the element ID information. This member is valid when probeObject = ODB and probeEntity = ELEMENT. The default value is ON.
- elementType=
1
¶ A Boolean specifying whether to display the element type information. This member is valid when probeObject = ODB and probeEntity = ELEMENT. The default value is ON.
- elementConnectivity=
1
¶ A Boolean specifying whether to display the element connectivity. This member is valid when probeObject = ODB and probeEntity = ELEMENT. The default value is ON.
- elementFieldResults=
1
¶ A Boolean specifying whether to display the element field output results. This member is valid when probeObject = ODB, probeEntity = ELEMENT, and isFieldOutputAvailable = ON. The default value is ON.
- nodeId=
1
¶ A Boolean specifying whether to display the node ID when probeObject = ODB and probeEntity = NODE. The default value is ON.
- baseCoordinates=
1
¶ A Boolean specifying whether to display the base coordinates of a node when probeObject = ODB and probeEntity = NODE. The default value is ON.
- deformedCoordinates=
1
¶ A Boolean specifying whether to display the deformed coordinates of a node when probeObject = ODB and probeEntity = NODE. The default value is ON.
- attachedElements=
1
¶ A Boolean specifying whether to display the elements attached to a node when probeObject = ODB and probeEntity = NODE. The default value is ON.
- nodeFieldResults=
1
¶ A Boolean specifying whether to display the node field output results. This member is valid when probeObject = ODB, probeEntity = NODE, and isFieldOutputAvailable = ON. The default value is ON.
- legend=
1
¶ A Boolean specifying whether to display the legend for a curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
- xValue=
1
¶ A Boolean specifying whether to display the X coordinate value of the point on the curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
- yValue=
1
¶ A Boolean specifying whether to display the Y coordinate value of the point on the curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
- sequenceID=
1
¶ A Boolean specifying whether to display the sequence ID of the point on the curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
- interpolateXy=
0
¶ A Boolean specifying whether to interpolate values within a line segment when probeObject = XYPlot. When interpolateXy = OFF, probing returns the nearest X - Y data point on the curve. When interpolateXy = ON, probing interpolates data to return a value at the nearest point on the curve. The default value is OFF.
- options=
-
xValue : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the X coordinate value of the point on the curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
-
yValue : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
1
[源代码]¶ A Boolean specifying whether to display the Y coordinate value of the point on the curve being probed. This member is valid when probeObject = XYPlot. The default value is ON.
-
attachedElements : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
- class ProbeReport[源代码]¶
基类:
object
The ProbeReport object is used to store settings associated with tabular reports of probe data. The ProbeReport object has no constructor. Abaqus creates the defaultProbeReport and the probeReport members when you import the Visualization module. When probing is initiated for the first time, the values in the probeReport member are initialized using the values from the defaultProbeReport member.
备注
This object can be accessed by:
import visualization session.defaultProbeReport session.probeReport
备注
Member Details:
- setValues(
- options=
None
, - numColumns=
80
, - numDigits=
6
, - numFormat=
ENGINEERING
, - pageWidth=
NO_LIMIT
, - printTotal=
0
, - printMinMax=
0
, This method modifies the ProbeReport object.
- 参数:¶
- options=
None
¶ None or a ProbeReport object specifying values to be copied. If other arguments are also supplied to setValues, they will override the values in options. The default value is None.
- numColumns=
80
¶ An Int specifying the number of columns in the report file. This argument is valid only when pageWidth = SPECIFY. The default value is 80.
- numDigits=
6
¶ An Int specifying the number of significant digits to be written for decimal values. The default value is 6.
- numFormat=
ENGINEERING
¶ A SymbolicConstant specifying the number format to be used when formatting decimal values. Possible values are AUTOMATIC, ENGINEERING, and SCIENTIFIC. The default value is ENGINEERING.
- pageWidth=
NO_LIMIT
¶ A SymbolicConstant specifying the page width format. Possible values are NO_LIMIT and SPECIFY. The default value is NO_LIMIT.
- printTotal=
0
¶ A Boolean specifying whether to print the total value of either the field output result (when probeObject = ”ODB”) or the X and Y coordinates (when probeObject = XYPlot). The default value is OFF.
- printMinMax=
0
¶ A Boolean specifying whether to print the minimum and maximum values of either the field output result (when probeObject = ”ODB”) or the X and Y coordinates (when probeObject = XYPlot). The default value is OFF.
- options=
- class SelectedProbeValues[源代码]¶
基类:
object
The SelectedProbeValues object has no constructor. The SelectedProbeValues object is created when you import the Visualization module.
备注
This object can be accessed by:
import visualization session.selectedProbeValues
备注
Member Details:
-
fieldOutputAvailable : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =
0
[源代码]¶ A Boolean specifying whether any probe values have been selected (as is necessary prior to writing to a file).
-
lastValues : --is-rst--:py:class:`tuple`\ \[:py:class:`float`, :py:data:`...<Ellipsis>`] =
()
[源代码]¶ A tuple of Floats specifying the last sequence of the values member.
-
fieldOutputAvailable : --is-rst--:py:data:`~typing.Union`\ \[:py:class:`~abaqus.UtilityAndView.AbaqusBoolean.AbaqusBoolean`, :py:class:`bool`] =