hm_getnodessharedbyothercomps
Returns the nodes on the input components that are shared by other components.
Syntax
hm_getnodessharedbyothercomps comp_mark_id node_mark_id exclude
Type
HyperMesh Tcl Query Command
Description
This command returns the nodes on the input components that are shared by other components.
Inputs
- comp_mark_id
- The ID of the input mark containing the components with the nodes of interest. Valid values are 1 and 2.
- node_mark_id
- The ID of the output mark containing the identified shared nodes. Valid values are 1 and 2.
- exclude
- 0 - Do not exclude any nodes.
- 1 - Exclude nodes on mass, rigid and joint elements.
Example
To find the nodes from component 100 shared by other
components:
*createmark comps 1 100
hm_getnodessharedbyothercomps 1 1 0
Errors
Incorrect usage results in a Tcl error. To detect
errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
11.0.101