functionstepResponse

Calculate the step time response of a discrete zeros-and-poles transfer function

Extends from Modelica_LinearSystems2.Internal.timeResponseMask_zp_discrete (Declares the common structure for the set of discrete response functions).

Information

Syntax

(y, t, x)=DiscreteZerosAndPoles.Analysis.stepResponse(dzp, tSpan, x0)

Description

Function stepResponse calculates the step response of a DiscreteZerosAndPoles transfer function. The system is transformed to a DiscreteStateSapce system and starting at x(t=0)=0 and y(t=0)=C*x0 + D*u0, the outputs y and x are calculated for each time step t=k*dt.

DiscreteZerosAndPoles.Analysis.stepResponse(dzp, tSpan)

gives the same result as

DiscreteZerosAndPoles.Analysis.timeResponse(dzp, tSpan, response=Types.TimeResponse.Step, x0=fill(0,DiscreteZerosAndPoles.Analysis.denominatorDegree(zp))).

Example

  Modelica_LinearSystems2.DiscreteZerosAndPoles dzp=dzp=1/(q^2 + q + 1)
  dzp.Ts=0.1;

  Real tSpan= 0.4;

  Real y[5,1,1];
  Real t[5];
  Real x[5,1,1]

algorithm
  (y,t,x):=Modelica_LinearSystems2.DiscreteZerosAndPoles.Analysis.stepResponse(dzp,tSpan);
//  y[:,1,1] = {0, 0, 1, 0, 2.96059473233375E-016}
//         t={0, 0.1, 0.2, 0.3, 0.4}
//  x[:,1,1] = {0, 0, 3.0, 0, 8.88178419700125E-016}

See also

DiscreteZerosAndPoles.Analysis.timeResponse

Inputs

TypeNameDefaultDescription
Modelica_LinearSystems2.DiscreteZerosAndPolesdzp (from timeResponseMask_zp_discrete)
RealtSpan (from timeResponseMask_zp_discrete)0Simulation time span [s]

Outputs

TypeNameDefaultDescription
Real[:,1,1]y (from timeResponseMask_zp_discrete)Output response: (number of samples) x (number of outputs) x (number of inputs)
Real[:]t (from timeResponseMask_zp_discrete)Time vector: (number of samples)
Real[:,Modelica_LinearSystems2.DiscreteZerosAndPoles.Analysis.denominatorDegree(dzp),1]x_discrete (from timeResponseMask_zp_discrete)State trajectories: (number of samples) x (number of states) x (number of inputs)