Skip to content

Commit f8af128

Browse files
authored
Merge pull request #12 from JuliaControl/reset
add function that resets the internal state
2 parents 9cf52b6 + 36a9350 commit f8af128

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DiscretePIDs"
22
uuid = "c1363496-6848-4723-8758-079b737f6baf"
33
authors = ["Fredrik Bagge Carlson"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
77
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ The parameters $K, T_i, T_d$ may be updated using the functions, `set_K!, set_Ti
3737

3838
The numeric type used by the controller (the `T` in `DiscretePID{T}`) is determined by the types of the parameters. To use a custom number type, e.g., a fixed-point number type, simply pass the parameters as that type, see example below. The controller will automatically convert measurements and references to this type before performing the control calculations.
3939

40+
The **internal state** of the controller can be reset to zero using the function `reset_state!(pid)`. If repeated simulations using the same controller object are performed, the state should likely be reset between simulations.
41+
4042
## Example using ControlSystems:
4143
The following example simulates the PID controller using ControlSystems.jl. We will simulate a load disturbance $d(t) = 1$ entering on the process input, while the reference is $r(t) = 0$.
4244

src/DiscretePIDs.jl

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module DiscretePIDs
22

3-
export DiscretePID, calculate_control!, set_K!, set_Td!, set_Ti!
3+
export DiscretePID, calculate_control!, set_K!, set_Td!, set_Ti!, reset_state!
44

55
using Printf
66

@@ -184,5 +184,15 @@ function Base.show(io::IO, ::MIME"text/plain", pid::DiscretePID)
184184
println(io, ")")
185185
end
186186

187+
"""
188+
reset_state!(pid::DiscretePID)
189+
190+
Set all internal state variables to zero (`I`, `D` and `yold`).
191+
"""
192+
function reset_state!(pid::DiscretePID)
193+
pid.I = zero(pid.I)
194+
pid.D = zero(pid.D)
195+
pid.yold = zero(pid.yold)
196+
end
187197

188198
end

test/runtests.jl

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ res2 = lsim(P, ctrl, Tf)
9191
@test res.y res2.y rtol=0.02
9292
# plot([res, res2])
9393

94+
reset_state!(pid)
95+
res3 = lsim(P, ctrl, Tf)
96+
@test res3.y == res2.y
97+
9498
## Test with FixedPointNumbers
9599
using FixedPointNumbers
96100
T = Fixed{Int16, 10} # 16-bit signed fixed-point with 10 bits for the fractional part

0 commit comments

Comments
 (0)