pycatia.abq_automation_interfaces.abq_loads

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_loads.ABQLoads(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
ABQLoads

The collection of Abaqus load (ABQLoad) objects attached to an
ABQGeneralStaticStep, ABQHeatTransferStep, or an ABQExplicitDynamicsStep
object.
add(i_load_type: str) ABQLoad

Note

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

Creates a new Abaqus load and adds it to the collection of Abaqus
loads.

Parameters:

iLoadType
The type of the load to create.

Legal values:

“ABQPressure”
“ABQConcentratedForce”
“ABQGravity”
“ABQFilmCondition”

Returns:
oLoad The Abaqus load object that was created.
Example:
The following example creates a pressure load in the ABQLoads
collection:

Dim abaqusLoads As ABQLoads
Dim abqPressure As ABQPressure
Set abaqusLoads = generalstaticstep.Loads
Set abqPressure = abaqusLoads.Add(“ABQPressure”)
Parameters:

i_load_type (str) –

Return type:

ABQLoad

item(i_index: cat_variant) ABQLoad

Note

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

Returns an Abaqus load using its index or its name from the ABQLoads
collection.

Parameters:

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

Returns:
The specified ABQLoad.
Parameters:

i_index (cat_variant) –

Return type:

ABQLoad

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 a Abaqus load using its index or its name from the collection od
loads.

Parameters:

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

i_index (cat_variant) –

Return type:

None