*surfacemarkaddnodesfixed
Add fixed points to a surface at locations specified by nodes.
Syntax
*surfacemarkaddnodesfixed surf_mark_id node_mark_id tol reserved_1
Type
HyperMesh Tcl Modify Command
Description
Add fixed points to a surface at locations specified by nodes.
Inputs
- surf_mark_id
- ID of the mark containing the input surfaces to add fixed points to. Valid values are 1 and 2.
- node_mark_id
- ID of the mark containing the nodes to use to define the fixed point locations. Valid values are 1 and 2.
- tol
- Tolerance value used to determine if a node is close enough to a surface.
- reserved_1
- Reserved parameter, must be set to 0.
Example
To add fixed points to the surface with ID 12 at positions specified by nodes with IDs 1 and 2:
*createmark nodes 1 1 2
*createmark surfs 1 12
*surfacemarkaddnodesfixed 1 1 0.1 0
Errors
if { [ catch {command_name...} ] } {
# Handle error
}