slaGetSimulationSetupRunOptions
slaGetSimulationSetupRunOptions(t_setupName) =>l_runOptions/ nil
Description
Retrieves the list of run options for the specified simulation setup of the setup library view that is opened using the slaOpenOrCreateView function.
Arguments
Value Returned
|
The simulation setup with the specified name does not exist, or the command failed. |
Examples
Opens a setup library view and retrieves the run options for the specified simulation setup.
slaOpenOrCreateView("bertlink" "osc13" "setupLib")
=> t
slaGetSimulationSetupRunOptions("SimpleMC_10Points")
=> ("mcnumpoints" "mcmethod" "samplingmode" "montecarloseed")
Returns an error message if the specified simulation setup does not exist.
slaGetSimulationSetupRunOptions("XXX")
ERROR (ADE-11414): Cannot run the function because the simulation setup 'XXX' is invalid. Specify a valid simulation setup name and rerun the function.
=> nil
Related Topics
slaGetSimulationSetupRunOptionValue
Setup Library Assistant Functions
Return to top