ABQSolutionCase (Object)

Represents an Abaqus solution case (ABQSolutionCase) object.

Properties


Property AnalysisImages() As (Read Only)
Returns the analysis images associated with this solution case.
Returns:
The collection of analysis images.
Example:
The following example retrieves the analysis images collection AnalysisImages in ListSolutionCaseImages.
 Dim MySolutionCase As ABQSolutionCase
 Dim ListSolutionCaseImages As ABQSolutionCaseImages
 Set ListSolutionCaseImages = MySolutionCase.AnalysisImages
 
Property SolutionSteps() As (Read Only)
Returns the Abaqus solution steps associated with this solution case.
Returns:
The collection of solution steps.
Example:
The following example retrieves the Abaqus solution steps collection SolutionSteps in ListSolutionSteps.
 Dim MySolutionCase As ABQSolutionCase
 Dim ListSolutionSteps As ABQSolutionSteps
 Set ListSolutionSteps = MySolutionCase.SolutionSteps
 

Methods


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