All Frameworks  Object Hierarchy  This Framework  Indexes   

AnalysisSet (Object)

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 Index

AnalysisEntities
Returns the analysis entities collection associated to a set.
AnalysisImages
Returns the analysis images collection associated with an analysis set.
AnalysisOutputEntities
Returns the analysis entities collection associated to a set.
AnalysisSets
Returns the analysis sets collection associated with an analysis set.
BasicComponents
Returns the basic components collection associated with an analysis set.
Type
Returns the type of the analysis Set.

Method Index

Update
Launch the update (computation if needed) of an AnalysisSet.

Properties


o Property AnalysisEntities() As (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
o Property AnalysisImages() As (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 
 
o Property AnalysisOutputEntities() As (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
 
o Property AnalysisSets() As (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
 
o Property BasicComponents() As (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 
 
o Property Type() As (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

Methods


o Sub Update()
Launch the update (computation if needed) of an AnalysisSet.

Copyright © 2003, Dassault Systèmes. All rights reserved.