Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert pid parameters to :parallel #900

Merged
merged 8 commits into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 97 additions & 38 deletions lib/ControlSystemsBase/src/pid_design.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* `:series` - `Kc*(1 + 1/(τi*s))*(τd*s + 1)`
* `:parallel` - `Kp + Ki/s + Kd*s`

If `state_space` is set to `true`, either `kd` has to be zero
If `state_space` is set to `true`, either `Kd` has to be zero
or a positive `Tf` has to be provided for creating a filter on
the input to allow for a state space realization.
The filter used is `1 / (1 + s*Tf + (s*Tf)^2/2)`, where `Tf` can typically
Expand Down Expand Up @@ -47,44 +47,42 @@

@deprecate pid(; kp=0, ki=0, kd=0, series = false) pid(kp, ki, kd; form=series ? :series : :parallel)

function pid_tf(param_p, param_i, param_d=zero(typeof(param_p)); form=:standard, Tf=nothing)
Kp, Ti, Td = convert_pidparams_to_standard(param_p, param_i, param_d, form)
ia = Ti != Inf && Ti != 0 # integral action, 0 would result in division by zero, but typically indicates that the user wants no integral action
function pid_tf(param_p, param_i, param_d=zero(typeof(param_p)); form=:standard, Tf=nothing)
Kp, Ki, Kd = convert_pidparams_to_parallel(param_p, param_i, param_d, form)

Check warning on line 51 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L50-L51

Added lines #L50 - L51 were not covered by tests
if isnothing(Tf)
if ia
return tf([Kp * Td, Kp, Kp / Ti], [1, 0])
if Ki != 0
return tf([Kd, Kp, Ki], [1, 0])

Check warning on line 54 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L53-L54

Added lines #L53 - L54 were not covered by tests
else
return tf([Kp * Td, Kp], [1])
return tf([Kd, Kp], [1])

Check warning on line 56 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L56

Added line #L56 was not covered by tests
end
else
if ia
return tf([Kp * Td, Kp, Kp / Ti], [Tf^2/2, Tf, 1, 0])
if Ki != 0
return tf([Kd, Kp, Ki], [Tf^2/2, Tf, 1, 0])

Check warning on line 60 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L59-L60

Added lines #L59 - L60 were not covered by tests
else
return tf([Kp * Td, Kp], [Tf^2/2, Tf, 1])
return tf([Kd, Kp], [Tf^2/2, Tf, 1])

Check warning on line 62 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L62

Added line #L62 was not covered by tests
end
end
end

function pid_ss(param_p, param_i, param_d=zero(typeof(param_p)); form=:standard, Tf=nothing)
Kp, Ti, Td = convert_pidparams_to_standard(param_p, param_i, param_d, form)
function pid_ss(param_p, param_i, param_d=zero(typeof(param_p)); form=:standard, Tf=nothing)
Kp, Ki, Kd = convert_pidparams_to_parallel(param_p, param_i, param_d, form)

Check warning on line 68 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L67-L68

Added lines #L67 - L68 were not covered by tests
TE = Continuous()
ia = Ti != Inf && Ti != 0 # integral action, 0 would result in division by zero, but typically indicates that the user wants no integral action
if !isnothing(Tf)
if ia
if Ki != 0

Check warning on line 71 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L71

Added line #L71 was not covered by tests
A = [0 1 0; 0 0 1; 0 -2/Tf^2 -2/Tf]
B = [0; 0; 1]
C = 2 * Kp / Tf^2 * [1/Ti 1 Td]
C = 2 / Tf^2 * [Ki Kp Kd]

Check warning on line 74 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L74

Added line #L74 was not covered by tests
else
A = [0 1; -2/Tf^2 -2/Tf]
B = [0; 1]
C = 2 * Kp / Tf^2 * [1 Td]
C = 2 / Tf^2 * [Kp Kd]

Check warning on line 78 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L78

Added line #L78 was not covered by tests
end
D = 0
elseif Td == 0
if ia
elseif Kd == 0
if Ki != 0

Check warning on line 82 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L81-L82

Added lines #L81 - L82 were not covered by tests
A = 0
B = 1
C = Kp / Ti # Ti == 0 would result in division by zero, but typically indicates that the user wants no integral action
C = Ki # Ti == 0 would result in division by zero, but typically indicates that the user wants no integral action

Check warning on line 85 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L85

Added line #L85 was not covered by tests
D = Kp
else
return ss([Kp])
Expand All @@ -98,7 +96,7 @@
"""
pidplots(P, args...; params_p, params_i, params_d=0, form=:standard, ω=0, grid=false, kwargs...)

Plots interesting figures related to closing the loop around process `P` with a PID controller supplied in `params`
Display the relevant plots related to closing the loop around process `P` with a PID controller supplied in `params`
on one of the following forms:
* `:standard` - `Kp*(1 + 1/(Ti*s) + Td*s)`
* `:series` - `Kc*(1 + 1/(τi*s))*(τd*s + 1)`
Expand Down Expand Up @@ -267,7 +265,8 @@
phi = angle.(Pv)
kp = @. -cos(phi)/r
ki = @. kd*ω^2 - ω*sin(phi)/r
kp, ki = convert_pidparams_from_to(kp, ki, kd, :parallel, form)
K = convert_pidparams_from_parallel.(kp, ki, kd, form)
kp, ki = getindex.(K, 1), getindex.(K, 2)

Check warning on line 269 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L268-L269

Added lines #L268 - L269 were not covered by tests
fig = if doplot
RecipesBase.plot(kp,ki,linewidth = 1.5, xlabel=L"k_p", ylabel=L"k_i", title="Stability region of P, k_d = $(round(kd, digits=4))")
else
Expand All @@ -283,7 +282,8 @@
phi = angle.(Pv)
kp = -cos.(phi)./r
ki = @. kd*ω^2 - ω*sin(phi)/r
kp, ki = convert_pidparams_from_to(kp, ki, kd, :parallel, form)
K = convert_pidparams_from_parallel.(kp, ki, kd, form)
kp, ki = getindex.(K, 1), getindex.(K, 2)

Check warning on line 286 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L285-L286

Added lines #L285 - L286 were not covered by tests
fig = if doplot
RecipesBase.plot(kp,ki,linewidth = 1.5, xlabel=L"k_p", ylabel=L"k_i", title="Stability region of P, k_d = $(round(kd, digits=4))")
else
Expand All @@ -300,7 +300,7 @@

The parameters can be returned as one of several common representations
chosen by `form`, the options are
* `:standard` - ``K_p(1 + 1/(T_i s) + T_ds)``
* `:standard` - ``K_p(1 + 1/(T_i s) + T_d s)``
* `:series` - ``K_c(1 + 1/(τ_i s))(τ_d s + 1)``
* `:parallel` - ``K_p + K_i/s + K_d s``

Expand Down Expand Up @@ -350,7 +350,7 @@
else
nothing
end
kp, ki = convert_pidparams_from_to(kp, ki, 0, :parallel, form)
kp, ki = convert_pidparams_from_parallel(kp, ki, 0, form)

Check warning on line 353 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L353

Added line #L353 was not covered by tests
(; C, kp, ki, fig, CF)
end

Expand Down Expand Up @@ -491,7 +491,7 @@
verbose && ki < 0 && @warn "Calculated ki is negative, inspect the Nyquist plot generated with doplot = true and try adjusting ω or the angle ϕt"
C = pid(kp, ki, kd, form=:parallel)
any(real(p) > 0 for p in poles(C)) && @error "Calculated controller is unstable."
kp, ki, kd = ControlSystemsBase.convert_pidparams_from_to(kp, ki, kd, :parallel, form)
kp, ki, kd = convert_pidparams_from_parallel(kp, ki, kd, form)

Check warning on line 494 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L494

Added line #L494 was not covered by tests
CF = C*F
fig = if doplot
w = exp10.(LinRange(log10(ω)-2, log10(ω)+2, 1000))
Expand Down Expand Up @@ -522,15 +522,42 @@
"""
function convert_pidparams_to_standard(param_p, param_i, param_d, form::Symbol)
if form === :standard
return param_p, param_i, param_d
return (param_p, param_i, param_d)

Check warning on line 525 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L525

Added line #L525 was not covered by tests
elseif form === :series
return @. (
return (

Check warning on line 527 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L527

Added line #L527 was not covered by tests
param_p * (param_i + param_d) / param_i,
param_i + param_d,
param_i * param_d / (param_i + param_d)
)
elseif form === :parallel
return @. (param_p, param_p / param_i, param_d / param_p)
return (param_p, param_p / param_i, param_d / param_p)

Check warning on line 533 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L533

Added line #L533 was not covered by tests
else
throw(ArgumentError("form $(form) not supported."))

Check warning on line 535 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L535

Added line #L535 was not covered by tests
end
end

"""
Kp, Ti, Td = convert_pidparams_to_parallel(param_p, param_i, param_d, form)

Convert parameters from form `form` to `:parallel` form.

The `form` can be chosen as one of the following
* `:standard` - ``K_p(1 + 1/(T_i s) + T_d s)``
* `:series` - ``K_c(1 + 1/(τ_i s))(τ_d s + 1)``
* `:parallel` - ``K_p + K_i/s + K_d s``
"""
function convert_pidparams_to_parallel(param_p, param_i, param_d, form::Symbol)
if form === :parallel
return (param_p, param_i, param_d)
elseif form === :series

Check warning on line 552 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L549-L552

Added lines #L549 - L552 were not covered by tests
# param_i = 0 would result in division by zero, but typically indicates that the user wants no integral action
param_i == 0 && return (param_p, 0, param_p * param_d)
return (param_p * (param_i + param_d) / param_i,

Check warning on line 555 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L554-L555

Added lines #L554 - L555 were not covered by tests
param_p / param_i,
param_p * param_d)
elseif form === :standard
param_i == 0 && return (param_p, 0, param_p * param_d)
return (param_p, param_p / param_i, param_p * param_d)

Check warning on line 560 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L558-L560

Added lines #L558 - L560 were not covered by tests
else
throw(ArgumentError("form $(form) not supported."))
end
Expand All @@ -542,30 +569,62 @@
Convert parameters to form `form` from `:standard` form.

The `form` can be chosen as one of the following
* `:standard` - ``K_p(1 + 1/(T_i s) + T_ds)``
* `:standard` - ``K_p(1 + 1/(T_i s) + T_d s)``
* `:series` - ``K_c(1 + 1/(τ_i s))(τ_d s + 1)``
* `:parallel` - ``K_p + K_i/s + K_d s``
"""
function convert_pidparams_from_standard(Kp, Ti, Td, form::Symbol)
if form === :standard
return Kp, Ti, Td
return (Kp, Ti, Td)

Check warning on line 578 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L578

Added line #L578 was not covered by tests
elseif form === :series
return @. (
(Ti - sqrt(Ti * (Ti - 4 * Td))) / 2 * Kp / Ti,
(Ti - sqrt(Ti * (Ti - 4 * Td))) / 2,
(Ti + sqrt(Ti * (Ti - 4 * Td))) / 2,
)
Δ = Ti * (Ti - 4 * Td)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These lines are broken for parameter arrays

Δ < 0 && throw(DomainError("The condition Ti^2 ≥ 4Td*Ti is not satisfied: the PID parameters cannot be converted to series form"))
sqrtΔ = sqrt(Δ)
return ((Ti - sqrtΔ) / 2 * Kp / Ti,

Check warning on line 583 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L580-L583

Added lines #L580 - L583 were not covered by tests
(Ti - sqrtΔ) / 2,
(Ti + sqrtΔ) / 2)
elseif form === :parallel
return @. (Kp, Kp/Ti, Td*Kp)
return (Kp, Kp/Ti, Td*Kp)

Check warning on line 587 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L587

Added line #L587 was not covered by tests
else
throw(ArgumentError("form $(form) not supported."))

Check warning on line 589 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L589

Added line #L589 was not covered by tests
end
end


"""
Kp, Ti, Td = convert_pidparams_from_parallel(Kp, Ki, Kd, to_form)

Convert parameters from form `:parallel` to form `to_form`.

The `form` can be chosen as one of the following
* `:standard` - ``K_p(1 + 1/(T_i s) + T_d s)``
* `:series` - ``K_c(1 + 1/(τ_i s))(τ_d s + 1)``
* `:parallel` - ``K_p + K_i/s + K_d s``
"""
function convert_pidparams_from_parallel(Kp, Ki, Kd, to::Symbol)
if to === :parallel
return (Kp, Ki, Kd)
elseif to === :series
Ki == 0 && return (Kp, 0, Kp*Kd)
Δ = Kp^2-4Ki*Kd
Δ < 0 &&

Check warning on line 610 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L604-L610

Added lines #L604 - L610 were not covered by tests
throw(DomainError("The condition Kp^2 ≥ 4Ki*Kd is not satisfied: the PID parameters cannot be converted to series form"))
sqrtΔ = sqrt(Δ)
return ((Kp - sqrtΔ)/2, (Kp - sqrtΔ)/(2Ki), (Kp + sqrtΔ)/(2Ki))
elseif to === :standard
Kp == 0 && throw(DomainError("Cannot convert to standard form when Kp=0"))
Ki == 0 && return (Kp, Inf, Kd / Kp)
return (Kp, Kp / Ki, Kd / Kp)

Check warning on line 617 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L612-L617

Added lines #L612 - L617 were not covered by tests
else
throw(ArgumentError("form $(form) not supported."))
end
end


"""
convert_pidparams_from_to(kp, ki, kd, from::Symbol, to::Symbol)
"""
function convert_pidparams_from_to(kp, ki, kd, from::Symbol, to::Symbol)
kp, ki, kd = convert_pidparams_to_standard(kp, ki, kd, from)
convert_pidparams_from_standard(kp, ki, kd, to)
Kp, Ki, Kd = convert_pidparams_to_parallel(kp, ki, kd, from)
convert_pidparams_from_parallel(Kp, Ki, Kd, to)

Check warning on line 629 in lib/ControlSystemsBase/src/pid_design.jl

View check run for this annotation

Codecov / codecov/patch

lib/ControlSystemsBase/src/pid_design.jl#L628-L629

Added lines #L628 - L629 were not covered by tests
end
26 changes: 19 additions & 7 deletions lib/ControlSystemsBase/test/test_pid_design.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@testset "test_pid_design" begin

CSB = ControlSystemsBase

# Test gof plot and loopshaping
P = tf(1,[1,1])^4
gangoffourplot(P,tf(1))
Expand All @@ -13,8 +15,18 @@ C, kp, ki = loopshapingPI(P, ωp, phasemargin=60, form=:parallel, doplot=true)
# tf
@test pid(1.0, 1, 1) == tf(1) + tf(1,[1,0]) + tf([1,0],[1])
@test pid(1.0, Inf, 1) == tf(1) + tf([1, 0], [1])
@test pid(1.0, 0, 1) == tf(1) + tf([1, 0], [1])
@test pid(0.0, 1, 1; form=:parallel) == tf(0) + tf(1,[1,0]) + tf([1,0],[1])
@test pid(1.0, 2, 3; Tf=2) == tf([3,1,0.5], [2,2,1,0])
@test all(CSB.convert_pidparams_from_standard(CSB.convert_pidparams_from_parallel(1, 2, 3, :standard)...,
:parallel) .≈ (1,2,3))
@test_throws DomainError CSB.convert_pidparams_from_parallel(2, 3, 0.5, :series)
@test_throws DomainError CSB.convert_pidparams_from_parallel(0, 3, 0.5, :standard)
@test_throws DomainError CSB.convert_pidparams_from_standard(2, 1, 0.5, :series)
# ss
@test tf(pid(1.0, 1, 0; state_space=true)) == tf(1) + tf(1,[1,0])
@test tf(pid(0.0, 2, 3; form=:parallel, state_space=true, Tf=2)) == tf([3,0,2], [2, 2, 1, 0])
@test tf(pid(1.0, 2, 3; state_space=true, Tf=2)) == tf([3, 1, 0.5], [2, 2, 1, 0])

# Discrete
@test_throws ArgumentError pid(1.0, 1, 1, Ts=0.1)
Expand Down Expand Up @@ -72,13 +84,13 @@ C, Kp, Ti = placePI(P, 2, 0.7; form=:standard)
@test [Kp, Ti] ≈ [9/5, 9/20]

# Test internal functions convert_pidparams*
params = (2, 3, 0.5)
parallel_params = ControlSystemsBase.convert_pidparams_from_standard(params..., :parallel)
@test parallel_params == (2, 2/3, 1)
@test ControlSystemsBase.convert_pidparams_to_standard(parallel_params..., :parallel) == params
series_params = ControlSystemsBase.convert_pidparams_from_standard(params..., :series)
@test series_params == ((3-sqrt(3))/3, (3-sqrt(3))/2, (3+sqrt(3))/2)
@test ControlSystemsBase.convert_pidparams_to_standard(series_params..., :series) == params
params = (4, 3, 0.5)
mzaffalon marked this conversation as resolved.
Show resolved Hide resolved
standard_params = ControlSystemsBase.convert_pidparams_from_parallel(params..., :standard)
@test standard_params == (4, 4/3, 0.5/4)
@test ControlSystemsBase.convert_pidparams_to_parallel(standard_params..., :standard) == params
series_params = ControlSystemsBase.convert_pidparams_from_parallel(params..., :series)
@test series_params == ((4-sqrt(10))/2, (4-sqrt(10))/6, (4+sqrt(10))/6)
@test all(ControlSystemsBase.convert_pidparams_to_parallel(series_params..., :series) .≈ params)

# lead lag link
a = 1
Expand Down
Loading