pycatia.abq_automation_interfaces.abq_analysis_model

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_analysis_model.ABQAnalysisModel(com_object)

Note

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

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
ABQAnalysisModel

Represents the Abaqus analysis model object.
Role: The Abaqus analysis model object contains the ABQAnalysisCases
collection. The Abaqus analysis model object can also be used as an Refer:
CATIAAnalysisModel.
property cases: ABQAnalysisCases

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Cases() As ABQAnalysisCases (Read Only)

Returns the list of Abaqus analysis cases associated with the analysis
model.

Returns:
The collection of Abaqus analysis cases.
Example:
The following example retrieves the Abaqus analysis cases collection
analysisCases:

Dim analysisCases As ABQAnalysisCases
Dim abqModel As ABQAnalysisModel
Set analysisCases = abqModel.Cases
Return type:

ABQAnalysisCases

property properties: ABQProperties

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)
o Property Properties() As ABQProperties (Read Only)

Returns the list of Abaqus properties associated with the analysis
model.

Returns:
The collection of Abaqus properties.
Example:
The following example retrieves the Abaqus properties collection
properties:

Dim properties As ABQProperties
Dim abqModel As ABQAnalysisModel
Set properties = abqModel.Properties
Return type:

ABQProperties