NXOpen .NET Reference Guide  1899
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties
Classes | Public Types | Public Member Functions | Properties | List of all members
NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder Class Reference

Represents a NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder to check for duplicate nodes within the candidate nodes. More...

Inheritance diagram for NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder:
NXOpen.Builder NXOpen.CAE.ModelCheck.ISelectionBuilder NXOpen.TaggedObject NXOpen.GeometricUtilities.IComponentBuilder NXOpen.Utilities.NXRemotableObject IMessageSink

Classes

struct  _DisplaySettings
 Represents the display settings data
 
struct  DisplaySettings
 Represents the display settings data More...
 

Public Types

enum  ListOption { All, Mergeable, Unmergeable }
 Represents the duplicate nodes merging preference More...
 
enum  MergePreference {
  None, KeepHighLabel, KeepLowLabel, KeepSelected,
  RemoveSelected
}
 Represents the duplicate nodes merging preference More...
 

Public Member Functions

unsafe NXOpen.CAE.FENode[] GetDuplicateNodes (int groupIndex)
 Returns the duplicate nodes of specified group index More...
 
unsafe void IdentifyDuplicateNodes ()
 Calculates to find the duplicate nodes and display them in NXOpen.CAE.ModelCheck.DuplicateElementsCheckBuilder.DisplaySettings . More...
 
unsafe void MergeDuplicateNodes ()
 Merges the duplicate nodes and clear all cached duplicate nodes in this builder. More...
 
- Public Member Functions inherited from NXOpen.Builder
unsafe NXOpen.NXObject Commit ()
 Commits any edits that have been applied to the builder. More...
 
unsafe void Destroy ()
 Deletes the builder, and cleans up any objects created by the builder. More...
 
unsafe NXOpen.NXObject[] GetCommittedObjects ()
 For builders that create more than one object, this method returns the objects that are created by commit. More...
 
unsafe NXOpen.NXObject GetObject ()
 Returns the object currently being edited by this builder. More...
 
unsafe void ShowResults ()
 Updates the model to reflect the result of an edit to the model for all builders that support showing results. More...
 
unsafe bool Validate ()
 Validate whether the inputs to the component are sufficient for commit to be called. More...
 
- Public Member Functions inherited from NXOpen.TaggedObject
void PrintTestData (String variableName)
 <exclude> More...
 
void PrintTestData (String variableName, int lineNumber)
 <exclude> More...
 
override string ToString ()
 Returns a String that represents the current Object. More...
 
- Public Member Functions inherited from NXOpen.Utilities.NXRemotableObject
IMessageCtrl AsyncProcessMessage (IMessage msg, IMessageSink replySink)
 Asynchronously processes the given message. More...
 
IMessage SyncProcessMessage (IMessage msg)
 Synchronously processes the given message. More...
 

Properties

unsafe
NXOpen.CAE.ModelCheck.CheckScope 
CheckScopeOption [get, set]
 Returns or sets the check scope setting More...
 
unsafe
NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.DisplaySettings 
DisplaySettingsData [get, set]
 Returns or sets the display settings for duplicate nodes More...
 
unsafe int DuplicateNodeGroupsCount [get]
 Returns the duplicate nodes group count, each group contains nodes that are duplicates of each other and each group contains at least two duplicate nodes More...
 
unsafe bool IgnoreNodesConnectedToTinyEdges [get, set]
 Returns or sets a value indicating whether to ignore nodes connected to tiny edges More...
 
unsafe bool IgnoreNodesInSameMesh [get, set]
 Returns or sets a value indicating whether to ignore nodes in same mesh More...
 
unsafe
NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.ListOption 
ListingType [get, set]
 Returns or sets an option indicating what information to be listed More...
 
unsafe bool MergeOccurrenceNodes [get, set]
 Returns or sets a value indicating whether to merge occurrence nodes in afem context More...
 
unsafe
NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.MergePreference 
Preference [get, set]
 Returns or sets the duplicate nodes merging preference More...
 
unsafe
NXOpen.SelectTaggedObjectList 
SelectionList [get]
 Returns the selected objects for checking. More...
 
unsafe NXOpen.CAE.SelectFENodeList SelectPreferenceNodesList [get]
 Returns the preference nodes select list for keep selected and remove selected options More...
 
unsafe NXOpen.Expression Tolerance [get]
 Returns the tolerance used to determine if the nodes are duplicates of each other More...
 
- Properties inherited from NXOpen.Builder
unsafe NXOpen.PreviewBuilder PreviewBuilder [get]
 Returns the preview builder subobject. More...
 
- Properties inherited from NXOpen.TaggedObject
Tag Tag [get]
 Returns the tag of this object. More...
 
- Properties inherited from NXOpen.Utilities.NXRemotableObject
IMessageSink NextSink [get]
 Gets the next message sink in the sink chain. More...
 
- Properties inherited from NXOpen.CAE.ModelCheck.ISelectionBuilder
NXOpen.CAE.ModelCheck.CheckScope CheckScopeOption [get, set]
 Returns or sets the check scope setting More...
 

Additional Inherited Members

- Protected Member Functions inherited from NXOpen.TaggedObject
new void initialize ()
 <exclude> More...
 

Detailed Description

Represents a NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder to check for duplicate nodes within the candidate nodes.

Duplicate nodes are nodes which distance between each other is less than specific tolerance value and at least one duplicate node can be merged away.

The general workflow is:

  1. Set the candidate nodes
  2. Set the check settings and display settings data
  3. Identify the duplicate nodes
  4. Set the preference option
  5. Merge duplicate nodes

You can merge duplicate nodes through Builder.Commit or NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.MergeDuplicateNodes . Commits the builder to merge duplicate nodes and update the mesh in graphic window.

To create a new instance of this class, use NXOpen.CAE.ModelCheckManager.CreateDuplicateNodesCheckBuilder

Created in NX8.5.0

Member Enumeration Documentation

Represents the duplicate nodes merging preference

Enumerator
All 

List all duplicate node pairs found

Mergeable 

List the duplicate node pairs mergeable

Unmergeable 

List the duplicate node pairs unmergeable

Represents the duplicate nodes merging preference

Enumerator
None 

No preference

KeepHighLabel 

Keep the nodes with higher labels

KeepLowLabel 

Keep the nodes with lower labels

KeepSelected 

Keep the nodes specified in the node list NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.SelectPreferenceNodesList

RemoveSelected 

Merge the nodes specified in the node list NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.SelectPreferenceNodesList

Member Function Documentation

unsafe NXOpen.CAE.FENode [] NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.GetDuplicateNodes ( int  groupIndex)
inline

Returns the duplicate nodes of specified group index

Created in NX8.5.0

License requirements: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

Parameters
groupIndex
Returns
unsafe void NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.IdentifyDuplicateNodes ( )
inline

Calculates to find the duplicate nodes and display them in NXOpen.CAE.ModelCheck.DuplicateElementsCheckBuilder.DisplaySettings .

The detected duplicate nodes are cached, to access the cached calculation result, you could use NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.DuplicateNodeGroupsCount and NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.GetDuplicateNodes . The previous cached data will be cleaned automatically when you start a new identification.

Created in NX8.5.0

License requirements: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

unsafe void NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.MergeDuplicateNodes ( )
inline

Merges the duplicate nodes and clear all cached duplicate nodes in this builder.

The method Builder.Commit will also do the same thing. Duplicate nodes can only be merged when the context part of this builder is a NXOpen.CAE.BaseFemPart .

Created in NX8.5.0

License requirements: nx_masterfem ("Finite Element Modeling")

Property Documentation

unsafe NXOpen.CAE.ModelCheck.CheckScope NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.CheckScopeOption
getset

Returns or sets the check scope setting

Created in NX11.0.1

License requirements to get this property: None.

License requirements to set this property: None.

unsafe NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.DisplaySettings NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.DisplaySettingsData
getset

Returns or sets the display settings for duplicate nodes

Created in NX8.5.0

License requirements to get this property: None.

License requirements to set this property: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

unsafe int NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.DuplicateNodeGroupsCount
get

Returns the duplicate nodes group count, each group contains nodes that are duplicates of each other and each group contains at least two duplicate nodes

Created in NX8.5.0

License requirements: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

unsafe bool NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.IgnoreNodesConnectedToTinyEdges
getset

Returns or sets a value indicating whether to ignore nodes connected to tiny edges

Created in NX8.5.0

License requirements to get this property: None.

License requirements to set this property: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

unsafe bool NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.IgnoreNodesInSameMesh
getset

Returns or sets a value indicating whether to ignore nodes in same mesh

Created in NX8.5.0

License requirements to get this property: None.

License requirements to set this property: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

unsafe NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.ListOption NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.ListingType
getset

Returns or sets an option indicating what information to be listed

Created in NX8.5.0

License requirements to get this property: None.

License requirements to set this property: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

unsafe bool NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.MergeOccurrenceNodes
getset

Returns or sets a value indicating whether to merge occurrence nodes in afem context

Created in NX8.5.0

License requirements to get this property: None.

License requirements to set this property: nx_masterfem ("Finite Element Modeling") OR nx_design_sim ("NX Design Simulation")

unsafe NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.MergePreference NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.Preference
getset

Returns or sets the duplicate nodes merging preference

Created in NX8.5.0

License requirements to get this property: None.

License requirements to set this property: nx_masterfem ("Finite Element Modeling")

unsafe NXOpen.SelectTaggedObjectList NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.SelectionList
get

Returns the selected objects for checking.

The objects must be NXOpen.CAE.Mesh or NXOpen.CAE.FENode

Created in NX8.5.0

License requirements: None.

unsafe NXOpen.CAE.SelectFENodeList NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.SelectPreferenceNodesList
get

Returns the preference nodes select list for keep selected and remove selected options

Created in NX8.5.0

License requirements: nx_masterfem ("Finite Element Modeling")

unsafe NXOpen.Expression NXOpen.CAE.ModelCheck.DuplicateNodesCheckBuilder.Tolerance
get

Returns the tolerance used to determine if the nodes are duplicates of each other

Created in NX8.5.0

License requirements: None.


The documentation for this class was generated from the following file:
Copyright 2019 Siemens Product Lifecycle Management Software Inc. All Rights Reserved.