functionstep

Step response plot of a discrete state space system

Extends from Modelica_LinearSystems2.Internal.PartialPlotFunctionMIMO (Interface of a plot function for MIMO systems).

Information

Syntax

DiscreteStateSpace.Plot.step(dss);
   or
DiscreteStateSpace.Plot.step(
  dss,
  tSpan,
  x0,
  defaultDiagram=Modelica_LinearSystems2.Internal.DefaultDiagramTimeResponse(),
  device=Modelica_LinearSystems2.Utilities.Plot.Records.Device())

Description

This function plots the discrete step responses of a state space system for each system corresponding to the transition matrix. It is based on timeResponse.

Example

  Modelica_LinearSystems2.StateSpace ss=Modelica_LinearSystems2.StateSpace(
    A=[-1.0,0.0,0.0; 0.0,-2.0,3.0; 0.0,-2.0,-3.0],
    B=[1.0; 1.0; 0.0],
    C=[0.0,1.0,1.0],
    D=[0.0])

  Real Ts = 0.1;
  Modelica_LinearSystems2.Types.Method method=Modelica_LinearSystems2.Types.Method.StepExact;
  DiscreteStateSpace dss=DiscreteStateSpace(dss,Ts,method);

algorithm
  Modelica_LinearSystems2.DiscreteStateSpace.Plot.step(dss, tSpan=3)

See also

impulse, ramp, initialResponse

Inputs

TypeNameDefaultDescription
DiscreteStateSpacedss
RealtSpan0Simulation time span [s]
BooleansubPlotstrueTrue, if all subsystem time responses are plotted in one window with subplots
Plot.Records.DiagramdefaultDiagram (from PartialPlotFunctionMIMO)Default diagram layout
Plot.Records.Devicedevice (from PartialPlotFunctionMIMO)Modelica_LinearSystems2.Utilities.Plot.Records.Device()Properties of device where figure is shown