-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathch12.rb
126 lines (97 loc) · 1.93 KB
/
ch12.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
class Component
def work(u)
return u
end
def monitoring
""
end
end
class PIDController < Component
attr_accessor :kp, :ki, :kd, :i, :d, :prev
def initialize(kp, ki, kd = 0)
@kp, @ki, @kd = kp, ki, kd
@i = 0
@d = 0
@prev = 0
end
def work(e)
@i += DT * e
@d = (e - @prev) / DT
@prev = e
@kp * e + @ki * @i + @kd * @d
end
end
class AdvancedController < Component
attr_accessor :kp, :ki, :kd, :i, :d, :prev
attr_accessor :unclamped, :clamp_lo, :clamp_hi, :alpha
def initialize(kp, ki, kd = 0, clamp = [-1e10, 1e10], smooth = 1)
@kp, @ki, @kd = kp, ki, kd
@i = 0
@d = 0
@prev = 0
@unclamped = true
@clamp_lo, @clamp_hi = clamp
@alpha = alpha
end
def work(e)
if @unclamped
@i += DT * e
end
@d = @alpha * (e - @prev) / DT + (1.0 - @alpha) * @d
u = @kp * e + @ki * @i + @kd * @d
@unclamped = u > @clamp_lo && u < @clamp_hi
@prev = e
u
end
end
class Identity < Component
def work(x)
x
end
end
class Integrator < Component
def initialize
@data = 0
end
def work(u)
@data += u
DT * @data
end
end
class FixedFilter < Component
def initialize(n)
@n = n
@data = []
end
def work(x)
@data << x
if @data.size > @n
@data = @data.drop(1)
end
@data.reduce(:+).to_f / @data.size
end
end
class RecursiveFilter < Component
def initialize(alpha)
@alpha = alpha
@y = 0
end
def work(x)
@y = @alpha * x + (1.0 - @alpha) * @y
@y
end
end
def closed_loop(setpoint, controller, plant, tm = 5000, inverted = false,
actuator = Identity.new, return_filter = Identity.new)
z = 0
tm.times do |t|
r = setpoint(t)
e = r - z
e = -e if inverted
u = controller.work(e)
v = actuator.work(u)
y = plant.work(v)
z = return_filter.work(y)
puts "#{t},#{DT * t},#{r},#{e},#{u},#{v},#{y},#{z},#{plant.monitoring}"
end
end