Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlRemoveSimulationResults

axlRemoveSimulationResults(
x_historySDB
)
=> t / nil

Description

Removes the simulation results data for the given history. The function removes only the results saved by the simulator. The results database and the history item is not removed.

If you need to remove the entire history, use axlRemoveElement for the history element.

To remove the simulation results data for a history from the GUI, right-click the history name in the Data View assistant and choose Delete Simulation Data from the context-sensitive menu.

Arguments

x_historySDB

Handle to the history for which the simulation data is to be deleted. This cannot be a handle to the checkpoint of a history.

Value Returned

t

Simulation results data for the given history is successfully deleted.

nil

Deletion of the simulation results data is not successful.

Examples

Deletes the simulation data for the history Interactive.9.

session = (axlGetWindowSession)
=> "session0"
x_mainSDB = axlGetMainSetupDB(session)
=> 1001
x_historySDB=axlGetHistoryEntry(x_mainSDB "Interactive.9")
=> 1115
axlRemoveSimulationResults(x_historySDB)
=> t

Related Topics

axlRemoveElement


Return to top
 ⠀
X