hm_ce_datalist
Returns, in a list, all connector data displayed in the table for a single connector on mark and as a list of lists for multiple connectors.
Syntax
hm_ce_datalist ce_mark
Type
HyperMesh Tcl Query Command
Description
Returns, in a list, all connector data displayed in the table for a single connector on mark and as a list of lists for multiple connectors.
Inputs
- ce_mark
- The mark of connector entity(s).
Example
To obtain connector information for connectors 1 and 2:
*createmark connectors 1 1 2;
set ce_data_list [ hm_ce_datalist 1 ];
foreach ce_data $ce_data_list {
puts $ce_data;
}
This function returns a list of lists containing connector data. Each list contains information about a single connector. The information contained in a single list is shown in the following order,
{ID Thickness Component Location_Entity Config Link1_info Link2_Info State}
- Component
- The name of the component that contains the connector.
- Location_Entity
- A string that specifies if the connector was created at a node/point or line.
- Link_Info
- The link entity information contains entity type, entity ID/name, entity rule, and entity state. For more information, see Connector Terminology. Link_Info is repeated for each link stored in the connector.
- State
- Specifies the realization state of a connector.
Errors
None.