Lab Report 04
Lab Report 04
Calculation:
num1=[0 1];
denum1=[1 1];
G1=tf(num1,denum1);
num2=[0 1];
denum2=[1 4];
G2=tf(num2,denum2);
num3=[1 3];
denum3=[1 5];
G3=tf(num3,denum3);
A=series(G1,G2);
B=series(G3,A)
Simulink Model:
Result:
Task # 02:
Calculation:
num1=[0 1];
denum1=[1 4];
G1=tf(num1,denum1);
num2=[0 1];
denum2=[1 4];
G2=tf(num2,denum2);
num3=[1 3];
denum3=[1 5];
G3=tf(num3,denum3);
A=parallel(G1,G2);
B=parallel(G3,A)
Simulink Model:
Result:
Task # 03:
Calculation:
num1=[0 1 1];
denum1=[1 2 0];
G=tf(num1,denum1);
num2=[1 3];
denum2=[1 4];
H=tf(num2,denum2);
A=feedback(G,H)
Simulink Model:
Result:
Task # 04:
For the system in Task 3, Push H(s) to the left past of the summing junction
and draw its equivalent system. Make separate plots for the step response of
each of the system.
Simulink Model:
Result:
Task # 05:
For the system in Task 3, Push H(s) to the right past of the pick off point and
draw its equivalent system. Make separate plots for the step response of each
of the system.
Simulink Model:
Result:
Conclusion:
In the end of this lab on reducing block diagrams and verifying equivalency using
series, parallel, and feedback configurations, I have gained valuable insights into
the fundamental principles of control system analysis and design. By applying
these techniques, I have learned how to simplify complex systems while
maintaining their functionality, which is crucial for real-world applications in
engineering and beyond.