?? main_pi_control.m
字號:
% Control of a water tank temperature
% Case of Proportional-Integral Control
% Author's Data: Housam BINOUS
% Department of Chemical Engineering
% National Institute of Applied Sciences and Technology
% Tunis, TUNISIA
% Email: binoushousam@yahoo.com
% Main program calls function PI_control
% and plot results: sensor and tank temperatures and heat input to the water tank
tf = 150;
x0=[20 2500 20 0];
[t,x] = ode15s('PI_control',[0 tf],x0);
x1=x(:,1);
x2=x(:,2);
x3=x(:,3);
figure(1);
hold on
plot(t,x1,'r');
plot(t,x3,'b');
hold off
figure(2);
hold on;
plot(t,x2,'c');
hold off;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -