pycatia.analysis_interfaces.analysis_set

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.analysis_interfaces.analysis_set.AnalysisSet(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
AnalysisSet

Represent the analysis set object.
In the Analysis Model, an Analysis Set is the data dedicated to manage the
Analysis Entities for specific preprocessing data.
For example, LoadSet will manage loading conditions…
property analysis_entities: AnalysisEntities

Note

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

Returns the analysis entities collection associated to a set. The
corresponding entities are default preprocessing objects.

Example :
This example retrieves analysis entities collection .

Dim MySet As AnalysisSet
Dim analysisEntities As AnalysisEntities
Set analysisEntities = MySet.AnalysisEntities
Return type:

AnalysisEntities

property analysis_images: AnalysisImages

Note

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

Returns the analysis images collection associated with an analysis
set.

Example:
This example retrieves analysisimages collection .

Dim MySet As AnalysisSet
Dim analysisimages As AnalysisImages
Set analysisimages = MySet.AnalysisImages
Return type:

AnalysisImages

property analysis_output_entities: AnalysisOutputEntities

Note

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

Returns the analysis entities collection associated to a set. The
corresponding entities are not preprocessing features but can be used, for
example to manage error features.

Example:
This example retrieves analysisEntities collection .

Dim MySet As AnalysisSet
Dim analysisEntities As AnalysisOutputEntities
Set analysisEntities = MySet.AnalysisOutputEntities
Return type:

AnalysisOutputEntities

property analysis_sets: AnalysisSets

Note

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

Returns the analysis sets collection associated with an analysis set. This
method will return a collection only if the set is made of other
sets.

Example:
This example retrieves analysisSets collection .

Dim MySet As AnalysisSet
Dim analysisSets As AnalysisSets
Set analysisSets = MySet.AnalysisSets
Return type:

AnalysisSets

property basic_components: BasicComponents

Note

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

Returns the basic components collection associated with an analysis
set.

Example:
This example retrieves basiccomponents collection .

Dim MySet As AnalysisSet
Dim basiccomponents As BasicComponents
Set basiccomponents = MySet.BasicComponents
Return type:

BasicComponents

property type: str

Note

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

Returns the type of the analysis Set.

Example:
The following example returns TypeofSet of MySet.

Dim MySet As AnalysisSet
Dim TypeofSet As CATBSTR
Set TypeofSet = MySet.Type
Return type:

str

update() None

Note

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

Launch the update (computation if needed) of an AnalysisSet.
Return type:

None