【控制】《鲁棒控制》-周克敏老师

在这里插入图片描述
《Essentials of Robust Control》

山东科技大学周克敏教授主讲《鲁棒控制》课程

鲁棒控制课件
链接:https://pan.baidu.com/s/1WD_9KuXSYlbvHpSxgGJcGg
提取码:2khx

视频课程地址:鲁棒控制(B站)

Matlab hinfnorm()

Syntax

ninf = hinfnorm(sys)
ninf = hinfnorm(sys,tol)
[ninf,fpeak] = hinfnorm(___)

Description

ninf = hinfnorm(sys) returns the H∞ norm in absolute units of the dynamic system model, sys.

  • If sys is a stable SISO system, then the H∞ norm is the peak gain, the largest value of the frequency response magnitude.
  • If sys is a stable MIMO system, then the H∞ norm is the largest singular value across frequencies.
  • If sys is an unstable system, then the H∞ norm is defined as Inf.
  • If sys is a model that has tunable or uncertain parameters, then hinfnorm evaluates the H∞ norm at the current or nominal value of sys.
  • If is a model array, then hinfnorm returns an array of the same size as sys, where ninf(k) = hinfnorm(sys(:,:,k)) .

For stable systems, hinfnorm(sys) is the same as getPeakGain(sys).

ninf = hinfnorm(sys,tol) returns the H∞ norm of sys with relative accuracy tol.

[ninf,fpeak] = hinfnorm(___) also returns the frequency, fpeak, at which the peak gain or largest singular value occurs. You can use this syntax with any of the input arguments in previous syntaxes. If sys is unstable, then fpeak = Inf.

E.G.

Norm of MIMO System

Compute the H∞ norm of the following 2-input, 2-output dynamic system and the frequency at which the peak singular value occurs.

G ( s ) = [ 0 3 s s 2 + s + 10 s + 1 s + 5 2 s + 6 ] G(s) = \left[\begin{matrix} 0 & \frac{3s}{s^2 + s +10} \\ \frac{s+1}{s+5} & \frac{2}{s+6} \end{matrix}\right] G(s)=[0s+5s+1s2+s+103ss+62]

G = [0 tf([3 0],[1 1 10]);tf([1 1],[1 5]),tf(2,[1 6])];
[ninf,fpeak] = hinfnorm(G)

ninf = 3.0150
fpeak = 3.1623

The H∞ norm of a MIMO system is its maximum singular value. Plot the singular values of G and compare the result from hinfnorm.

sigma(G), grid

在这里插入图片描述
The values ninf and fpeak are consistent with the singular value plot, which displays the values in dB.

https://www.mathworks.com/help/robust/ref/lti.hinfnorm.html

http://matrix.etseq.urv.es/manuals/matlab/toolbox/mutools/h2norm.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Zhao-Jichao

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值