Skip to content

Commit eb34756

Browse files
authoredJan 16, 2025··
Merge pull request #957 from JuliaControl/PIfastpath
add fast path for kd=0 in pid_2dof
2 parents 82a5014 + 7068fbd commit eb34756

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed
 

‎lib/ControlSystemsBase/src/pid_design.jl

+12-1
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,23 @@ function pid_2dof(args...; state_space = true, Ts = nothing, disc = :tustin, kwa
175175
end
176176

177177
function pid_ss_2dof(param_p, param_i, param_d=zero(typeof(param_p)); form=:standard, b = 1, c = 0, Tf=nothing, N=nothing, balance=true)
178+
kp, ki, kd = convert_pidparams_to_parallel(param_p, param_i, param_d, form)
179+
if kd == 0
180+
if ki == 0
181+
return ss([kp -kp])
182+
else
183+
A = [0.0;;]
184+
B = [ki -ki]
185+
C = [1.0;;] # Ti == 0 would result in division by zero, but typically indicates that the user wants no integral action
186+
D = [b*kp -kp]
187+
return ss(A, B, C, D)
188+
end
189+
end
178190
# On standard form we use N
179191
Tf !== nothing && N !== nothing && throw(ArgumentError("Cannot supply both Tf and N"))
180192
if Tf === nothing && N === nothing
181193
N = 10 # Default value
182194
end
183-
kp, ki, kd = convert_pidparams_to_parallel(param_p, param_i, param_d, form)
184195
Tf = @something(Tf, kd / N)
185196
Tf <= 0 && throw(ArgumentError("Tf must be strictly positive"))
186197
if ki == 0

‎lib/ControlSystemsBase/test/test_pid_design.jl

+6
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ Ktf = [(kp*b + kd*s*c/(Tf*s + 1)) -(kp + kd*s/(Tf*s + 1))]
9090
Kss = ControlSystemsBase.pid_ss_2dof(kp, ki, kd; Tf, b, c, form=:parallel)
9191
@test freqresptest(Kss, Ktf) < 1e-10
9292

93+
kp, ki, kd, b, c, Tf = rand(6)
94+
kd = 0
95+
Ktf = [(kp*b + ki/s + kd*s*c/(Tf*s + 1)) -(kp + ki/s + kd*s/(Tf*s + 1))]
96+
Kss = ControlSystemsBase.pid_ss_2dof(kp, ki, kd; Tf, b, c, form=:parallel)
97+
@test freqresptest(Kss, Ktf) < 1e-10
98+
9399
kp, ki, kd, b, c, Tf = rand(6)
94100
Ktf = [(kp*b + ki/s + kd*s*c/(Tf*s + 1)) -(kp + ki/s + kd*s/(Tf*s + 1))]
95101
Kss = ControlSystemsBase.pid_ss_2dof(kp, ki, kd; Tf, b, c, form=:parallel)

0 commit comments

Comments
 (0)
Please sign in to comment.