hm_morph_getdomainnodes

Returns the node IDs for the specified domain.

Syntax

hm_morph_getdomainnodes domain_id

Type

HyperMesh Tcl Query

Description

Returns the node IDs for the specified domain.

Inputs

domain_id
The ID of the domain to query.

Example

To get the node IDs for a domain with ID 2:

hm_morph_getdomainnodes 2

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}