poIResultMathCtrl GetLibraryList

Gets a list of result math libraries.

Syntax

rmath_handle GetLibraryList

Application

HyperView Tcl Query

Description

This command retrieves a list of result math libraries. Each library consists of a list of operators. Any custom result module expressions (defined in the template/recipe file) are listed under a special library called “Expressions”, and all of the defined plugins are classified under the library “Plugins”.

Example

To get the list of result math operator libraries:
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 lib_list [rmath_handle GetLibraryList]


hwi CloseStack

Errors

Returns an empty list or an error code if the command fails.