File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Limit the range of a signal.
1919@component function Limiter (; name, y_max, y_min = y_max > 0 ? - y_max : - Inf )
2020 @symcheck y_max ≥ y_min || throw (ArgumentError (" `y_min` must be smaller than `y_max`" ))
2121 m = (y_max + y_min) / 2
22- @named siso = SISO (u_start = m, y_start = m) # Default signals to center of saturation to minimize risk of saturation while linearizing etc.
22+ siso = SISO (u_start = m, y_start = m, name = :siso ) # Default signals to center of saturation to minimize risk of saturation while linearizing etc.
2323 @unpack u, y = siso
2424 pars = @parameters y_max= y_max [description = " Maximum allowed output of Limiter $name " ] y_min= y_min [
2525 description = " Minimum allowed output of Limiter $name "
You can’t perform that action at this time.
0 commit comments