Industrial Control and Automation Assignment
Industrial Control and Automation Assignment
GROUP MEMBER ID NO
AMI BIRHANU UGR/9923/13
HELEN GIRMA UGR/4633 /13
MENGSTU TARKO UGR/0404/13
Submitted to Mr Teshome
Submission Date 4/22/2025
1)
1)
Characterstics Open loop P-closed loop P-closed loop P-closed loop
system (Kc=10) (Kc=20) (kc=30)
Rise time Relatively low 1.2s 0.67s 0.47s
Settling time 0.8s 0.8s 0.8s 0.8
Steadystate 0.95 0.67 0.5 0.4
error
Overshoot 0% 12.5% 19.1% 4.3%
1. Rise Time:
o Open-Loop: Long rise time due to lack of feedback.
o (Kc = 10): Reduced rise time, indicating a better response.
o (Kc = 20): Further reduced rise time, showing increased responsiveness.
o (Kc = 30): Quickest rise time, reflecting strong proportional control.
2. Settling Time:
o Open-Loop: Extended settling time, with the response taking longer to stabilize.
o (Kc = 10): Shorter settling time than the open loop but still significant.
o (Kc = 20): Even shorter settling time, showing improved stability.
o (Kc = 30): Fastest settling time, indicating rapid stabilization.
3. Overshoot:
o Open-Loop: High overshoot due to no damping.
o (Kc = 10): Moderate overshoot, still present but reduced.
o (Kc = 20): Lower overshoot, showing better control.
o (Kc = 30): Very low overshoot, indicating effective response management.
4. Steady-State Error:
o Open-Loop: Significant steady-state error.
o (Kc = 10): Reduced steady-state error, but noticeable.
o (Kc = 20): Further reduced steady-state error.
o (Kc = 30): Minimal steady-state error, demonstrating enhanced control.
Conclusion
The comparison demonstrates that the proportional (P) closed-loop configurations significantly
improve system performance compared to the open-loop system. Higher proportional gains lead
to faster rise times, shorter settling times, reduced overshoot, and lower steady-state errors. This
analysis highlights the importance of tuning the proportional gain Kc to achieve optimal
control system performance.
2) Open-Loop System:
Introducing integral control eliminates steady-state error for a step input (system becomes
type 1). However, it typically slows down the response (increases rise and settling times)
and can introduce overshoot due to the increased system order and potential for
instability.
TI=100:
Step Responses
Performance Metrics
1. Rise Time:
o Open-Loop: The time taken to rise from 10% to 90% of the final value is longer,
indicating a slower response.
o Closed-Loop: The rise time is significantly reduced due to the feedback, allowing
for a faster transition to the steady state.
2. Settling Time:
o Open-Loop: The settling time is extended, meaning the system takes longer to
stabilize within a specified error band.
o Closed-Loop: The closed-loop system shows a shorter settling time, reflecting
improved stability and responsiveness due to the feedback mechanism.
3. Overshoot:
o Open-Loop: The open-loop system may exhibit more overshoot as it lacks
damping from feedback.
o Closed-Loop: The closed-loop system typically demonstrates reduced overshoot,
indicating better control over the response and less tendency to exceed the steady
state.
Steady-State Error
The steady-state error for the open-loop system is generally higher compared to the
closed-loop system, which approaches the desired output more effectively due to the
feedback control.
4.
1. Open-Loop System:
o Rise Time: Longer, indicating a slow response.
o Settling Time: Extended, showing it takes time to stabilize.
o Overshoot: Higher, as there is no damping mechanism.
o Steady-State Error: Present, indicating the system does not reach the desired
output.
2. PID Closed-Loop System (a)
o Rise Time: Reduced compared to the open-loop response.
o Settling Time: Shorter, reflecting improved stabilization.
o Overshoot: Moderate, as the proportional gain is high, but the lack of derivative
control may lead to some overshoot.
o Steady-State Error: Lower than the open-loop due to integral action.
3. PID Closed-Loop System (b)
o Rise Time: Further reduced, indicating a very responsive system.
o Settling Time: Even shorter, showing enhanced stability.
o Overshoot: Lower than in (a), as the derivative term helps dampen the response.
o Steady-State Error: Minimal, benefiting from both integral and proportional
control.
4. PID Closed-Loop System (c)
o Rise Time: Quick, benefiting from the high derivative gain.
o Settling Time: Shortest among the PID configurations, indicating rapid
stabilization.
o Overshoot: Very low, as the derivative action effectively controls overshoot.
o Steady-State Error: Very small, indicating excellent control of the steady state.
2)
Using matlab to verify
By running this code we check that at least one root has a positive real part for each Kc.
for k = 1:length(Kc)
kc = Kc(k);
r = roots(coeffs);
end
For part 1
For part 2