How to simulate a SS model with parametric sampling time?
2 views (last 30 days)
Show older comments
Hi,
As it has been stated in the title, I have been given a state space model as:
And I have been asked to discretize it with a ' proper ' sampling time. Obviously the term ' proper ' is something which relates to the other parts of my task but for now, I want to know is there any tool in Matlab that I could ,perhaps, see the changes of system response to different values of Ts (sampling time)?
Regards
3 Comments
Sebastian Castro
on 14 May 2015
Well... you could use c2d multiple times and then plot the step response or Bode plots of all your systems. This should let you visually inspect what a "good" sampling rate should look like.
See my answer below these comments.
Answers (1)
Sebastian Castro
on 13 May 2015
Edited: Sebastian Castro
on 14 May 2015
Assuming you have Control System Toolbox and you already made your matrices A, B, C, D, you can package them up into a state-space container:
sys = ss(A,B,C,D)
Then, you can discretize them with the | c2d | function, using different sample times and methods:
sysD1 = c2d(sys,0.1);
Ts = 0.01;
sysD2 = c2d(sys,Ts);
sysD3 = c2d(sys,Ts,'tustin')
Then, you can plot all the systems together (in time or frequency domain) to determine how the results compare to the "real" continuous system:
step(sys,sysD1,sysD2,sysD3);
bode(sys,sysD1,sysD2,sysD3);
- Sebastian
0 Comments
See Also
Categories
Find more on Get Started with Control System Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!