ABQSolutionStep (Object)

Represents an Abaqus solution step (ABQSolutionStep) object.

Properties


Property AnalysisImages() As (Read Only)
Returns the analysis images associated with this solution step.
Returns:
The collection of analysis images.
Example:
The following example retrieves the analysis images collection AnalysisImages in ListSolutionStepImages.
 Dim MySolutionStep As ABQSolutionStep
 Dim ListSolutionStepImages As ABQSolutionStepImages
 Set ListSolutionStepImages = MySolutionStep.AnalysisImages
 

Methods


Func CreateImage( iImageName, iHideExistingImages, iIncrOrModeNumber) As
Creates a new image under this solution step.
Parameters:
iImageName
The name of the image to create.
iHideExistingImages
To deactivate or not all the activated images before create the new image.
iIncrOrModeNumber
Increment or mode (for frequency step) number to be set in created image.
Returns:
The created Analysis Image
Example:
 This example create ThisAnalysisImage in the MySolutionStep. 
The image to create is supposed to be a mesh deformed image for first increment.
 Dim MySolutionStep As ABQSolutionStep
 Dim ThisAnalysisImage As AnalysisImage
 Set ThisAnalysisImage = MySolutionStep.CreateImage("Mesh_Deformed", True, 1)
 
Sub SetIncrementOrModeNumber( iIncrOrModeNumber, iImage)
Sets increment number for an image.
This is done related to an existing image
Parameters:
iIncrOrModeNumber
The increment or mode (for frequency step) number to select