Role: Access an Abaqus analysis case object or determine its properties. An ABQAnalysisCase object contains the collection of Abaqus steps ( ) and Abaqus jobs ( ). An Abaqus analysis case object contains the data required to manage and run an Abaqus finite element analysis.
Properties
- Property DisplayGroups() As (Read Only)
-
Returns the Abaqus display groups associated with this analysis case.
- Returns:
- The collection of display groups.
- Example:
-
The following example retrieves the Abaqus display group
collection DisplayGroups in ListDisplayGroups.
Dim MyCase As ABQAnalysisCase Dim ListDisplayGroups As ABQDisplayGroups Set ListDisplayGroups = MyCase.DisplayGroups
dd>
- Property GlobalElemAssignment() As (Read Only)
-
Returns the Global Element Assignement feature associated with this analysis case.
- Returns:
- The associated Global Element Assignement feature .
- Example:
-
The following example retrieves the Global Element Assignement feature
collection GlobalElemAssignment in oGlobalElementAssignment.
Dim MyCase As ABQAnalysisCase Dim GlobalElementAssignment As ABQGlobalElementAssignment Set GlobalElementAssignment = MyCase.GlobalElemAssignment
dd>
- Property Jobs() As (Read Only)
-
Returns the Abaqus jobs associated with this analysis case.
- Returns:
- The collection of jobs.
- Example:
-
The following example retrieves the Abaqus job
collection Jobs in ListJobs.
Dim MyCase As ABQAnalysisCase Dim ListJobs As ABQJobs Set ListJobs = MyCase.Jobs
dd>
- Property SolutionCase() As (Read Only)
-
Returns the Abaqus solution case associated with this analysis case.
- Returns:
- The associated Abaqus solution case.
- Example:
-
The following example retrieves the Abaqus solution case
collection SolutionCase in SolutionCase.
Dim MyCase As ABQAnalysisCase Dim SolutionCase As ABQSolutionCase Set SolutionCase = MyCase.SolutionCase
dd>
- Property Steps() As (Read Only)
-
Returns the Abaqus analysis steps associated with this analysis case.
- Returns:
- The collection of analysis steps.
- Example:
-
The following example retrieves the Abaqus analysis step
collection Steps in ListSteps.
Dim MyCase As ABQAnalysisCase Dim ListSteps As ABQSteps Set ListSteps = MyCase.Steps
dd>