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

maeSensGetModelGroup

maeSensGetModelGroup(
[ ?session t_sessionName ] 
)
=> l_modelGroupDetails / nil

Description

Returns a list of values specified in the Model Groups setting on the Sensitivity form for Sensitivity analysis in the current or the specified maestro session.

Arguments

?session t_sessionName

Name of the maestro session.

If not specified, the current session is used.

Value Returned

l_modelGroupDetails

A list containing the following two items is returned.

  • A list of model group names specified in the Value column
  • The name of the model group specified in the Nominal column

nil

Indicates an error.

Examples

Returns and prints the model groups specified in the setup for Sensitivity analysis.

;; get and print details of the model group
mgroup = (maeSensGetModelGroup) => ("mg1 mg2" "mg1") (when mgroup (printf "Sensitivity Model Group value = %s, nominal value = %s\n" (car mgroup) (cadr mgroup)) ) => Sensitivity Model Group value = mg1 mg2, nominal value = mg1 => t

Return to top
 ⠀
X