poISubcase GetDerivedSimulationList

Returns a list containing the labels of all the derived simulations.

Syntax

subcase_handle GetDerivedSimulationList

Application

HyperView Tcl Query

Description

This command returns a list containing the labels of all the derived simulations

This command is similar to the GetDerivedSimulationLabel command, the only difference is that this command will return the labels of all the derived simulations.

Example

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]
model_handle GetResultCtrlHandle result_handle
set scid [result_handle AddSubcase];

result_handle GetSubcaseHandle subcase_handle $scid
subcase_handle SetDerivedType "superposition"
subcase_handle AppendSimulation 3 0;
subcase_handle AppendSimulation 4 1;

set ndsimlist [subcase_handle GetDerivedSimulationList];
hwi CloseStack

Errors

None.