pcwortex
Junior Member level 3
Neimark D-partition method and PI regulator
Hi everybody. Recently I read two articles about Neimark D-partition method. It is interesting method, because you could unstable system make stable and with desirable phase margin My to read articles is:
http://www.nt.ntnu.no/users/skoge/p...trol_conference_2010/pdf/22_Osusky_Vesely.pdf
http://www.nt.ntnu.no/users/skoge/p...l_conference_2010/pdf/46_Hypiusova_Osusky.pdf
And I tried to make PID regulator using Neimark D-partition. My transfer function is:
**broken link removed**
there:
Perform compute:
I separate real piece from imag piece:
Using Matlab program and draw D-partition curve k_i(k). Matlab code:
I give this curve:
**broken link removed**
In article show this curve:
**broken link removed**
I don't undestand why this curve is different. Maybe you see my mistake?
Hi everybody. Recently I read two articles about Neimark D-partition method. It is interesting method, because you could unstable system make stable and with desirable phase margin My to read articles is:
http://www.nt.ntnu.no/users/skoge/p...trol_conference_2010/pdf/22_Osusky_Vesely.pdf
http://www.nt.ntnu.no/users/skoge/p...l_conference_2010/pdf/46_Hypiusova_Osusky.pdf
And I tried to make PID regulator using Neimark D-partition. My transfer function is:
**broken link removed**
there:
Perform compute:
I separate real piece from imag piece:
Using Matlab program and draw D-partition curve k_i(k). Matlab code:
Code:
w=(0:0.1:200);
rad=65*3.14/180;
k=(w.^2*cos(rad)+3998*cos(rad)-2.418.*w*sin(rad))./18400;
k_i=((2.418.*w*cos(rad)+w.^2*sin(rad)+3998*sin(rad)).*-w)./(18400);
plot(k,k_i)
grid on;
**broken link removed**
In article show this curve:
**broken link removed**
I don't undestand why this curve is different. Maybe you see my mistake?
Last edited: