poIResultMathCtrl GetTableInfoList

Gets the format and binding information of a table.

Syntax

rmath_handle GetTableInfoList table_name res_name

Application

HyperView Tcl Query

Description

This command returns the format and binding information of a table. The first item contained in the list is the format of the table (scalar/vector/tensor), and the second item in the list is the binding of the table (node/element/part).

Inputs

table_name
The name of the table whose information is needed.
res_name (Optional)
The resource name of the table.

Example

To get the format and binding information 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 tabinfo_list [rmath_handle GetTableInfoList Stress]


hwi CloseStack

Errors

None.