poIResultMathCtrl GetTableComponentList

Gets the components associated with a table.

Syntax

rmath_handle GetTableComponentList res_name table_name

Application

HyperView Tcl Query

Description

This command returns the components associated with a table. For example, a vector table will have x, y, z and mag as the components.

Inputs

res_name
The name of the resource where the table is available.
table_name
The name of the table whose components are needed.

Example

To get the component list of the specified table:
hwi OpenStack
hwi GetSessionHandle session_handle
session_handle GetProjectHandle project_handle
project_handle GetPageHandle page_handle [project_handle GetActivePage]
page_handle GetWindowHandle window_handle [page_handle GetActiveWindow]
window_handle GetClientHandle client_handle

set mid [client_handle AddResultMathAnalysis "c:/samples/bumper/d3plot" "c:/samples/bumper/d3plot"]

client_handle GetModelHandle model_handle $mid
model_handle GetResultCtrlHandle result_handle
result_handle GetResultMathCtrlHandle rmath_handle

set tabcomp_list [rmath_handle GetTableComponentList model Stress]


hwi CloseStack

Errors

None.