This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
forked from hirschmann/pid-autotune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_controllers.py
executable file
·279 lines (229 loc) · 9.7 KB
/
run_controllers.py
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
#!/bin/python3
# Different controllers, all listed are available
from classic_controllers import P
from classic_controllers import PD
from classic_controllers import PI
from classic_controllers import PID
# Autotuner
from autotune import PIDAutotune
# Plant (Will be removed and replaced for a user-construction)
from kettle import Kettle
# Utils
from collections import deque, namedtuple
import sys
import math
import logging
import argparse
import matplotlib.pyplot as plt
LOG_FORMAT = '%(name)s: %(message)s'
Simulation = namedtuple(
'Simulation',
['name', 'sut', 'kettle', 'delayed_temps', 'timestamps',
'heater_temps', 'sensor_temps', 'outputs'])
def parser_add_args(parser):
parser.add_argument(
'-p', '--pid', dest='pid', nargs=4, metavar=('name', 'kp', 'ki', 'kd'),
default=None, action='append', help='simulate a PID controller')
parser.add_argument(
'-a', '--atune', dest='autotune', default=False,
action='store_true', help='simulate autotune')
parser.add_argument(
'-v', '--verbose', dest='verbose', default=0,
action='count', help='be verbose')
parser.add_argument(
'-e', '--export', dest='export', default=False,
action='store_true', help='export data to a .csv file')
parser.add_argument(
'-n', '--noplot', dest='noplot', default=False,
action='store_true', help='do not plot the results')
parser.add_argument(
'-t', '--temp', dest='kettle_temp', metavar='T', default=40.0,
type=float, help='initial kettle temperature in °C (default: 40)')
parser.add_argument(
'-s', '--setpoint', dest='setpoint', metavar='T', default=45.0,
type=float, help='target temperature in °C (default: 45)')
parser.add_argument(
'--ambient', dest='ambient_temp', metavar='T', default=20.0,
type=float, help='ambient temperature in °C (default: 20)')
parser.add_argument(
'-i', '--interval', dest='interval', metavar='t', default=20,
type=int, help='simulated interval in minutes (default: 20)')
parser.add_argument(
'-d', '--delay', dest='delay', metavar='t', default=15.0,
type=float, help='system response delay in seconds (default: 15)')
parser.add_argument(
'--sampletime', dest='sampletime', metavar='t', default=5.0,
type=float, help='temperature sample time in seconds (default: 5)')
parser.add_argument(
'--volume', dest='volume', metavar='V', default=70.0,
type=float, help='kettle content volume in liters (default: 70)')
parser.add_argument(
'--diameter', dest='diameter', metavar='d', default=50.0,
type=float, help='kettle diameter in cm (default: 50)')
parser.add_argument(
'--power', dest='heater_power', metavar='P', default=6.0,
type=float, help='heater power in kW (default: 6)')
parser.add_argument(
'--heatloss', dest='heat_loss_factor', metavar='x', default=1.0,
type=float, help='kettle heat loss factor (default: 1)')
parser.add_argument(
'--minout', dest='out_min', metavar='x', default=0.0,
type=float, help='minimum PID controller output (default: 0)')
parser.add_argument(
'--maxout', dest='out_max', metavar='x', default=100.0,
type=float, help='maximum PID controller output (default: 100)')
def write_csv(sim):
filename = sim.name + '.csv'
with open(filename, 'w+') as csv:
csv.write('timestamp;output;sensor_temp;heater_temp\n')
for i in range(0, len(sim.timestamps)):
csv.write('{0};{1:.2f};{2:.2f};{3:.2f}\n'.format(
sim.timestamps[i], sim.outputs[i], sim.sensor_temps[i], sim.heater_temps[i]))
def sim_update(sim, timestamp, output, args):
sim.kettle.heat(args.heater_power * (output / 100), args.sampletime)
sim.kettle.cool(args.sampletime, args.ambient_temp, args.heat_loss_factor)
sim.delayed_temps.append(sim.kettle.temperature)
sim.timestamps.append(timestamp)
sim.outputs.append(output)
sim.sensor_temps.append(sim.delayed_temps[0])
sim.heater_temps.append(sim.kettle.temperature)
def plot_simulations(simulations, title):
lines = []
fig, ax1 = plt.subplots()
upper_limit = 0
# Try to limit the y-axis to a more relevant area if possible
for sim in simulations:
m = max(sim.sensor_temps) + 1
upper_limit = max(upper_limit, m)
if upper_limit > args.setpoint:
lower_limit = args.setpoint - (upper_limit - args.setpoint)
ax1.set_ylim(lower_limit, upper_limit)
# Create x-axis and first y-axis (temperature)
ax1.plot()
ax1.set_xlabel('time (s)')
ax1.set_ylabel('temperature (°C)')
ax1.grid(axis='y', linestyle=':', alpha=0.5)
# Draw setpoint line
lines += [plt.axhline(
y=args.setpoint, color='r', linestyle=':', linewidth=0.9, label='setpoint')]
# Create second y-axis (power)
ax2 = ax1.twinx()
ax2.set_ylabel('power (%)')
# Plot temperature and output values
i = 0
for sim in simulations:
color_cycle_idx = 'C' + str(i)
lines += ax1.plot(
sim.timestamps, sim.sensor_temps, color=color_cycle_idx,
alpha=1.0, label='{0}: temp.'.format(sim.name))
lines += ax2.plot(
sim.timestamps, sim.outputs, '--', color=color_cycle_idx,
linewidth=1, alpha=0.7, label='{0}: output'.format(sim.name))
i += 1
# Create legend
labels = [l.get_label() for l in lines]
offset = math.ceil((1 + len(simulations) * 2) / 3) * 0.05
ax1.legend(lines, labels, loc=9, bbox_to_anchor=(
0.5, -0.1 - offset), ncol=3)
fig.subplots_adjust(bottom=0.2 + offset)
# Set title
plt.title(title)
fig.canvas.set_window_title(title)
plt.show()
def simulate_autotune(args):
timestamp = 0 # seconds
maxlen = max(1, round(args.delay / args.sampletime))
delayed_temps = deque(maxlen=maxlen)
delayed_temps.extend(maxlen * [args.kettle_temp])
sim = Simulation(
'autotune',
PIDAutotune(
args.setpoint, 100, args.sampletime, out_min=args.out_min,
out_max=args.out_max, time=lambda: timestamp),
Kettle(args.diameter, args.volume, args.kettle_temp),
delayed_temps,
[], [], [], []
)
# Run autotune until completed
while not sim.sut.run(sim.delayed_temps[0]):
timestamp += args.sampletime
sim_update(sim, timestamp, sim.sut.output, args)
if args.verbose > 0:
print('time: {0} sec'.format(timestamp))
print('state: {0}'.format(sim.sut.state))
print('{0}: {1:.2f}%'.format(sim.name, sim.sut.output))
print('temp sensor: {0:.2f}°C'.format(sim.sensor_temps[-1]))
print('temp heater: {0:.2f}°C'.format(sim.heater_temps[-1]))
print()
print('time: {0} min'.format(round(timestamp / 60)))
print('state: {0}'.format(sim.sut.state))
print()
# On success, print params for each tuning rule
if sim.sut.state == PIDAutotune.STATE_SUCCEEDED:
for rule in sim.sut.tuning_rules:
params = sim.sut.get_pid_parameters(rule)
print('rule: {0}'.format(rule))
print('Kp: {0}'.format(params.Kp))
print('Ki: {0}'.format(params.Ki))
print('Kd: {0}'.format(params.Kd))
print()
if args.export:
write_csv(sim)
if not args.noplot:
title = 'PID autotune, {0:.1f}l kettle, {1:.1f}kW heater, {2:.1f}s delay'.format(
args.volume, args.heater_power, args.delay)
plot_simulations([sim], title)
def simulate_pid(args):
timestamp = 0 # seconds
delayed_temps_len = max(1, round(args.delay / args.sampletime))
sims = []
# Create a simulation for each tuple pid(name, kp, ki, kd)
for pid in args.pid:
sim = Simulation(
pid[0],
PIDArduino(
args.sampletime, float(pid[1]), float(pid[2]), float(pid[3]),
args.out_min, args.out_max, lambda: timestamp),
Kettle(args.diameter, args.volume, args.kettle_temp),
deque(maxlen=delayed_temps_len),
[], [], [], []
)
sims.append(sim)
# Init delayed_temps deque for each simulation
for sim in sims:
sim.delayed_temps.extend(sim.delayed_temps.maxlen * [args.kettle_temp])
# Run simulation for specified interval
while timestamp < (args.interval * 60):
timestamp += args.sampletime
for sim in sims:
output = sim.sut.calc(sim.delayed_temps[0], args.setpoint)
output = max(output, 0)
output = min(output, 100)
sim_update(sim, timestamp, output, args)
if args.verbose > 0:
print('time: {0} sec'.format(timestamp))
print('{0}: {1:.2f}%'.format(sim.name, output))
print('temp sensor: {0:.2f}°C'.format(sim.sensor_temps[-1]))
print('temp heater: {0:.2f}°C'.format(sim.heater_temps[-1]))
if args.verbose > 0:
print()
if args.export:
for sim in sims:
write_csv(sim)
if not args.noplot:
title = 'PID simulation, {0:.1f}l kettle, {1:.1f}kW heater, {2:.1f}s delay'.format(
args.volume, args.heater_power, args.delay)
plot_simulations(sims, title)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser_add_args(parser)
if len(sys.argv) == 1:
parser.print_help()
else:
args = parser.parse_args()
if args.verbose > 1:
logging.basicConfig(stream=sys.stderr, format=LOG_FORMAT, level=logging.DEBUG)
if args.autotune:
simulate_autotune(args)
if args.pid is not None:
simulate_pid(args)