ncfsyn

Loop shaping design using Glover-McFarlane method

Description

ncfsyn implements a method for designing controllers that uses a combination of loop shaping and robust stabilization as proposed in [1]-[2]. The function computes the Glover-McFarlane H normalized coprime factor loop-shaping controller K for a plant G with pre-compensator and post-compensator weights W1 and W2. The function assumes the positive feedback configuration of the following illustration.

To specify negative feedback, replace G by –G. The controller Ks stabilizes a family of systems given by a ball of uncertainty in the normalized coprime factors of the shaped plant Gs = W2GW1. The final controller K returned by ncfsyn is obtained as K = W1KsW2.

[K,CL,gamma,info] = ncfsyn(G) computes the Glover-McFarlane H normalized coprime factor loop-shaping controller K for the plant G, with W1 = W2 = I. CL is the closed-loop system from the disturbances w1 and w2 to the outputs z1 and z2. The function also returns the H performance gamma, and a structure containing additional information about the result.

example

[K,CL,gamma,info] = ncfsyn(G,W1) computes the controller using the pre-compensator weight you specify in W1, with W2 = I.

[K,CL,gamma,info] = ncfsyn(G,W1,W2) computes the controller using the specified pre-compensator weight W1 and post-compensator weight W2.

Examples

collapse all

Use ncfsyn to design a controller for the following plant.

G = tf([1 5],[1 2 10]);

Use weighting functions that yield a shaped plant W1*G*W2 with high gain for disturbance attenuation below 0.1 rad/s, and low gain for good robust stability above about 5 rad/s. For this G, a pre-compensator weight alone is sufficient.

W1 = tf(1,[1 0]);
bodemag(W1*G)
grid

Compute the controller.

[K,CL,gamma,info] = ncfsyn(G,W1);

The optimal cost gamma is related to the normalized coprime stability margin of the system by 1/gamma = ncfmargin(Gs,-Ks). (The minus sign is needed because ncfmargin assumes a negative-feedback loop, while ncfsyn computes a positive-feedback controller.)

b = ncfmargin(info.Gs,-info.Ks);
[gamma 1/b]
ans = 1×2

    1.4508    1.4508

Compare the achieved and target loop shapes.

sigma(G*K,G*W1)
legend('achieved','target')

Input Arguments

collapse all

Plant, specified as a dynamic system model such as a state-space (ss) model. If G is a generalized state-space model with uncertain or tunable control design blocks, then ncfsyn uses the nominal or current value of those elements. G must have the same number of inputs and outputs.

Pre-compensator weight, specified as:

  • Identity matrix eye(N), where N is the number of inputs or outputs in G.

  • SISO minimum-phase LTI model. In this case, ncfsyn uses the same weight for every loop channel.

  • MIMO minimum-phase LTI model of the same I/O dimensions as G.

Select pre-compensator and post-compensator weights W1 and W2 such that the gain of the shaped plant Gs = W2GW1 is sufficiently high at frequencies where good disturbance attenuation is required, and sufficiently low at frequencies where good robust stability is required.

Post-compensator weight, specified as the identity matrix eye(N) or a SISO or MIMO LTI model. The considerations for specifying W2 are the same as those for W1.

Output Arguments

collapse all

H-optimal loop-shaping controller, returned as a state-space (ss) model with the same I/O dimensions as G. The optimal controller K = W1KsW2. See Algorithms.

Optimal closed-loop system from the disturbances w1 and w2 to the outputs z1 and z2, returned as a state-space model. The closed-loop system is given by:

[IK](IGK)1[I,G].

H performance achieved with the controller K, returned as a positive scalar value greater than 1. The H performance is hinfnorm(CL). The optimal controller Ks is such that the singular-value plot of the shaped loop Ls = W2GW1Ks optimally matches the target loop shape Gs to within a factor of gamma. However, for numerical reasons, ncfsyn generally returns a controller with slightly larger H performance than optimal. For the optimal achievable performance, see the info output argument.

gamma is related to the normalized coprime stability margin of the system by gamma = 1/ncfmargin(Gs,-Ks). Thus, gamma gives a good indication of robustness of stability to a wide class of unstructured plant variations, with values in the range 1 < gamma < 3 corresponding to satisfactory stability margins for most typical control system designs.

Additional information about the controller synthesis, returned as a structure containing the following fields.

  • gopt — Optimal performance achievable by H synthesis for the shaped plant. For numerical reasons, ncfsyn generally returns a controller with slightly larger H performance, which is returned in gamma.

  • emaxnugap robustness metric, emax = 1/gopt (see gapmetric)

  • Gs — Shaped plant Gs = W2GW1

  • Ks — Optimal controller for shaped plant Gs. The final controller is K = W1KsW2. See Algorithms for details.

Tips

  • While ncfmargin assumes a negative-feedback loop, the ncfsyn command designs a controller for a positive-feedback loop. Therefore, to compute the margin using a controller designed with ncfsyn, use [marg,freq] = ncfmargin(G,K,+1).

Algorithms

The returned controller K = W1KsW2, where Ks is an optimal H controller that minimizes the H cost

γ(Ks)=[IKs](IGsKs)1[I,Gs]=[IGs](IKsGs)1[I,Ks].

The optimal performance is the minimal cost

γ:=minKsγ(Ks).

Suppose that Gs=NM–1, where N()*N() + M()*M() = I, is a normalized coprime factorization (NCF) of the weighted plant model Gs. Then, theory ensures that the control system remains robustly stable for any perturbation G˜s to Gs of the form

G˜s=(N+Δ1)(M+Δ2)1

where Δ1, Δ2 are a stable pair satisfying

[Δ1Δ2]<MARG:=1γ.

The closed-loop H-norm objective has the standard signal gain interpretation. Finally it can be shown that the controller, Ks, does not substantially affect the loop shape in frequencies where the gain of W2GW1 is either high or low, and will guarantee satisfactory stability margins in the frequency region of gain cross-over. In the regulator set-up, the final controller to be implemented is K=W1KsW2.

See McFarlane and Glover [1][2] for details.

Compatibility Considerations

expand all

Not recommended starting in R2020b

References

[1] McFarlane, D.C., and K. Glover, Robust Controller Design using Normalised Coprime Factor Plant Descriptions, Springer Verlag, Lecture Notes in Control and Information Sciences, vol. 138, 1989.

[2] McFarlane, D.C., and K. Glover, “A Loop Shaping Design Procedure using Synthesis,” IEEE Transactions on Automatic Control, vol. 37, no. 6, pp. 759– 769, June 1992.

[3] Vinnicombe, G., “Measuring Robustness of Feedback Systems,” PhD dissertation, Department of Engineering, University of Cambridge, 1993.

[4] Zhou, K., and J.C. Doyle, Essentials of Robust Control. NY: Prentice-Hall, 1998.

Introduced before R2006a