How would I determine the gain required for a settling time of 1 second for the system G=(s+4)/((s+1)(s^2+6s+13))?
Show older comments
For the following equation:
G=(s+4)/((s+1)(s^2+6s+13))
How would I determin the gain required for the system the have a settling time of 1 second?
I have the code set (see below) to confirm the theory, but the hand calculation is messing me up.
clear
close all
clc
a = input('input a in form [... ... ...]');
b = input('input b in form [... ... ...]');
c = input('input c in form [... ... ...]');
sys = zpk(a,b,c)
step(sys)
Thank-you for your time and help.
Accepted Answer
More Answers (0)
Categories
Find more on Tuning Goals 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!
