Simulate - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DynamicSystems

  

Simulate

  

simulate a system

 

Calling Sequence

Parameters

Options

Description

Examples

Calling Sequence

Simulate( sys, input, opts )

Parameters

sys

-

System; system object

input

-

algebraic, list(algebraic), Vector(realcons), list(Vector(realcons)), or Matrix(realcons); input signal

opts

-

(optional) equation(s) of the form option = value; specify options for the Simulate command

Options

• 

initialconditions = Vector( realcons ) or list( equation ):

  

Specifies the initial conditions of the system. For a state-space system the initial condition is specified as a Vector, while for the differential equation system, the initial conditions is a list of equations. The discrete difference equation is first converted to a transfer function representation and then to state-space representation, and as a result any initial conditions specified are ignored. The transfer function, coefficients, and zero-pole-gain systems ignore the initial conditions. If omitted, the zero initial conditions are used.

• 

parameters = set(name = complexcons) or list(name = complexcons)

  

Specifies numeric values for parameters in sys. These values override those specified by the parameters field of the system object, which in turn override the settings in in SystemOptions(parameters). The numeric value on the right-hand side of each equation is substituted for the name on the left-hand side in the expressions that define the model. No checking is done during the substitution to determine whether the substituted value is valid. For example, a complex value can be substituted for the coefficient of a polynomial. If the complex value had been originally assigned to the model at creation, a warning would be generated.

Continuous System Options

The following options apply to continuous systems.

• 

output = solution, de, statevariable, outputvariable or a list of same

Specifies the content of the output. The following describes the output for each of the possible values. Multiple values can be selected by enclosing them in a list. Each element in the returned list/sequence (see returnlist, below) corresponds to the selected value.

– 

solution: dsolve solution procedure; the default

– 

de: system of diff-equations

– 

outputvariable: list of the output-variables

– 

statevariable: list of the state-variables

– 

dsolveargs: additional arguments passed to dsolve; includes the value of the option dsolveargs (see below).

• 

dsolveargs = list( equation )

Specifies additional parameters to be passed to dsolve. For typical values, see dsolve,numeric.

• 

returnlist = truefalse

  

True means return a list; false means return an expression sequence. The default is false.

• 

ignoredirac = truefalse

  

True means replace any function calls to Dirac in the system with 0; false means raise an error when a Dirac is present in the system. The default is false.

Description

• 

The Simulate command computes the transient response of sys, a linear system object, to input, a given input waveform. Both continuous and discrete systems can be simulated.

Continuous Systems

• 

Continuous systems are simulated using dsolve[numeric]. The system is converted to a set of differential equations and initial conditions that are passed to dsolve.

• 

Systems of type transfer function, coefficient, or zero-pole-gain are converted to a state-space representation that is then converted to a set of differential-equations.

• 

If the variable names for the states are not given (transfer function, coefficient, and zero-pole-gain) then the value of statevariable from DynamicSystems[SystemOptions] is used with a numerical index appended.

• 

A state-space system is converted to a set of differential equations.

• 

A diff-equation system is used as is.

• 

The input waveform, input, is given in terms of t, the time variable. For a single input system input is an algebraic expression, for a multiple-input system input is a list of algebraic expressions.  Heaviside functions in the input are converted to equivalent event-based steps.

• 

By default the output is a dsolve procedure that takes the value of t as the input parameter.

Discrete Systems

• 

A discrete system is simulated by converting it to a state-space representation and then iterating through the state-space equations.

• 

If the variable names for the states are not given (transfer function, coefficient, and zero-pole-gain) then the value of statevariable from DynamicSystems[SystemOptions] is used with a numerical index appended.

• 

The input waveform, input, consists of discrete values. For a single input system it is a Vector or a one-column Matrix. For a multiple input system it is a list of Vectors or a Matrix; the number of Vectors (columns of the Matrix) corresponds to the number of inputs of sys.

• 

The output is a list of Vectors. Each Vector corresponds to an output of the system. The dimension of the Vectors match the dimension of the input Vector.

• 

The calculation can be performed either as a hardware floating-point or software floating-point.  The environment variable UseHardwareFloats determines which floating-point representation is used.

Examples

withDynamicSystems:

ts0.1

ts0.1

(1)

t_sim10.0

t_sim10.0

(2)

in_tSine1,1,0,0

in_t0t<0sintotherwise

(3)

in_zSine1&comma;1&comma;0&comma;0&comma;samplecount=roundt_simts&comma;sampletime=ts&comma;discrete

sysDiffEquation0.5diffit&comma;t+it=vt0.01diffθt&comma;t&comma;0.01diffdiffθt&comma;t&comma;t+0.1diffθt&comma;t=0.01it&comma;inputvariable=vt&comma;outputvariable=θt&comma;it

sysDiff. Equationcontinuous2 output(s); 1 input(s)inputvariable&equals;vtoutputvariable&equals;θt&comma;it

(4)

syszToDiscretesys&comma;ts

syszDiff. Equationdiscrete; sampletime = .12 output(s); 1 input(s)inputvariable&equals;vqoutputvariable&equals;θq&comma;iq

(5)

solSimulatesys&comma;in_t

solprocx_rkf45...end proc

(6)

p1plotsodeplotsol&comma;t&comma;θt&comma;t=0..t_sim&comma;numpoints=200&comma;color=red&colon;

retSimulatesysz&comma;in_z

out_zret1

p2DiscretePlotout_z&comma;0&comma;ts&comma;style=stair&comma;color=blue&colon;

plotsdisplayp1&comma;p2

sys2TransferFunction1s2+s+10

sys2Transfer Functioncontinuous1 output(s); 1 input(s)inputvariable&equals;u1soutputvariable&equals;y1s

(7)

retSimulatesys2&comma;in_t&comma;output=solution&comma;de&comma;statevariable&comma;outputvariable&colon;

solret1&colon;

de_listret2&colon;

state_vret3&colon;

output_vret4&colon;

sol0.1

t=0.1&comma;x1t=0.000161695975336734&comma;x2t=0.00479344012872838&comma;y1t=0.000161695975336734

(8)

de_list

&DifferentialD;&DifferentialD;tx1t=x2t&comma;&DifferentialD;&DifferentialD;tx2t=10.x1t1.x2t+0t<0sintotherwise&comma;y1t=1.x1t&comma;x10=0&comma;x20=0

(9)

state_v

x1t&comma;x2t

(10)

output_v

y1t

(11)

plotsodeplotsol&comma;seqt&comma;i&comma;i=state_v&comma;t=0..10&comma;title=system states

plotsodeplotsol&comma;seqt&comma;i&comma;i=output_v&comma;t=0..10&comma;title=system output

See Also

DynamicSystems

DynamicSystems[ResponsePlot]