object.
Methods
- Func Add( iStepType) As
-
Creates a new Abaqus Step and adds it to the collection of Abaqus steps.
- Parameters:
-
- iStepType
- The type of the step to create.
Legal values: "ABQGeneralStaticStep", "ABQFrequencyStep", "ABQExplicitDynamicsStep", "ABQHeatTransferStep" "ABQLinearDynamicStepModal" "ABQLinearDynamicStepSubspace" dd>
- Returns:
- oStep The Abaqus step object that was created.
- Example:
-
The following example creates a general static step in the ABQSteps collection:
Dim abqCase As ABQAnalysisCase Dim abaqusSteps As ABQSteps Dim generalstaticstep As ABQGeneralStaticStep Set abaqusSteps = abqCase.Steps Set generalstaticstep = abaqusSteps.Add("ABQGeneralStaticStep")dd>
- Func Insert( iStepType, iIndex) As
-
Creates a new Abaqus Step and inserts it to the collection of Abaqus steps.
- Parameters:
-
- iStepType
- The type of the step to create.
Legal values: "ABQGeneralStaticStep", "ABQFrequencyStep", "ABQExplicitDynamicsStep", "ABQHeatTransferStep" dd> - iIndex
- Index of Abaqus step after which the new step is to be inserted. for initialization step iIndex is 1
dd>
- Returns:
- oStep The Abaqus step object that was inserted.
- Example:
-
The following example creates a general static step in the ABQSteps collection:
Dim abqCase As ABQAnalysisCase Dim abaqusSteps As ABQSteps Dim generalstaticstep As ABQGeneralStaticStep Set abaqusSteps = abqCase.Steps Set generalstaticstep = abaqusSteps.Insert("ABQGeneralStaticStep", 1)dd>
- Func Item( iIndex) As
-
Returns an Abaqus step using its index or its name from the
collection.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus step to retrieve from the collection of Abaqus steps. If the index is a number, it specifies the rank of the Abaqus step in the collection. The index of the first Abaqus step in the collection is 1, and the index of the last step is Count. If the index is a string, it specifies the name you assigned to the step using the CATIACollection::Name property. dd>
- Returns:
- The specified .
- Example:
-
This example retrieves the fifth Abaqus step in the collection and saves it in a variable called FirstStep. The example also retrieves the Abaqus step
named "MyStep" in the collection and saves it in a variable called SecondStep.
Set CaseColl = AnalysisDoc.ABQAnalysisModel.Cases Set ThisCase = CaseColl.Item(5) Set StepColl = ThisCase.Steps Set FirstStaticStep = StepColl.Item(5) Set SecondStaticStep = StepColl.Item("MyStep")dd>
- Sub Remove( iIndex)
-
Removes an Abaqus step using its index or its name from the Step collection.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus step to retrieve from the collection of Abaqus Steps. If the index is a number, it specifies the rank of the Abaqus step in the collection. The index of the first Abaqus step in the collection is 1, and the index of the last step is Count. If the index is a string, it specifies the name you assigned to the step using the CATIABase::Name property. dd>