1、内容简介

210-模糊PID论文

2、内容说明

3、仿真分析clc

clear
close all
p = 1.8;
i = 0.0001;
d= 1;
lim = 5;
sim temperature_control
plot(tout,yout(:,1),tout,yout(:,2),tout,yout(:,3))
legend('没控制','PID控制','模糊PID控制')
grid on

仿真模型

matlab/simulink下的模糊pid的温度控制系统_模糊pid

其中fuzzypid是模糊PID模块


仿真结果,对比PID和模糊PID结果

matlab/simulink下的模糊pid的温度控制系统_温度控制系统_02

对比结果可以发现,在模糊PID的情况下,系统的超调量减少了14.81%,同时系统的更加稳定,

4、参考论文