All Frameworks  Object Hierarchy  This Framework  Indexes   

ABQAnalysisCase (Object)

Represents an Abaqus analysis case (ABQAnalysisCase) object.

Role: Access an Abaqus analysis case object or determine its properties. An ABQAnalysisCase object contains the collection of Abaqus steps (ABQSteps ) and Abaqus jobs ( ABQJobs ). An Abaqus analysis case object contains the data required to manage and run an Abaqus finite element analysis.

Property Index

GlobalElemAssignment
Returns the Global Element Assignement feature associated with this analysis case.
Jobs
Returns the Abaqus jobs associated with this analysis case.
Steps
Returns the Abaqus analysis steps associated with this analysis case.

Properties


o 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
 
o 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
 
o 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
 

Copyright © 2003, Dassault Systèmes. All rights reserved.