maeSensSetParameter
maeSensSetParameter(
t_parameterName
g_parameterValue
[ ?nominalValue g_nominalValue ]
[ ?session t_sessionName ]
)
=> t / nil
Description
Adds a parameter on the Sensitivity form for Sensitivity analysis in the current or the specified maestro session. If a parameter already exists with the given name, its value is updated.
Arguments
|
t_parameterName
|
Name of the parameter. The parameter name must contain at least five non-empty string values, each separated by a / in the following format:
library-name/cell-name/view-name/instance-name/property-name to be modified.
For hierarchical parameters, specify the hierarchical path separated by / in instance-name. For example, mylib/mycell/view1/instance0/instance1/instance2/length.
|
|
g_parameterValue
|
Value range for the parameter.
|
|
?nominalValue g_nominalValue
|
|
|
Nominal value for the parameter.
|
|
?session t_sessionName
|
|
|
Name of the maestro session.
If not specified, the current session is used.
|
Value Returned
|
t
|
The parameter is set.
|
|
nil
|
Indicates an error.
|
Examples
Set the parameter NM0/fw on the Sensitivity form:
maeSensSetParameter("minimal/cm/schematic/NM0/fw" "100n:10n:140n")
=> t
maeSensSetParameter("minimal/cm/schematic/NM0/fw" "100n:10n:140n" ?nominalValue "120n")
=> t
Return to top