poIAdvancedQuery RemoveSimulations

Removes the simulations from the advanced query.

Syntax

advancedQuery_handle RemoveSimulations "subcases" "simulations"

Application

HyperView Tcl Modify

Description

This command is used to remove the list of simulations for a given subcase from the advanced query.

Inputs

subcases
Holds the subcase information which accepts “current”, “first”, “last”, “all” or the space separated string with hwIDs for a subcase ID (for example: "1 2 3 4").
simulations
Holds the simulation information which accepts “current”, “first”, “last”, “all” or the space separated string with hwIDs for a simulation ID (for example: "1 2 3 4").

Example

To remove the list of simulations from the advanced query:
hwi OpenStack
hwi GetActiveClientHandle client
set ruleID [client AddQueryRule extreme]
client GetQueryRuleHandle rule_handle $ruleID
rule_handle SetExtreme "TopN 3"
set advQueryID [client AddAdvancedQuery]
client GetAdvancedQueryHandle advancedQuery_handle $advQueryID
advancedQuery_handle AddSimulations "1 2" "2 3 4"
advancedQuery_handle RemoveSimulations "1" "3 4"
hwi CloseStack

Errors

This command returns HW_InvalidHandle, if the core object associated with the advanced query handle does not exist anymore.