-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemp_pid.py
More file actions
273 lines (229 loc) · 8.06 KB
/
temp_pid.py
File metadata and controls
273 lines (229 loc) · 8.06 KB
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
"""
Information
---------------------------------------------------------------------
Name : temp_pid.py
Location : ~/
Author : Tom Eleff
Published : 2023-06-25
Revised on : 2023-07-07
Description
---------------------------------------------------------------------
Runs the temperature PID controller.
"""
# Import modules
import os
import sys
import time
import copy
import ospro.utils.utils as utils
import ospro.sensors.temp as temp
# Initialize global variables
config = utils.read_config(
configLoc=os.path.join(
os.path.dirname(__file__),
'config',
'config.json'
)
)
# Configure environment
if not config['session']['dev']:
# Import GPIO module
import RPi.GPIO as GPIO
# Define board mode
if not GPIO.getmode():
GPIO.setmode(GPIO.BCM)
elif GPIO.getmode() == 10:
print('ERROR: Invalid GPIO mode (BOARD).')
sys.exit()
else:
pass
# Suppress GPIO warnings
# GPIO.setwarnings(False)
# Setup GPIO pins
GPIO.setup(
config['extraction']['pin'],
GPIO.IN,
pull_up_down=GPIO.PUD_DOWN
)
# Main
if __name__ == '__main__':
# Initialize temperatore sensor
tSensor = temp.Sensor(
outputPin=config['tPID']['pin']
)
tSensor.initialize(config)
# Read temperature
previousTemperature = tSensor.read_temp(config)
# Set initial parameters
previousTime = time.time()
integral = 0
previousError = 0
# Set intitial pulse width modulation output
if not config['session']['dev']:
tController = temp.Controller(
outputPin=config['tPID']['pin']
)
tController.initialize(config)
tController.start()
# Startup delay
time.sleep(0.001)
# Run
while config['session']['running']:
# Read config
config = utils.read_config(
configLoc=os.path.join(
config['session']['configLoc'],
'config.json'
)
)
try:
# Read temperature
temperature = tSensor.read_temp(config)
# Avoid unstable temperatures
if (
(
abs(temperature - previousTemperature) >=
config['tPID']['error']
)
):
# Reset parameters
currentTime = time.time()
print(
"{:<{len0}} {:<{len1}} {:<{len2}} {:<{len3}}".format(
'Status: Reset',
'Temp: (%.2f, %.2f)' % (
temperature,
config['tPID']['setPoint']
),
'PWM: N/A',
'PID: [-.--, -.--, -.--]',
len0=17,
len1=26,
len2=14,
len3=26
)
)
# Calculate pulse width modulation
else:
# Set max output if temperature is below the dead-zone
if temperature < int(
(
config['tPID']['setPoint'] -
config['tPID']['deadZoneRange']
)
):
# Reset parameters
previousError = 0
integral = 0
output = 100
currentTime = time.time()
# Output parameters
print(
"{:<{len0}} {:<{len1}} {:<{len2}} {:<{len3}}".format(
'Status: Under',
'Temp: (%.2f, %.2f)' % (
temperature,
config['tPID']['setPoint']
),
'PWM: %s %%' % (output),
'PID: [%.2f, %.2f, %.2f]' % (
0,
0,
0
),
len0=17,
len1=26,
len2=14,
len3=26
)
)
# Set zero output if temperature is above max temperature
elif temperature >= 115:
# Reset parameters
previousError = 0
integral = 0
output = 0
currentTime = time.time()
# Output parameters
print(
"{:<{len0}} {:<{len1}} {:<{len2}} {:<{len3}}".format(
'Status: Over',
'Temp: (%.2f, %.2f)' % (
temperature,
config['tPID']['setPoint']
),
'PWM: %s %%' % (output),
'PID: [%.2f, %.2f, %.2f]' % (
0,
0,
0
),
len0=17,
len1=26,
len2=14,
len3=26
)
)
# Calculate output
else:
# Calculate error
error = round(config['tPID']['setPoint'] - temperature, 2)
# Calculate proportional output
pOut = config['tPID']['p'] * error
# Calculate integral output
currentTime = time.time()
deltaTime = currentTime - previousTime
integral += (error * deltaTime)
iOut = (config['tPID']['i'] * integral)
# Calculate derivative output
deltaError = error - previousError
derivative = (deltaError/deltaTime)
dOut = (config['tPID']['d'] * derivative)
output = max(min(int(pOut + iOut + dOut), 100), 0)
# Output parameters
print(
"{:<{len0}} {:<{len1}} {:<{len2}} {:<{len3}}".format(
'Status: Valid',
'Temp: (%.2f, %.2f)' % (
temperature,
config['tPID']['setPoint']
),
'PWM: %s %%' % (output),
'PID: [%.2f, %.2f, %.2f]' % (
abs(max(pOut, 0)),
abs(max(iOut, 0)),
abs(max(dOut, 0))
),
len0=17,
len1=26,
len2=14,
len3=26
)
)
# Set pulse width modulation output
if not config['session']['dev']:
# Set default during extraction
if GPIO.input(
config['extraction']['pin']
):
output = 10
# Update duty cycle
tController.update_duty_cycle(output)
# Recalculate time delta for delay
deltaTime = (time.time() - previousTime)
# Update parameters
previousTemperature = copy.deepcopy(temperature)
previousTime = copy.deepcopy(currentTime)
# Delay
time.sleep(config['tPID']['sampleRate'])
except KeyboardInterrupt:
# Terminate pulse width modulation & cleanup
if not config['session']['dev']:
tController.stop()
GPIO.cleanup()
# Exit
sys.exit()
# Terminate pulse width modulation & cleanup
if not config['session']['dev']:
tController.stop()
GPIO.cleanup()