Borrar filtros
Borrar filtros

How to generate first value for Kp, Ki of PID in current controller

46 visualizaciones (últimos 30 días)
How to generate first value for Kp, Ki of PID for Id,Iq in current controller.Now I put random values for initial kp,ki values.For Example ,For Many projects ,I put kp =1,Ki = 10.After that ,I have to tune using auto tuning method.So,Do you have any method or formula for generate initial value for Kp,Ki of PID in current controller.
  2 comentarios
Sam Chak
Sam Chak el 6 de Jul. de 2023
Can you show the mathematical model of the plant or system?
The initial values for the control gains can be generated when the nominal model is available.
How you want to tune them later to fit the control objectives is another story.
Aquatris
Aquatris el 22 de Jul. de 2023
This depends on a lot of things. However if you know nothing about the system, there is no way to do this. You can try to follow certain PID tuning methods (ziegler nichols is the most popular for simple systems) but then you need to know the order of magnitude of your gains regardsless.

Iniciar sesión para comentar.

Respuesta aceptada

Sabin
Sabin el 6 de Jul. de 2023
It is possible to use pole placement as a starting point. If you can approximate the plant with a first order system, it is easy to compute the gains in MATLAB. See below an example for tuning the PMSM current controllers if we know the values of inductance L (can be Ld and Lq or same L depending on if surface or interior magnets) and resistance R. The only parameter we will need to define is the bandwidth.
% G(s) = 1/(L.s+R)=(1/R)/((L/R).s+1)
w0=Hz*2*pi; % bandwidth [rad/s]
zeta=1; % attenuation
Kp=2*zeta*w0*L-R; % proportional gain
Ki=Kp*(L*w0^2); % integral gain
  1 comentario
adhavan d
adhavan d el 7 de Jul. de 2023
can you tell how to calculate frequency which is used for calculating Bandwidth(w0)?

Iniciar sesión para comentar.

Más respuestas (0)

Comunidades de usuarios

Más respuestas en  Power Electronics Control

Community Treasure Hunt

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

Start Hunting!

Translated by