首页 > 解决方案 > 在 MATLAB 中为波特图定义传递函数的问题

问题描述

我正在尝试使用 Matlab 调整 PID 控制器(不是 Simulink,因为我正在学习/uni 课程)。 1、总结问题:

2.描述我尝试过的

问题

错误 Full_Code: https ://drive.google.com/file/d/1sWUnvvye_RBXGL8-nWq___3F5UDmDOoG/view?usp=sharing

最小可重现代码示例:

clearvars;clc;clearAllMemoizedCaches;clear

syms s w 

%--------------TF of the aircraft

G(s)= (160*(s+2.5)*(s+0.7))/((s^2+5*s+40)*(s^2+0.03*s+0.06));

k= 8;  % selected k value range 4<k<8

Max_PA=asind((k-1)/(k+1)); % computes max phase advance

Centre_dB= 20*log10(sqrt(k)); % computing centre gain in dB

Poi= -120-Max_PA  % looking for Point of interest(Poi)

tf_int= subs(G(s),1j*w); %intermediate transfer function

eqn= atan2d(imag(tf_int),real(tf_int))==Poi; % solve for w at Poi


% computing crossover freq(wc)

wc= vpasolve(eqn,w); % find exactly the wc at Poi

GR=20*log10(abs(subs(tf_int,w,wc))); % find the gain at at wc

Kpa= 10^((GR-Centre_dB)/20);

ti= 1/(sqrt(k)*wc); % computing Kpa and ti

num1= [Kpa*k*ti,Kpa];

den2= [ti,1];

PA= tf(num1,den2) %PA tf defined

标签: matlabplot

解决方案


Yo 正在尝试将非数字(符号数字)值输入tf,它只接受数字数组。您可以将它们转换为double()

PA= tf(double(num1),double(den2)) %PA tf defined

推荐阅读