poIModel GetFailureTimeList

Gets the failure time list with information of element ID, time frame, and time value.

Syntax

poIModel_handle GetFailureTimeList elemtypelist

Application

HyperView Tcl Query

Description

This command retrieves the failure time list in the form of {element id, time frame, time value}.

Inputs

elemtypelist
An element configuration list, for example "quad4 hex8" or "104, 208". Default is all element types.

Example

To get the value filter string in contour:
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
client_handle GetModelHandle model_handle [client_handle GetActiveModel]
# Failure list for all element types
set failurelist [model_handle GetFailureTimeList]		
#failure list for quad and hex type elements
set failurelist [model_handle GetFailureTimeList "quad4 hex8"]  

hwi CloseStack

Errors

Returns an empty string if there is an error.