maeSensGetModelGroup
maeSensGetModelGroup( [?sessiont_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
Value Returned
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