hm_ce_getallfe
Returns specific FE entity type and ID(s) from a realized connector.
Syntax
hm_ce_getallfe ce_id
Type
HyperMesh Tcl Query Command
Description
Returns specific FE entity type and ID(s) from a realized connector.
Inputs
- ce_id
- The ID of the connector.
Example
To get all the realized FE types and IDs from the displayed connectors:
*createmark connectors 1 "displayed"
set ce_list [ hm_getmark connectors 1 ];
foreach ce_id $ce_list {
set ce_fes [ hm_ce_getallfe $ce_id ];
puts $ce_id $ce_fes;
}
This function returns a list of lists that contain the realized FE from the connector entity. If the realized FE of the connector consists of only elements, the main list will contain only one sub-list: { {elems id1 id2 …} } . If the realized FE has both elements and systems, the main list will contain two sub-lists: { {elems id1 id2 …} and {systs id1 id2 …} }
Errors
None.