ABQOutputRequests (Object)

The collection of Abaqus output request (ABQOutputRequest) objects attached to an
, an , , or an object.

Methods


Func Add( iOutputRequestType) As
Creates a new Abaqus output request and adds it to the collection of Abaqus output requests.
Parameters:
iOutputRequestType
The type of the output request to create.

Legal values:
"ABQFIELD"
"ABQHISTORY"
"ABQDATA
Returns:
oOutputRequest The Abaqus output request object that was created.
Example:
The following example creates a field output request in the ABQOutputRequests collection:
 Dim abaqusOutputRequests As ABQOutputRequests
 Set abaqusOutputRequests = generalstaticstep.GetItem ("ABQVBOutputRequests")
 Dim abqFieldOutputRequest As ABQFieldOutputRequest
 Set abqFieldOutputRequest =  abaqusOutputRequests.Add("ABQFIELD")
 
Func Item( iIndex, iOutputRequestType) As
Returns an Abaqus output request using its index or its name and output request type from the collection.
Parameters:
iIndex
The index or the name of the Abaqus output request to retrieve from the collection of Abaqus output requests.
iOutputRequestType
The type of the output request.

Legal values:
"ABQFIELD"
"ABQHISTORY"
"ABQDATA
If the index is a number, it specifies the rank of the Abaqus output request corresponding to the specified output request type in the collection. The index of the first Abaqus output request in the collection is 1 and the index of the last output request is Count. If the index is a string, it specifies the name you assigned to the output request using the CATIACollection::Name property.
Returns:
The specified .
Sub Remove( iIndex, iOutputRequestType)
Removes a Abaqus output request using its index or its name and output request type from the collection output requests.
Parameters:
iIndex
The index or the name of the Abaqus output request to retrieve from the collection of Abaqus output requests.
iOutputRequestType
The type of the output request.

Legal values:
"ABQFIELD"
"ABQHISTORY"
"ABQDATA
If the index is a number, it specifies the rank of the Abaqus output request corresponding to the specified output request type in the collection. The index of the first Abaqus output request in the collection is 1 and the index of the last output request is Count. If the index is a string, it specifies the name you assigned to the output request using the CATIACollection::Name property.