Borrar filtros
Borrar filtros

Varying Parameter Automatically

1 visualización (últimos 30 días)
Alice Chin
Alice Chin el 16 de Oct. de 2011
How to auto input the values of controller gain Kc, integral time τI, Derivative time τD of PID controller parameter when values of process gain Kp, time constant τ and time delay Ѳ are varying.
For example, I want to vary the parameter Kp, τ and Ѳ of the transfer function from 1-10 for each parameter automatically by using Cohen Coon tuning rule.

Respuestas (1)

Ashikur
Ashikur el 17 de Oct. de 2011
%% Are you using simulink model? you can sweep using a loop.
%% For example 'kp' is your model parameter and named as 'kp'
open_system('your_system')
kpSweep = 1:diff:10;
for i = 1:length(kpSweep)
kp = kpSweep(i);
[out params] = sim('your_system');
end

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by