




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、自控控制原理 MATLAB 程序设计作业指导老师:汪晓宁目录一、题目 . 2二、运行结果 . 3三、程序说明 . 8四、附录 . 9 代码 . . 9 参考文献 . 17一、题目用 Matlab 创建用户界面,并完成以下功能a 将产生未综合系统的根轨迹图以及 0.707阻尼比线, 你可以交互地选择交点的运行 点。 界面能显示运行点的坐标、 增益值以及近似为二阶系统估算的超调量、 调整时 间、峰值时间、阻尼比、无阻尼自然震荡频率以及稳态误差b 显示未综合系统的阶跃响应c 输入控制器的参数, 绘制综合后系统的根轨迹图以及显示综合的设计点 (主导极点 , 允许不断改变控制器参数,知道所绘制的根轨迹通
2、过设计点d 对于综合后的系统, 显示运行点的坐标、 增益,近似为二阶系统估算的超调量、调 整时间、峰值时间、阻尼比、无阻尼自然震荡频率以及误差系数e 显示综合后系统的阶跃响应二、运行结果 输入传递函数分子分母 生成根轨迹图 选择点并得到该点各项参数在下方输出面板输出 获得阶跃响应图用 rltool(辅助,选择合适的插入零点 输入零点,并得到根轨迹图 选择根轨迹图上的任一点,得到数据,在下方输出面板输出得到阶跃响应图 三、运行说明第一步, 在请输入分子后的输入框输入传递函数分子的矩阵, 在下一输入框输入传递函 数分母并按“生成根轨迹图”按钮获得根轨迹第二步, 按选择点并显示各参数获得根轨迹图上任
3、一点的各项数据, 数据全部输出在下 方输出面板第三步,按“生成阶跃响应图”按钮可以获得该函数的阶跃响应第四步,在“请输入插入零点”后的输入框中输入参数,并按“生成综合后根轨迹图” 按钮产生根轨迹 (可以通过点击 “根轨迹校正”按钮,调用工具箱拖动零点进行快速查看根 轨迹图,选择合适的根轨迹再在输入框中输入零点的值第五步,按“选择点并显示各参数(综合后系统 ”选取各点,查阅参数,数据输出在 下方输出面板上第六步,按“生成阶跃响应图(综合后系统 ”可以得到综合后系统的阶跃响应最后,点击“退出”结束程序四、附录代码:function varargout = Liushuai20122510(vara
4、rgin% LIUSHUAI20122510 MATLAB code for Liushuai20122510.fig% LIUSHUAI20122510, by itself, creates a new LIUSHUAI20122510 or raises the existing% singleton*.% H = LIUSHUAI20122510 returns the handle to a new LIUSHUAI20122510 or the handle to% the existing singleton*.% LIUSHUAI20122510('CALLBACK
5、39;,hObject,eventData,handles,.calls the local% function named CALLBACK in LIUSHUAI20122510.M with the given input arguments.% LIUSHUAI20122510('Property','Value',. creates a new LIUSHUAI20122510 or raises the% existing singleton*. Starting from the left, property value pairs are% ap
6、plied to the GUI before Liushuai20122510_OpeningFcn gets called. An% unrecognized property name or invalid value makes property application% stop. All inputs are passed to Liushuai20122510_OpeningFcn via varargin.% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one% instanc
7、e to run (singleton".% See also: GUIDE, GUIDATA, GUIHANDLES% Edit the above text to modify the response to help Liushuai20122510 % Last Modified by GUIDE v2.5 16-Dec-2014 10:28:20% Begin initialization code - DO NOT EDITgui_Singleton = 1;gui_State = struct('gui_Name', mfilename, .'g
8、ui_Singleton', gui_Singleton, .'gui_OpeningFcn', Liushuai20122510_OpeningFcn, .'gui_OutputFcn', Liushuai20122510_OutputFcn, . 'gui_LayoutFcn', , .'gui_Callback', ;if nargin && ischar(varargin1gui_State.gui_Callback = str2func(varargin1;endif nargoutvarargo
9、ut1:nargout = gui_mainfcn(gui_State, varargin:;elsegui_mainfcn(gui_State, varargin:;end% End initialization code - DO NOT EDIT% - Executes just before Liushuai20122510 is made visible.function Liushuai20122510_OpeningFcn(hObject, eventdata, handles, varargin% This function has no output args, see Ou
10、tputFcn.% hObject handle to figure% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA% varargin command line arguments to Liushuai20122510 (see VARARGIN% Choose default command line output for Liushuai20122510handles.output =
11、 hObject;% Update handles structureguidata(hObject, handles;% UIWAIT makes Liushuai20122510 wait for user response (see UIRESUME % uiwait(handles.figure1;% - Outputs from this function are returned to the command line. function varargout = Liushuai20122510_OutputFcn(hObject, eventdata, handles% vara
12、rgout cell array for returning output args (see VARARGOUT;% hObject handle to figure% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA% Get default command line output from handles structurevarargout1 = handles.output;% - Ex
13、ecutes on button press in pushbutton1.function pushbutton1_Callback(hObject, eventdata, handles% hObject handle to pushbutton1 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATAnum = str2num(get(handles.edit1,'S
14、tring' ;den = str2num(get(handles.edit2,'String' ;G = tf(num,den;rlocus(Ghold on ;sgrid(0.707,hold off ;% - Executes on button press in pushbutton2.function pushbutton2_Callback(hObject, eventdata, handles% hObject handle to pushbutton2 (see GCBO% eventdata reserved - to be defined in a
15、future version of MATLAB % handles structure with handles and user data (see GUIDATAnum = str2num(get(handles.edit1,'String' ;den = str2num(get(handles.edit2,'String' ;sys=tf(num,den;y,t=step(sys;plot(t,y;grid on ;% - Executes on button press in pushbutton3.function pushbutton3_Callb
16、ack(hObject, eventdata, handles% hObject handle to pushbutton3 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA close(gcbf;function edit1_Callback(hObject, eventdata, handles% hObject handle to edit1 (see GCBO% ev
17、entdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA% Hints: get(hObject,'String' returns contents of edit1 as text% str2double(get(hObject,'String' returns contents of edit1 as a double% - Executes during object c
18、reation, after setting all properties. function edit1_CreateFcn(hObject, eventdata, handles% hObject handle to edit1 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a
19、 white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor' , get(0,'defaultUicontrolBackgroundColor' set(hObject,'BackgroundColor' , 'white' ;end% - Executes on button press in pushbutton4.function pushbutton4_Callbac
20、k(hObject, eventdata, handles% hObject handle to pushbutton4 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATAnum = str2num(get(handles.edit1,'String' ;den = str2num(get(handles.edit2,'String' ;fina
21、lvalue = polyval(num,0/polyval(den,0sys=tf(num,den;Kc,p=rlocfind(sys;set(handles.Kc,'string' ,Kc;X = real(p(1Y = imag(p(1set(handles.Xpoint,'string' ,num2str(X;set(handles.Ypoint,'string' ,num2str(Y;damp=sqrt(X(1,12/(X(1,12+Y(1,12;Wn=abs(X(1,1/damp;Tp=pi/(Wn*sqrt(1-damp2;over
22、shoot=exp(-pi*damp/sqrt(1-damp2;Ts=3/(damp*Wn;deviation=Wn2;set(handles.overshoot,'string' ,num2str(overshoot;set(handles.Ts,'string' ,Ts;set(handles.Tp,'string' ,Tp;set(handles.Wn,'string' ,num2str(Wn;set(handles.damp,'string' ,num2str(damp;set(handles.deviat
23、ion,'string' ,deviation;function edit2_Callback(hObject, eventdata, handles% hObject handle to edit1 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA% Hints: get(hObject,'String' returns contents o
24、f edit1 as text% str2double(get(hObject,'String' returns contents of edit1 as a double% - Executes during object creation, after setting all properties. function edit2_CreateFcn(hObject, eventdata, handles% hObject handle to edit1 (see GCBO% eventdata reserved - to be defined in a future ver
25、sion of MATLAB % handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor' , get(0,'defaultUicontrolBackgroundColor' set(hObjec
26、t,'BackgroundColor' , 'white' ;end% - Executes on button press in pushbutton5.function pushbutton5_Callback(hObject, eventdata, handles% hObject handle to pushbutton5 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user
27、 data (see GUIDATAnum = str2num(get(handles.edit1,'String' ;den = str2num(get(handles.edit2,'String' ;sys=tf(num,denrltool(sys;%ÀûÓù¤¾ßµ÷Õû¿ØÖÆÆ÷²ÎÊýʹ֮
28、¾-¹ýÖ÷µ¼¼«µãfunction edit4_Callback(hObject, eventdata, handles% hObject handle to edit4 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA% Hints: get(hObject,
29、'String' returns contents of edit4 as textw'q % str2double(get(hObject,'String' returns contents of edit4 as a double% - Executes during object creation, after setting all properties. function edit4_CreateFcn(hObject, eventdata, handles% hObject handle to edit4 (see GCBO% eventda
30、ta reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor' , get(0,'defa
31、ultUicontrolBackgroundColor' set(hObject,'BackgroundColor' , 'white' ;end% - Executes on button press in pushbutton6.function pushbutton6_Callback(hObject, eventdata, handles% hObject handle to pushbutton6 (see GCBO% eventdata reserved - to be defined in a future version of MATLA
32、B % handles structure with handles and user data (see GUIDATA% - Executes on button press in pushbutton7.function pushbutton7_Callback(hObject, eventdata, handles% hObject handle to pushbutton7 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handl
33、es and user data (see GUIDATA% - Executes on button press in pushbutton8.function pushbutton8_Callback(hObject, eventdata, handles% hObject handle to pushbutton8 (see GCBO% eventdata reserved - to be defined in a future version of MATLAB自动控制原理 Matlab 程序设计报告 % handles structure with handles and user
34、data (see GUIDATA % - Executes on button press in pushbutton9. function pushbutton9_Callback(hObject, eventdata, handles % hObject % eventdata % handles handle to pushbutton9 (see GCBO reserved - to be defined in a future version of MATLAB structure with handles and user data (see GUIDATA num = str2
35、num(get(handles.edit1,'String' den = str2num(get(handles.edit2,'String' A = str2num(get(handles.edit5,'String'*(-1; num = 1 A; G = tf(num,den; rlocus(G hold on; sgrid(0.707, hold off; % - Executes on button press in pushbutton10. function pushbutton10_Callback(hObject, eventd
36、ata, handles % hObject % eventdata % handles handle to pushbutton10 (see GCBO reserved - to be defined in a future version of MATLAB structure with handles and user data (see GUIDATA num = str2num(get(handles.edit1,'String' den = str2num(get(handles.edit2,'String' A = str2num(get(han
37、dles.edit5,'String' num = 1 A; sys=tf(num,den; y,t=step(sys; plot(t,y; grid on; % - Executes on button press in pushbutton11. function pushbutton11_Callback(hObject, eventdata, handles % hObject % eventdata % handles handle to pushbutton11 (see GCBO reserved - to be defined in a future versi
38、on of MATLAB structure with handles and user data (see GUIDATA num = str2num(get(handles.edit1,'String' den = str2num(get(handles.edit2,'String' A = str2num(get(handles.edit5,'String' 15 自动控制原理 Matlab 程序设计报告 num1 = 1 A; sys=tf(num1,den; Kc,p=rlocfind(sys; set(handles.Kc,'string',Kc; X = real(p(1 Y = imag(p(1 set(handles.Xpoint,'string',num2str(X; set(handles.Ypoint,'string',num2str(Y; damp=sqrt(X(1,12/(X(1,12+Y(1,12; Wn=abs(X(1,1/damp; Tp=pi/(Wn*sqrt(1-damp2; overshoot=exp(-pi*damp/sqrt(1-damp2; Ts=3/(damp*Wn; deviat
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 3-6岁儿童几何形状知觉的发展特点-来自眼动的证据
- 一类基于离子皮肤的柔性电容式传感器理论设计与试验研究
- 新型装配式钢-UHPC组合梁高强螺栓连接件抗剪性能研究
- 少年宫英语口语提升计划
- 农田土地托管合作协议
- 证券投资咨询合同
- 2025年成人高考《语文》语言表达与运用基础巩固试题试卷
- 2025年消防安全案例分析及案例分析能力考察应用考试试卷
- 有机食品产销合作协议
- 农田灌溉工程的环保和施工措施
- 血液科护士对输血反应的识别与处理
- 《工程材料基础》课件
- 渠道施工课件
- 预防艾滋病宣传教育主题班会
- Part1-2 Unit1 Travel 教案-【中职专用】高一英语精研课堂(高教版2021·基础模块2)
- 城市普通中小学校校舍建设标准
- 数字化时代的金融监管
- 《疯狂动物城》全本台词中英文对照
- 金融风险传染性研究
- 小学科学实验目录1-6年级新教科版
- 成人体外心肺复苏专家共识(2023版)解读
评论
0/150
提交评论