You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We could also cosider a situation where we want to create a closed-loop system with the bandwidth ω = 2 rad/s, in which case we would write something like
Here we specify that we want the Nyquist curve `L(iω) = P(iω)C(iω)` to pass the point `|L(iω)| = rl = 1, arg(L(iω)) = -180 + phasemargin = -180 + 60`
21
+
The gang of four tells us that we can indeed get a very robust and fast controller with this design method, but it will cost us significant control action to double the bandwidth of all four poles.
22
+
15
23
# Advanced pole-zero placement
16
24
This example illustrates how we can perform advanced pole-zero placement. The task is to make the process a bit faster and damp the poorly damped poles.
17
25
@@ -25,22 +33,22 @@ A = [1, 2ζ*ω, ω^2]
25
33
P =tf(B,A)
26
34
```
27
35
28
-
Define the desired closed loop response, calculate the controller polynomials and simulate the closed-loop system
36
+
Define the desired closed loop response, calculate the controller polynomials and simulate the closed-loop system. The design utilizes an observer poles twice as fast as the closed-loop poles. An additional observer pole is added in order to get a casual controller when an integrator is added to the controller.
29
37
```julia
30
38
# Control design
31
39
ζ0 =0.7
32
40
ω0 =2
33
41
Am = [1, 2ζ0*ω0, ω0^2]
34
-
Ao =conv(2Am, [1/2, 1]) # Observer polynomial
35
-
AR = [1,0] # Force the controller to contain an integrator
42
+
Ao =conv(2Am, [1/2, 1]) # Observer polynomial, add extra pole due to the integrator
43
+
AR = [1,0] # Force the controller to contain an integrator ( 1/(s+0) )
36
44
37
45
B⁺ = [1] # The process numerator polynomial can be facored as B = B⁺B⁻ where B⁻ contains the zeros we do not want to cancel (non-minimum phase and poorly damped zeros)
38
46
B⁻ = [1]
39
47
Bm =conv(B⁺, B⁻) # In this case, keep the entire numerator polynomial of the process
40
48
41
49
R,S,T =rstc(B⁺,B⁻,A,Bm,Am,Ao,AR) # Calculate the 2-DOF controller polynomials
42
50
43
-
Gcl =tf(conv(B,T),zpconv(A,R,B,S)) # Form the closed loop polynomial from reference to output
51
+
Gcl =tf(conv(B,T),zpconv(A,R,B,S)) # Form the closed loop polynomial from reference to output, the closed-loop characteristic polynomial is AR + BS, the function zpconv takes care of the polynomial multiplication and makes sure the coefficient vectores are of equal length
44
52
45
53
stepplot([P,Gcl]) # Visualize the open and closed loop responses.
46
54
gangoffourplot(P, tf(-S,R)) # Plot the gang of four to check that all tranfer functions are OK
This example utilizes the function `pidplots`, which accepts vectors of PID-parameters and produces relevant plots. The task is to take a system with bandwidth 1 rad/s and produce a closed-loop system with bandwidth 0.1 rad/s. If one is not careful and proceed with pole placement, one easily get a system with very poor robustness.
76
+
```julia
77
+
P =tf([1.],[1., 1])
78
+
79
+
ζ =0.5# Desired damping
80
+
81
+
ws =logspace(-1,2,8) # A vector of closed-loop bandwidths
82
+
kp =2*ζ*ws-1# Simple pole placement with PI given the closed-loop bandwidth, the poles are placed in a butterworth pattern
83
+
ki = ws.^2
84
+
pidplots(P,:nyquist,:gof;kps=kp,kis=ki, ω=logspace(-2,2,500)) # Request Nyquist and Gang-of-four plots (more plots are available, see ?pidplots )
85
+
86
+
kp =linspace(-1,1,8) # Now try a different strategy, where we have specified a gain crossover frequency of 0.1 rad/s
0 commit comments