Axes¶
-
noxaxis¶
- Syntax:
noxaxis(pre_step=none, post_step=none, name='noxaxis')
-
xaxis¶
- Syntax:
xaxis( parameter, mode, start, stop, steps, relative=false, pre_step=none, post_step=none, name='xaxis' )
-
x2axis¶
- Syntax:
x2axis( parameter1, mode1, start1, stop1, steps1, parameter2, mode2, start2, stop2, steps2, relative=false, pre_step=none, post_step=none, name='x2axis' )
-
x3axis¶
- Syntax:
x3axis( parameter1, mode1, start1, stop1, steps1, parameter2, mode2, start2, stop2, steps2, parameter3, mode3, start3, stop3, steps3, relative=false, pre_step=none, post_step=none, name='x3axis' )
-
sweep¶
An action that sweeps N number of parameters through the values in N arrays.
- Syntax:
sweep( *args, pre_step=none, post_step=none, reset_parameter=true, name='sweep' )
- Required:
args
: Expects 3 arguments per axis. The first is a full name of a Parameter or a Parameter object. The second is an array of values to step this parameter over, and lastly a boolean value to say whether this is a relative step from the parameters initial value.name
: Name of the action, used to find the solution in the final output.- Optional:
pre_step
: An action to perform before the step is computedpost_step
: An action to perform after the step is computedreset_parameter
: When true this action will reset the all the parameters it changed to the values before it ran.
-
frequency_response¶
freqresp Computes the frequency response of a signal injceted at various nodes to compute transfer functions to multiple output nodes. Inputs and outputs should be electrical or mechanical nodes. It does this in an efficient way by using the same model and solving for multiple RHS input vectors.
- Syntax:
freqresp(f, inputs, outputs, open_loop=false, name='frequency_response')
- Required:
f
: Frequencies to compute the transfer functions overinputs
: Mechanical or electrical node to inject signal atoutputs
: Mechanical or electrical nodes to measure output at- Optional:
open_loop
: Computes open loop transfer functions if the system has closedname
: Solution name