Skip to content

Commit c9af29e

Browse files
Merge pull request #76 from baggepinnen/patch-1
remove arbitrary default value of input saturation
2 parents aa73250 + 781c0d2 commit c9af29e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Blocks/continuous.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ Text-book version of a PI-controller with actuator saturation and anti-windup me
252252
- `err_input`
253253
- `ctr_output`
254254
"""
255-
function LimPI(;name, k=1, T, u_max=1, u_min=-u_max, Ta, x_start=0.0)
255+
function LimPI(;name, k=1, T, u_max, u_min=-u_max, Ta, x_start=0.0)
256256
Ta > 0 || throw(ArgumentError("Time constant `Ta` has to be strictly positive"))
257257
T > 0 || throw(ArgumentError("Time constant `T` has to be strictly positive"))
258258
u_max u_min || throw(ArgumentError("u_min must be smaller than u_max"))

0 commit comments

Comments
 (0)