hm_morph_getdomainelems

Returns the element IDs for the specified domain.

Syntax

hm_morph_getdomainelems domain_id

Type

HyperMesh Tcl Query

Description

Returns the element IDs for the specified domain.

Inputs

domain_id
The ID of the domain to query.

Example

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

hm_morph_getdomainelems 2

Errors

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