Main Content

Passivity Enforcement for Control Design

A system is passive if it cannot produce energy on its own, and can only dissipate the energy that is stored in it initially. In many cases, you can enforce passivity on a closed loop system by modifying the actions of the controller such that the system dissipates energy over time, and therefore has a stable equilibrium.

Passivity Enforcement Block

The Passivity Enforcement block, which requires Optimization Toolbox™ software, computes the modified control actions that are closest to specified control actions subject to passivity constraints and action bounds. The block uses a quadratic programming (QP) solver to find the control action u that minimizes the function |uu0|2 in real time. Here, u0 is the unmodified control action from the controller.

The solver applies the following constraints to the optimization problem.

ρypTyp+ypTfp+ypTgpu0uminuumax

Here:

  • ρ is the passivity index.

  • yp is the passivity output function, defined as yp=hp(x).

  • fp and gp are the functions defined by the passivity input function up=fp(x)+gp(x)u.

  • umin is a lower bound for the control action.

  • umax is an upper bound for the control action.

Since the Passivity Enforcement block modifies the original control action, the final closed-loop system might not achieve the design objectives of the original controller, such as stability margins.

You must verify that the combined controller and Passivity Enforcement block meet your original control objectives. If the system does not meet your original objectives, consider updating your original controller design. For example, you can add additional gain and phase margins to compensate for any potential performance degradation.

Passivity Functions

If the plant model is passive, then there exists a storage function such that:

V˙(x)uTy.

Feedback system interconnection

If the controller satisfies the following condition.

uTyρyTy(ρ>0)

Then, the closed loop system becomes

V˙(x)ρyTy0,

and if the plant model is zero-state observable ( if u = 0, and x = 0 when y = 0), then the closed-loop system is asymptotically stable.

In general, when you have a closed-loop system with a nominal controller, you can define the following based on the plant dynamics.

  • Passivity input function — up=fp(x)+gp(x)u

  • Passivity output function — yp=hp(x)

You can then make the closed-loop system satisfy the following inequality to enforce passivity.

upTypρypTyp

The Passivity Enforcement block formulates this problem as a quadratic programming optimization problem as defined in the previous section. For more information, see About Passivity and Passivity Indices.

You can formulate passivity constraint depending on your control design goals, such as feedback stability or reference tracking, depending on how you specify the passivity input function up and passivity output function yp. For an example that uses passivity constraints for stability, see Enforce Passivity Constraints for Quadruple-Tank System. For an example that uses passivity constraints for vibration control in a beam, see Enforce Passivity Constraint for Flexible Beam.

See Also

Related Topics