Modeling step response on unknown model

5 visualizzazioni (ultimi 30 giorni)
Andreas Burheim Volden
Andreas Burheim Volden il 21 Mar 2015
Risposto: Christiaan il 23 Mar 2015
Hi!
I'm modeling a distillation column on black box principles. While doing so, I've encountered a issue I don't know ho to handle; the temperature in the bottom act as an "inverse" integrator when applying different manual level controller outputs(the level controller controls bottom outflow based on said temperature measurement). The feedflow into the column is constant. See attached figure. Note that the legend on the lower subplot should read "Temperature fraction" and NOT tank level.
The noisy start and end is neglible. Observe the steps in controller(at t=~1800, t=~7700 and t=~7900 output and the "inverse" integrator behavior. Modeling this as an integrator would give negative integral time, Ti, which does not makes sense. I don't know how to model this response. Anyone who could help me with this problem?
Cheers!

Risposte (1)

Christiaan
Christiaan il 23 Mar 2015
Dear Andreas,
To tune the parameters in a PID controller, both MATLAB and Simulink could be used.
  • OPTION 1: The System Identification Toolbox . With this toolbox, input and output data can be used to identify how the system behaves. Here you could for example load your data in this toolbox and identify the transfer function or the step response of your model.
  • OPTION 2: If you no not have this toolbox, you could make an experiment where the step response of your system is calculated. The derivative of this response is equal to the impulse response . Then you could use FFT to perform a fourier transformation of this impulse response. (=transfer function). With the code below you could tune the system yourself:
syms s
% this is an example of a transfer function
num = 1;
den = sym2poly(s^2+2*s+1);
G = tf(num,den);
H = 1; % gain in the feedback loop
step(feedback(G,H));hold on;
%%With a PID controller
K_p = 0.25; % this is a PID controller
K_i = 1; % that doesn't effect the system
K_d = 1;
C=pid(K_p,K_i,K_d);
T=feedback(C*G,H);
step(T);
legend('step response without PID controller','step response with PID controller')
  • OPTION 3: If you cannot obtain any step response of your system, you could try to look at the input output relationship and consider what the order of your system is. By many iterations and plots you then find an approximation of the transfer function of your system. With the code in option two, you then can construct a PID controller.
Good luck! Christiaan

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by