pycatia.abq_automation_interfaces.abq_field_output_requests

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.abq_automation_interfaces.abq_field_output_requests.ABQFieldOutputRequests(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
ABQFieldOutputRequests

The collection of Abaqus field output request (ABQFieldOutputRequest) objects
attached to an
ABQGeneralStaticStep, an ABQFrequencyStep, an ABQHeatTransferStep, or an
ABQExplicitDynamicsStep object.
add() ABQFieldOutputRequest

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Add() As ABQFieldOutputRequest

Creates a new Abaqus field output request and adds it to the collection of
Abaqus field output requests.

Returns:
oFieldOutputRequest The Abaqus field output request object that was
created.
Example:
The following example creates a field output request in the
ABQFieldOutputRequests collection:

Dim abqFieldOutputRequests As ABQFieldOutputRequests
Set abqFieldOutputRequests = generalstaticstep.FieldOutputRequests
Dim abqFieldOutputRequest As ABQFieldOutputRequest
Set abqFieldOutputRequest = abqFieldOutputRequests.Add()
Return type:

ABQFieldOutputRequest

item(i_index: cat_variant) ABQFieldOutputRequest

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Item(CATVariant iIndex) As ABQFieldOutputRequest

Returns an Abaqus field output request using its index or its name from the
ABQFieldOutputRequests collection.

Parameters:

iIndex
The index or the name of the Abaqus field output request to
retrieve from the collection of Abaqus field output requests. If the index is a
number, it specifies the rank of the Abaqus field output request in the
collection. The index of the first Abaqus field output request in the
collection is 1, and the index of the last field output request is Count. If
the index is a string, it specifies the name you assigned to the field output
request using the CATIACollection::Name property.

Returns:
The specified ABQFieldOutputRequest.
Parameters:

i_index (cat_variant) –

Return type:

ABQFieldOutputRequest

remove(i_index: cat_variant) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub Remove(CATVariant iIndex)

Removes an Abaqus field output request using its index or its name from the
field output requests collection.

Parameters:

iIndex
The index or the name of the field output request to retrieve from
the collection of field output requests. As a numeric, this index is the rank
of the field output request in the collection. The index of the first field
output request in the collection is 1, and the index of the last field output
request is Count. As a string, it is the name you assigned to the field output
request using the CATIABase::Name property.
Parameters:

i_index (cat_variant) –

Return type:

None