Can you help me get the graph I want in a PID control system given the transfer function and design? PLEASE HELP ME
Show older comments
I don't know how to set the initial value and range. Can you help me change the input and PID values in matlab simulink if needed and get the red line in the graph below? Thanks a lot.
Accepted Answer
More Answers (2)
veysel burçak
on 15 Aug 2023
0 votes
3 Comments
veysel burçak
on 15 Aug 2023
veysel burçak
on 15 Aug 2023
I'm unable to open the file because it was created with a newer version (R2022a) of Simulink. Actually, I don't understand the transfer function that you talked about. In fact, I am unsure about where you want to place the unique transfer function.
Regarding your simulation of the system (presumably the state-space,
) without the PID controller, the unit step response should reach a steady-state at
, as shown below.
A = [-4.46566e-3 4.45684e-3;
5.15227e-3 -5.15227e-3];
B = [ 3.16315e-3;
0];
C = [ 1 0];
D = 0;
sys = ss(A, B, C, D)
dcgain(sys)
step(sys)
veysel burçak
on 15 Aug 2023
0 votes
3 Comments
veysel burçak
on 15 Aug 2023
Sam Chak
on 15 Aug 2023
I have updated the Answer with the generation of the sawtooth signal.
veysel burçak
on 16 Aug 2023
Categories
Find more on 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!



