hm_ce_getallfe

Returns specific FE and post created entity type(s) and ID(s) from a realized connector.

Syntax

hm_ce_getallfe ce_id

Type

HyperMesh Tcl Query Command

Description

Returns specific FE and post created entity type(s) and ID(s) from a realized connector.

Inputs

ce_id
The ID of the connector.

Example

To get all the realized FE and post created 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 and post created entities 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 and post created entity has multiple elements and other entities like systems, properties, materials, and so on, the main list will contain multiple sub-lists: { {elems id1 id2 …} {systs id1 id2 …} {mats id1} {props id1} {comps id1 id2} }.

Errors

None.

Version History

2022.3 - The returned list now contains the post created entities such as materials, properties, contacts, and so on.