Matlab Simulink练习 2020-03-26

Simulink模块参数调节

1. 交互界面调节

参考

>> 使用模块参数值进行调优和实验
>> Log and Plot Simulation Data
在MODELING->Model Data Editor(1)中可以调节模块参数,还可以用字符变量代表其中的参数,如2处。点击3可以新建该变量参数值,并保存在Model Workspace(4或5)中。

Model Data Editor

在MODELING->Model Data Editor->Signals下拉框选择Instrumentation,右侧可以勾选Log Data,也可以在信号线上右键记录所选信号,则会出现一个Wifi信号一样的图标。这样被记录的信号波形可以通过SIMULATION->Data Inspector或Simscape Results查看;
或在SIMULATION -> PREPARE -> Configure Logging -> Simscape -> Data Logging中选择Log simulation data:All,并勾选(tick)open viewer after simulation

  • 如果在Workspace中变量名为simlog,则输入simlog.print可以查看各个信号名,方便后续调用simlog.xx.xxx.series
  • 绘制波形直接调用plot(simlog.xx.xxx,'units','rpm'),横坐标为时间,纵坐标为信号及其单位。For more information on plotting logged simulation data, see the simscape.logging.plot and simscape.logging.plotxy reference pages.

2. 使用编程的方式修改模块参数:

参考

>>设置模块参数值
>>优化、估计和扫描模块参数值

  1. 在仿真运行期间使用使用 get_paramset_param 函数;
  2. 多次仿真,使用不同参数使用 Simulink.SimulationInput ,对象运行多次仿真的详细信息,请参阅 sim

PI参数调节/控制器设计

1. Bode Diagram Design 手动调节PI参数实例

G = tf(1.5,[1 14 40.02]);
controlSystemDesigner('bode',G);
  1. 使用Control System Designer模块;
  2. 通过拉拽伯德图幅度特性曲线调节P(C的分子),满足阶跃响应上升时间Tr和过冲;
  3. 伯德图右键Add Pole or Zero->Integrator加入极点,因为多了积分I(C的分母s的系数),可以满足稳态要求。但是必须进一步调大增益,以满足上升时间:Right-click the Bode Editor plot area, and select Edit Compensator;
  4. 伯德图右键Add Pole or Zero->Iead增加超前网络(一个零点和一个极点)调节幅值裕量和相位裕量。

2. 自动识别并调整PID参数

这几个例子步骤都比较多,跟着练习,经常复习~~


模型线性化

1. 例:线性化电子回路,得到伯德图

  1. 使用linmod函数,使用比较复杂,不推荐;
    If your model has continuous states, use linmod. (Continuous states are the Simscape default.) If your model has mixed continuous and discrete states, or purely discrete states, use dlinmod.
%% Linearize a Circuit to View Frequency Response
% This example script shows how you can view the small-signal frequency
% response of a Simscape(TM) model by using linearization. It uses example
% model ssc_bipolar_nonlinear.
%
% An alternative and recommended way to linearize Simulink(R) and Simscape
% models is to use Simulink Control Design(TM). Simulink Control Design has
% tools that help you find operating points and returns a state-space model
% object that defines state names. If you have Simulink Control Design,
% open the model ssc_bipolar_nonlinear. On the Apps tab, under Control
% Systems, click Model Linearizer. In the Linear Analysis Tool, on the
% Linear Analysis tab, in the Linearize section, click Bode.

% Copyright 2012-2019 The MathWorks, Inc.

%% Open the model and set circuit parameters
open_system('ssc_bipolar_nonlinear')

%% Trim the model
% The Start simulation from steady state option is already selected from
% the model's Solver Configuration block. This ensures the circuit is
% initialized at the state defined by the transistor bias resistors.

%% Linearize
[a,b,c,d]=linmod('ssc_bipolar_nonlinear');
clear simlog_ssc_bipolar_nonlinear

%% Bode plot
npts = 100; f = logspace(-2,10,npts); G = zeros(1,npts); # 伯德图频率从10^(-2) Hz到10^10 Hz
for i=1:npts                                                       
    G(i) = c*(2*pi*1i*f(i)*eye(size(a))-a)^-1*b +d;    # eye单位矩阵         
end

% Reuse figure if it exists, else create new figure
try
    figure(h2_ssc_bipolar_nonlinear)
catch
    h2_ssc_bipolar_nonlinear=figure('Name', 'ssc_bipolar_nonlinear');
end

ah(1) = subplot(2,1,1);
magline_h=semilogx(f,20*log10(abs(G)));
grid                                                               
ylabel('Magnitude (dB)')                                           
title('Frequency Response (Nonlinear Bipolar Transistor)');
ah(2) = subplot(2,1,2);
phsline_h=semilogx(f,180/pi*unwrap(angle(G)));
set([magline_h,phsline_h],'LineWidth',1);
ylabel('Phase (degrees)')                                          
xlabel('Frequency (Hz)') 
grid                                                                                           

linkaxes(ah,'x') # 同步多个坐标区的范围

% Remove temporary variables
clear magline_h phsline_h a b c d G f npts i ah
  1. 使用Control Systems -> Model Linearizer.
  • Simscape里必须有Solver Configuration模块,接入电路,右键选中Start simulation from steady state;
  • Simulink -> Modeling -> Model Settings -> Data Import/Export, select the States check box to record the time series of x values in your workspace. If you also have input signals u in the model, you can capture those inputs by connecting To Workspace blocks to the input Simulink signal lines. Whichever method that you choose to find an operating point, if you want to use it for linearization, you must save the operating point information in the form of an operating point object, a simulation time t0, or a state vector x0 and input vector u0.
    这步好像不用勾选x,u也可以??
  • In the Simulink Toolstrip of the Nonlinear Bipolar Transistor model window, on the Apps tab, under Control Systems, click Model Linearizer;
  • In the Model Linearizer window, on the Linear Analysis tab, click the Bode plot button.
  1. 系统线性化基础知识
    >>Linearizing at an Operating Point
  • linear time-invariant (LTI) state space model:
    dx/dt = A·x + B·u
    y = C·x + D·u.

  • 选择合适的线性化点
    Simulink -> Apps -> Model Linearizer -> Linear Analysis -> Operating Point处设置。

    Although steady-state and other operating points (state x0 and inputs u0) might exist for your model. Operating points with a strongly nonlinear or discontinuous character are not suitable for linearization. You should analyze such models in full simulation, away from any discontinuities, and perturb the system by varying its inputs, parameters, and initial conditions. A common example is actuation systems, which should be linearized away from any hard constraints or end stops.

    Tip:
    Check for such an unsuitable operating point by linearizing at several nearby operating points. If the results differ greatly, the operating point is strongly nonlinear or discontinuous.


模块参数识别

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,951评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,606评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,601评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,478评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,565评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,587评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,590评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,337评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,785评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,096评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,273评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,935评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,578评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,199评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,440评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,163评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,133评论 2 352

推荐阅读更多精彩内容