maeAddOutput
maeAddOutput(t_outputNamet_testName[?outputTypet_outputType] [?signalNamet_signalName] [?exprt_expr] [?plotg_plot] [?saveg_save] [?sessiont_sessionName] ) => t/ nil
Description
Adds an output for the given test in the currently active setup.
Arguments
Value Returned
|
Adds the specified output for the given test in the currently active setup. |
||
|
The specified output is not added for the given test in the currently active setup. |
||
Examples
Adds an output of type expr to test1.
maeAddOutput("Output1" "test1" )
Adds an output of type signal for test1.
maeAddOutput("Output2" "test1" ?outputType "point" ?expr "Output1*10")
Adds an output of type net for test1.
maeAddOutput("Output3" "test1" ?outputType "net" ?signalName "/net2")
Adds the terminal voltage for signal I0/M1/S to the output list for test test1.
maeAddOutput("TerminalOutput2" "test1" ?outputType "terminalV" ?signalName "/I0/M1/S")
maeSaveSetup()
Return to top