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
dd>
- 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
dd>
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. dd>
- iHideExistingImages
- To deactivate or not all the activated images before create the new image. dd>
- iStepNumber
- Step number to be set in created image. dd>
- iIncrementNumber
- Increment number to be set in created image. dd>
- Returns:
- The created Analysis Image dd>
- 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 dd>
- iIncrementNumber
- The increment number to select dd>