现代控制理论研究报告(英文)

时间:2024.3.31

modern control theory

Name :  

Class :

Student number:

Tutor:  

Experiment 4 Solving Similar Transformation and Canonical Form of State-Space Model and Its Realization Using Matlab

Objectives:

1. Grasping the expression of diagonal and Jordan canonical form and the methods of solutions to transfer matrices corresponding to the above matrices of LTI system by experiment.

2. Grasping the controllability, observability criterions and controllable, observable decompositions of the system by programming and debugging.

3. Reinforcing the understanding about the methods of transfer function to controllable and observable canonical form.

Requirements:

Answering the following question through an example:

The state-space model of same transfer function is unique or not.

Solution:

We choose the transfer function is:

1.diagonal canonical form:

execute the m-file:

num=[1]

den=[1 8.5 20 12.5]

[A,B,C,D]=tf2ss(num,den)

G=ss(A,B,C,D);

[V,D]=eig(A)

G1=ss2ss(G,D)

Obtain:

D =

   -5.0000         0         0

         0   -2.5000         0

         0         0   -1.0000

a =

          x1     x2     x3

   x1   -8.5    -40  -62.5

   x2    0.5      0      0

   x3      0    0.4      0

b =

       u1

   x1  -5

   x2   0

   x3   0

c =

       x1  x2  x3

   y1  -0   0  -1

d =

       u1

   y1   0

2. Jordan canonical form

num=[1]

den=[1 8.5 20 12.5]

[A,B,C,D]=tf2ss(num,den)

G=ss(A,B,C,D);

[V,J]=jordan(A)

G1=ss2ss(G,V)

Obtain:

V =

    2.5000    0.1667   -1.6667

   -0.5000   -0.1667    0.6667

    0.1000    0.1667   -0.2667

a =

           x1      x2      x3

   x1    -104  -648.8  -854.8

   x2      21   131.8   174.8

   x3    -4.2  -26.89  -36.29

b =

         u1

   x1   2.5

   x2  -0.5

   x3   0.1

c =

       x1  x2  x3

   y1   1   6   5

d =

       u1

   y1   0

Now, we should determine its controllability, observability and conduct the controllable, observable decomposition

3. Determine the controllability and observability

num=[1]

den=[1 8.5 20 12.5]

[A,B,C,D]=tf2ss(num,den)

G=ss(A,B,C,D);

Tc=ctrb(A,B)

n=size(A);

if rank(Tc)==n(1)

    disp('The system is controlled')

else

    disp('The system is not controlled')

end

Obtain:

Tc =

    1.0000   -8.5000   52.2500

         0    1.0000   -8.5000

         0         0    1.0000

The system is controlled

num=[1]

den=[1 8.5 20 12.5]

[A,B,C,D]=tf2ss(num,den)

G=ss(A,B,C,D)

To=obsv(A,C)

n=size(A);

if rank(To)==n(1)

    disp('The system is observability')

else

    disp('The system is not observability')

end

Obtain:

To =

     0     0     1

     0     1     0

     1     0     0

The system is observability

4. Controllable decomposition

num=[1];

den=[1 8.5 20 12.5];

[A,B,C,D]=tf2ss(num,den);

G=ss(A,B,C,D);

[Ac,Bc,Cc,Tc,Kc]=ctrbf(A,B,C)

G1=ss2ss(G,Tc)

Obtain:

Tc =

     0     0    -1

     0    -1     0

     1     0     0

a =

         x1    x2    x3

   x1     0     1     0

   x2     0     0    -1

   x3  12.5    20  -8.5

b =

       u1

   x1   0

   x2   0

   x3   1

 c =

       x1  x2  x3

   y1  -1  -0   0

 d =

       u1

   y1   0

5. Observable decomposition

num=[1];

den=[1 8.5 20 12.5];

[A,B,C,D]=tf2ss(num,den);

G=ss(A,B,C,D);

[Ao,Bo,Co,To] = obsvf(A,B,C)

G1=ss2ss(G,To)

Obtain:

To =

    -1     0     0

     0     1     0

     0     0    -1

a =

          x1     x2     x3

   x1   -8.5     20  -12.5

   x2     -1      0      0

   x3      0     -1      0

b =

       u1

   x1  -1

   x2   0

   x3   0

 c =

       x1  x2  x3

   y1  -0   0  -1

d =

       u1

   y1   0

Conclusion:

From the experiments, we can use MATLAB more and more. I hope all of us can obtain many things.


第二篇:现代控制理论英文词汇表


term

state

state variablesstate vectorstate space

state-space equationsstate of a system

state-space representationstate matrixinput matrixoutput matrix

direct transmission matrixtransition matrixstate variable feedbacktime domain

time-varying systemtime-invariant systemdimensions of the matrixeigenvalue of the matrixeigenvectors of the matrixdeterminant of the matrixdiagonal matrix

linear differential equationsnth-order systemsnth-order differential equationstate equationourput equationalgebraic equationtransfer functionnumerator

denominator

numerator polynomialdenominator polynomialnumerator polynomial in sdenominator polynomial in sinverted pendulumattitude controlspace boostercanonical form

diagonal canonical formJordan canonical formJordan block

controllable canonical formobservable canonical formmatrix exponential functionstate-transition matrixhomogeneous state equationsnonhomogeneous state equationscontrollability

completely state controllablecomplete state controllability

controllability matrixtranslation状态状态变量状态向量/状态矢量状态空间状态空间方程系统状态状态空间表示/状态空间表达式状态矩阵输入矩阵(控制矩阵)输出矩阵直接传递矩阵转移矩阵状态变量反馈时域时变系统时不变系统/非时变系统矩阵的维数矩阵的特征值矩阵的特征向量矩阵的行列式值对角线矩阵线性微分方程n阶系统n阶微分方程状态方程输出方程代数方程传递函数分子分母分子多项式分母多项式关于变量s的分子多项式关于变量s的分母多项式倒立摆姿态控制太空推进器标准型/规范型对角标准型/对角线标准型约当标准型约当块能控标准型能观标准型矩阵指数函数状态转移矩阵齐次状态方程非齐次状态方程能控性状态完全能控状态完全能控性能控性矩阵

controllable system

output controllability

stabilizability

observability

observable system

observability matrix

detectable

detectability

pole assignment

state variable feedbackobserver

full-state feedback control lawfull state observer

matrix

adjoint matrix

companion matrix

inverse matrix

conjugate matrix

single-input-single-output systemmulti-input-multi-output systemderivate

spring

dashpot

mass能控系统输出能控性可稳定性能观性能观系统能观性矩阵能检测能检测性极点配置状态变量反馈观测器全状态反馈控制律全维状态观测器矩阵伴随矩阵友矩阵逆矩阵共轭矩阵单输入单输出系统多输入多输出系统导数弹簧阻尼器质量块

更多相关推荐:
论文研究报告

论文研究报告中小企业融资难解决机制有效性探究李浩伟金融学13220xx310199一选题原因一论文概述这篇文章利用枣庄市中小企业融资状况问卷调查所获得的数据采用描述性统计分析和规范的实证分析方法对何种方法对于缓...

调查报告类毕业论文

科技学院20xx届本科毕业论文贵州省三本毕业生就业趋向调查报告以贵州大学科技学院为例学科专业指导教师学生姓名学生学号中国贵州贵阳20xx年5月贵州大学科技学院本科毕业论文设计第I页目录摘要IIIAbstract...

研究报告、学位论文及学术论文的区别

研究报告学位论文及学术论文的区别1科学技术报告科学技术报告是描述一项科学技术研究的结果或进展或一项技术研制试验和评价的结果或是论述某项科学技术问题的现状和发展的文件科学技术报告是为了呈送科学技术工作主管机构或科...

论文研究报告

试论英语翻译中的文化差异摘要文化在人类社会扮演着一个非常重要的角色文化是一个社会物质文明与精神文明的总和而语言是文化的载体语言是文化的一面镜子语言甚至是文化的一部分特定的文化背景产生特定的语言换句话说语言的学习...

论文格式(研究报告类)

论文格式页边距上3cm下2cm左2cm右2cm全文单栏排版尽量控制在4页内2物理量符号采用斜体物理量和单位必须执行国家标准3表示范围用波线分数范围应写作1015含量应注明是质量分数体积分数或摩尔分数可以用小数或...

毕业论文调研报告的基本格式

一、调研报告的写法调查报告是对某项工作、某个事件、某个问题,经过深入细致的调查后,将调查中收集到的材料加以系统整理,分析研究,以书面形式向组织和领导汇报调查情况的一种文书。上级电大规定调查报告专科不少于20xx…

调查研究报告类型论文参考模板

武汉科技大学硕士论文第I页武汉科技大学研究生学位论文创新性声明本人郑重声明所呈交的学位论文是本人在导师指导下独立进行研究所取得的成果除了文中已经注明引用的内容或属合作研究共同完成的工作外本论文不包含任何其他个人...

研究生学位论文开题报告及课题研究计划

研究生学位论文开题报告及课题研究计划所在学院学科专业研究方向年级学号研究生指导教师入学年月重庆理工大学研究生处制

研究生学位论文(含研究报告)撰写格式规范(20xx)

电子科技大学研究生学位论文含研究报告撰写规范20xx年修订版为规范我校研究生学位论文编写格式结合我校实际制定本研究生学位论文包含研究报告撰写规范本规范中后续的学位论文和研究报告均统称为论文一基本结构1封面见附1...

高中研究报告论文

09年研究性学习结题论文高中生理想职业及其原因调查鄞州五乡中学20xx学年研究性学习自选课题结题成果课题题目高中生理想职业及其原因调查课题编号090101组长姓名王磊主要作者周柳蝶指导老师鲁锡军完稿时间20xx...

关于大学生创业问题调查报告论文

关于大学生创业问题调查报告论文摘要在我国大学生就业压力日益严峻伴随着政府政策引导与社会观念的转变大学生创业意识就业方向也悄然发生转变通过对大学生创业问题的调查研究我们旨在了解在校大学生和毕业大学生在创业前准备的...

研究性报告论文

中国人的证式生活论文初20xx级10班周驰东暑假去办身份证拿到号码334号前面还有150个人办了1个多小时还要1个多月才拿得到这不禁让我联想起广州市政协委员曹志伟曾经的一张去年广州两会上曹志伟曾展示了一份反映投...

研究报告论文(48篇)