Skip to content

Commit 981c859

Browse files
baggepinnenmfalt
authored andcommittedJan 30, 2019
Add more text to examples (#187)
* add example pidplots * Update README.md * Update example_pid_design.md * Update readme with pid_design tools
1 parent 6878634 commit 981c859

File tree

2 files changed

+38
-5
lines changed

2 files changed

+38
-5
lines changed
 

‎README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ ss, tf, zpk, ss2tf
5151
##### Analysis
5252
pole, tzero, norm, norminf, ctrb, obsv, gangoffour, margin, markovparam, damp, dampreport, zpkdata, dcgain, covar, gram, sigma, sisomargin
5353
##### Synthesis
54-
care, dare, dlyap, lqr, dlqr, place, pid, leadlink, laglink, leadlinkat, rstd, rstc, dab
54+
care, dare, dlyap, lqr, dlqr, place, leadlink, laglink, leadlinkat, rstd, rstc, dab
55+
###### PID design
56+
pid, stabregionPID, loopshapingPI, pidplots
5557
##### Time and Frequency response
5658
step, impulse, lsim, freqresp, evalfr, bode, nyquist
5759
##### Plotting
@@ -102,3 +104,6 @@ stepplot(CLs, label=["Kp = 1", "Kp = 5", "Kp = 15"])
102104
```
103105
104106
![StepResponse](/example/step_response.png)
107+
108+
### Additional examples
109+
See the examples folder

‎example/example_pid_design.md

+32-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ function `loopshapingPI` and tell it that we want 60 degrees phase margin at thi
1212
kp,ki,C = loopshapingPI(P,ωp,phasemargin=60, doplot=true)
1313
```
1414

15+
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
16+
```julia
17+
ωp = 2
18+
kp,ki,C60 = loopshapingPI(P,ωp,rl=1,phasemargin=60, doplot=true)
19+
```
20+
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+
1523
# Advanced pole-zero placement
1624
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.
1725

@@ -25,22 +33,22 @@ A = [1, 2ζ*ω, ω^2]
2533
P = tf(B,A)
2634
```
2735

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.
2937
```julia
3038
# Control design
3139
ζ0 = 0.7
3240
ω0 = 2
3341
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) )
3644

3745
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)
3846
B⁻ = [1]
3947
Bm = conv(B⁺, B⁻) # In this case, keep the entire numerator polynomial of the process
4048

4149
R,S,T = rstc(B⁺,B⁻,A,Bm,Am,Ao,AR) # Calculate the 2-DOF controller polynomials
4250

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
4452

4553
stepplot([P,Gcl]) # Visualize the open and closed loop responses.
4654
gangoffourplot(P, tf(-S,R)) # Plot the gang of four to check that all tranfer functions are OK
@@ -59,3 +67,23 @@ f2 = stabregionPID(P2,exp10.(range(-5, stop=2, length=1000)))
5967
P3 = tf(1,[1,1])^4
6068
f3 = stabregionPID(P3,exp10.(range(-5, stop=0, length=1000)))
6169
```
70+
71+
72+
73+
74+
# PID plots
75+
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
87+
ki = sqrt(1-kp.^2)/10
88+
pidplots(P,:nyquist,:gof;kps=kp,kis=ki)
89+
```

0 commit comments

Comments
 (0)