slaSetSimulationSetupRunOptionValue
slaSetSimulationSetupRunOptionValue(
t_setupName
t_optionName
t_optionValue
)
=> t / nil
Description
Sets the value of the given run option for the specified simulation setup from 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 sets the value of run option for the specified simulation setup.
slaOpenOrCreateView("bertlink" "osc13" "setupLib")
=> t
slaSetSimulationSetupRunOptionValue("SimpleMC_10Points" "mcnumpoints" "10")
=> t
Returns an error message if the specified simulation setup does not exist.
slaSetSimulationSetupRunOptionValue("XXX" "mcnumpoints" "10")
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
Setup Library Assistant Functions
Return to top