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

maeCopySimulationOptions

maeCopySimulationOptions(
t_srcRun
[ ?destRun t_destRun ] | [ ?all g_all ]
[ ?session t_session ]
)
=> t / nil

Description

Copies the simulation options from the source run to the destination run. Different run modes have different simulation options, therefore, It is mandatory that the source and destination runs have the same run mode. Otherwise, the function reports an error.

Arguments

t_srcRun

Name of the run that is the source of simulation options.

?destRun t_destRun

Name of the destination run to which simulation options are to be copied. If not specified, the function looks for ?all. If both are not specified, returns an error.

?all g_all

A Boolean value that specifies whether the simulation options are to be copied to all other runs in run plan that have the same run mode as that of the source run.

By default, this argument is set to nil.

?session t_session

Name of the session. If not specified, the current session is used.

Value Returned

t

Simulation options are copied successfully.

nil

Simulation options are not copied.

Examples

Copies the simulation options from Run.0 to Run.1:

maeCopySimulationOptions("Run.0" ?destRun "Run.1")
=> t

Copies the simulation options from Run.0 to all other runs that have the same run mode as that of Run.0:

maeCopySimulationOptions("Run.0" ?all t)
=> t

Related Topics

Modifying a Run in the Run Plan


Return to top
 ⠀
X