Ramp response for transfer function using symbolic function

12 vues (au cours des 30 derniers jours)
Ian Thean
Ian Thean le 6 Nov 2020
Modifié(e) : Ian Thean le 12 Nov 2020
syms s k
a = 1
b = -5/s
K = a + b;
G = 6*s + 12/s^3 + 8*s^2 + 19*s + 12;
F = 1;
R = 1/s^2;
Error = (K*G/(1+K*G*F));
ssE = limit(s*Error,s,0);
I trying to churn a ramp response figure with this code. I remove R from Error eqn as to find feedback response. I type in " figure(1);step(Error/s) " to create figure but error keeps prompting "not enough input arguements".
Could use some advice on this?
Thnk!

Réponse acceptée

Raunak Gupta
Raunak Gupta le 9 Nov 2020
Hi,
The step function that is used only accepts Dynamic System Models as input. One example is tf which you are trying to use. Replacing the syms s k with s = tf(‘s’) in your code clear out the error. But again limit function is only valid for symbolic expression. So, you may choose what you prefer to do.
This works fine if you want to use step.
s = tf('s');
a = 1;
b = -5/s;
K = a + b;
G = 6*s + 12/s^3 + 8*s^2 + 19*s + 12;
F = 1;
Error = (K*G/(1+K*G*F));
step(Error);
If you want to use limit, then the code given in the question works fine.
  1 commentaire
Ian Thean
Ian Thean le 12 Nov 2020
Modifié(e) : Ian Thean le 12 Nov 2020
I see! Thanks a lot! Now I understand the difference between the two.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by