I have this model in simulink (the graph is my output):
The step input has amplitude 0.5 m/s, and it steps up after 0.1 seconds. The gain $K_p=5$.
The saturation block is to keep the voltage between -3 and 3 volts.
The transfer function is the system, and it is given by $H(s) = \frac{16.94s + 579.5}{s^2 + 507.2s + 1224}$
The integration block is to convert velocity (in m/s) to position (in m). So the output is position.
I want my system response to be as fast as possible, and with no overshoot. On the graph above, an overshoot can be seen. To fix this, I added a $C_d=\frac{0.4s+1}{0.04s+1}$ term in the feedback loop.
As you can see there is no longer any overshoot. But it still takes about 3 seconds for the output to stabilize around the desired value.
How do I make the system response faster, such that the desired output value is reached sooner? Can I add a block in my simulink model perhaps?
Edit
Putting the $C_d$ block in the forward path sped up the response, but not by much. About 1 sec.


