|
175 | 175 | PI(;name, gainPI.k = 1.0, T, int.x = 0.0) |
176 | 176 |
|
177 | 177 | Textbook version of a PI-controller without actuator saturation and anti-windup measure. |
| 178 | +The proportional gain can be set with `gainPI.k` |
178 | 179 | Initial value of integrator state `x` can be set with `int.x` |
179 | | -Initial value of gain can be set with `gainPI.k` |
180 | 180 |
|
181 | 181 | # Parameters: |
182 | 182 |
|
@@ -290,12 +290,13 @@ See also [`LimPID`](@ref) |
290 | 290 | end |
291 | 291 |
|
292 | 292 | """ |
293 | | - LimPI(; name, T, Ta, k = 1.0, int__x = 0.0, u_max = 1.0, u_min = -u_max) |
| 293 | + LimPI(; name, k = 1.0, T, Ta, int__x = 0.0, u_max = 1.0, u_min = -u_max) |
294 | 294 |
|
295 | 295 | Text-book version of a PI-controller with actuator saturation and anti-windup measure. |
296 | 296 |
|
297 | 297 | # Parameters: |
298 | 298 |
|
| 299 | + - `k`: Proportional gain |
299 | 300 | - `T`: [s] Integrator time constant (T>0 required) |
300 | 301 | - `Ta`: [s] Tracking time constant (Ta>0 required) |
301 | 302 |
|
@@ -471,7 +472,7 @@ where the transfer function for the derivative includes additional filtering, se |
471 | 472 | end |
472 | 473 |
|
473 | 474 | """ |
474 | | - StateSpace(A, B, C, D = 0; x = zeros(size(A,1)), u0 = zeros(size(B,2)), y0 = zeros(size(C,1)), name) |
| 475 | + StateSpace(A, B, C, D = 0; x = zeros(size(A,1)), u0 = zeros(size(B,2)), y0 = zeros(size(C,1)), name) |
475 | 476 |
|
476 | 477 | A linear, time-invariant state-space system on the form. |
477 | 478 |
|
|
0 commit comments