#106회 PI 제어기가 에러가 적은이유 증명
import control as ct
import numpy as np
import matplotlib.pyplot as plt
#Plant
num_G1 = [1]
den_G1 = [1, 1]
sys_G1 = ct.tf(num_G1, den_G1)
sys_G1
#Controller(P)
K = 10
num_DP = [K]
den_DP = [1]
sys_DP = ct.tf(num_DP, den_DP)
sys_DP
sysT_open = sys_G1*sys_DP
sysT_open
sysT_uc = ct.feedback(sys_G1*sys_DP,1)
sysT_uc
time, response = ct.step_response(sysT_uc)
plt.plot(time, response, label='Step Response')
plt.show()
s = ct.TransferFunction.s
G_s = sysT_open
E_s = 1 / (1 + G_s)
# Final Value Theorem to find steady-state error
sse_step = ct.evalfr(E_s, 0) # Evaluate E(s) at s=0
print(f"Steady-State Error for Step Input: {sse_step}")
Steady-State Error for Step Input: (0.09090909090909091+0j)
#PI controller
KP = K
KI = 1
num_DPI = [KP, KI]
den_DPI = [1, 0]
sys_DPI = ct.tf(num_DPI, den_DPI)
sys_DPI
sysT_PI_open = sys_G1*sys_DPI
sysT_PI_open
# transfer fucntion compensator
# sysTc = sys_C* sysTuc/(1+sys_C* sysTuc)
sysTc = ct.feedback(sysT_PI_open, 1)
sysTc
time_tc, response_tc = ct.step_response(sysTc)
plt.plot(time_tc, response_tc, label='Step Response')
plt.show()
s = ct.TransferFunction.s
# G_s = sysTc
G_s = sysT_PI_open
E_s = 1 / (1 + G_s)
# Final Value Theorem to find steady-state error
sse_step = ct.evalfr(E_s, 0) # Evaluate E(s) at s=0
print(f"Steady-State Error for Step Input: {sse_step}")
Steady-State Error for Step Input: 0j