State space Representation and Transfer function don't match?
Afficher commentaires plus anciens
Hi everyone,
I don't understand why the state space output doesn't match the transfer function model in Simulink.
I am sure that the PI controller is able to make the value converge to the one i need (30) in this case, but in the state space representation the output value doesn't converge to 30 and i don't understand why.
The values for the simulink models are the following:
J_M=0.00009;
B_M=0.01;
Lambda_PM=0.14294;
polepairs=3;
L=2.2e-4;
R=4.46;
a=-B_M/J_M;
c=1;
b=1.5*polepairs*Lambda_PM;
d=0;
The simulink file is attached, together with the results i get from it.
Thank you in advance :)

3 commentaires
Mathieu NOE
le 17 Mai 2021
hi
could not run the simulink file because I have R2020b
but I noticed the two systems do have significant difference in DC gain - why not make things simpler and have same gain ? then you could use also same PID

% ss step response
figure(1),step(a,b,c,d)
% tf step response
num = b;
den = [J_M B_M];
figure(2),step(num,den)
Claudio Di Pietro
le 17 Mai 2021
Mathieu NOE
le 18 Mai 2021
My pleasure
Ciao
Réponses (0)
Catégories
En savoir plus sur Simulink dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!