Skip to content
Snippets Groups Projects
Commit 6d4ae02b authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added more scripts

parent 7861ab11
No related branches found
No related tags found
No related merge requests found
.secrets.json
__pycache__
\ No newline at end of file
setlocal enabledelayedexpansion
@echo off
set "filename=tempfile"
:loop
python readout.py elo > tempfile
cls
set "content="
for /f "delims=" %%a in ('type "%filename%"') do (
set "line=%%a"
echo !line!
)
:: del tempfile
timeout /T 12 /nobreak > nul
goto loop
endlocal
\ No newline at end of file
import pidcontroller
controller = pidcontroller.PidController('COM5')
responses = []
requests = ['t', 'p', 'v', 'o', 's']
for r in requests:
responses.append(controller._sendCommand(r))
for i in range(len(requests)):
print(f"{requests[i]} -> {responses[i]}")
\ No newline at end of file
import time
import element
import pqwsw2
import rl20001
import pidcontroller
import sys
def readoutController(controller):
temps = controller.getTemperatures()
coeffs = controller.getPidCoeff()
pid = controller.getPropIntDer()
output = controller.getOutput()
setpoint = controller.getSetpoint()
returnString = ""
returnString += f"PID Controller:\n"
returnString += f"\tCurrent Temperatures: \n"
returnString += f"\t\tloop: {temps[0]:.6f} °C\n"
returnString += f"\t\tool1: {temps[1]:.6f} °C\n"
returnString += f"\t\tool2: {temps[2]:.6f} °C\n"
returnString += f"\t\tool3: {temps[3]:.6f} °C\n"
returnString += f"\t\tool4: {temps[4]:.6f} °C\n"
returnString += f"\tPID Coefficients:\n"
returnString += f"\t\tKp: {coeffs[0]:>10.6f}\n"
returnString += f"\t\tKi: {coeffs[1]:>10.6f}\n"
returnString += f"\t\tKd: {coeffs[2]:>10.6f}\n"
returnString += f"\tCurrent PID Values:\n"
returnString += f"\t\tP: {pid[0]:>10.6f}\n"
returnString += f"\t\tI: {pid[1]:>10.6f}\n"
returnString += f"\t\tD: {pid[2]:>10.6f}\n"
returnString += f"\tCurrent control output:\n"
returnString += f"\t\t{output:.6f}\n"
returnString += f"\tCurrent Setpoint:\n"
returnString += f"\t\t{setpoint:.6f}\n"
return returnString
def readoutSwitch(switch):
power = switch.getPower()
temperature = switch.getTemperature()
state = switch.getState()
returnString = ""
returnString += f"PQWSW2 WIFI Switch:\n"
returnString += f"\tState:\n"
returnString += f"\t\t{state}\n"
returnString += f"\tCurrent Temperature:\n"
returnString += f"\t\t{temperature:.6f} °C\n"
returnString += f"\tCurrent Powerdraw:\n"
returnString += f"\t\t{power} W\n"
return returnString
def readoutRelays(relays):
returnString = ""
returnString += f"RL20001 Numato Relay Board:\n"
returnString += f"\tState:\n"
if relays.getState():
returnString += f"\t\tTrue\n"
else:
returnString += f"\t\tFalse\n"
return returnString
controllerString = ""
switchString = ""
relayString = ""
connected = True
try:
controller = pidcontroller.PidController('COM10')
controllerString = readoutController(controller)
controller.disconnect()
except:
connected = False
if not connected:
exit()
connected = True
try:
mySwitch = pqwsw2.PQWSW2('192.168.254.1')
switchString = readoutSwitch(mySwitch)
except:
connected = False
if not connected:
exit()
connected = True
try:
relay = rl20001.RL20001('COM4')
relayString = readoutRelays(relay)
except:
connected = False
if not connected:
exit()
elementPrintString = controllerString + switchString + relayString
if len(sys.argv) == 1:
myElementConnection = element.Element()
myElementConnection.warn("Manual Readout Triggered")
split = elementPrintString.split("\n")
for i in range(len(split)):
s = split[i]
s = "> " + s
srepped = s.replace("\t", "> ")
split[i] = srepped
for s in split:
myElementConnection.warn(s)
time.sleep(0.3)
print(elementPrintString)
\ No newline at end of file
#this is the configuration that was found to be stable
import pidcontroller
controller = pidcontroller.PidController('COM10')
responses = []
responses.append(controller._sendCommand('P2.254;'))
responses.append(controller._sendCommand('I0.0014;'))
responses.append(controller._sendCommand('D100.348;'))
responses.append(controller._sendCommand('N349.35;'))
responses.append(controller._sendCommand('E0.5;'))
responses.append(controller._sendCommand('S31.0;'))
print(responses)
\ No newline at end of file
python supervisor.py
\ No newline at end of file
import time
import element
import pqwsw2
import rl20001
warn_thresh = [31.5, 28.0, 35.0, 40.0, 30.0]
shutdown_thresh = [32.0, 30.0, 45.0, 45.0, 32.0]
mySwitch = pqwsw2.PQWSW2('192.168.254.1')
relay = rl20001.RL20001('COM4')
tries = 0
while not mySwitch.connected and tries < 5:
time.sleep(1)
mySwitch = pqwsw2.PQWSW2('192.168.254.1')
tries += 1
tries = 0
while not relay.connected and tries < 5:
time.sleep(1)
relay = rl20001.RL20001('COM4')
tries += 1
myElementConnection = element.Element()
def handler():
#check if switch is available
safety_compromised = False
if (not mySwitch.connected):
#print("Switch disconnected")
myElementConnection.warn(f"Can't connect to PQWSW2")
safety_compromised = True
if(not relay.connected):
#print("Relay disconnected")
myElementConnection.warn(f"Can't connect to RL20001.")
safety_compromised = True
if(not mySwitch.connected and not relay.connected):
#print("Switch and Relay disconnected")
myElementConnection.warn(f"All safety devices lost, automatic intervention disabled.")
safety_compromised = True
for repetitions_i in range(10):
try:
with open('templog.dat') as logfile:
line = logfile.readline()
logdatas = line.split(',')
timestamp_log = float(logdatas[0])
temps = [float(x) for x in logdatas[1:]]
print(f"Temperatures: {temps} °C")
#check for overtemperatures
overtemp_detected = False
for i,t in enumerate(temps):
if t >= warn_thresh[i]:
#print("Over Thresh")
myElementConnection.warn(f"Temperature {i} over warning threshold ({warn_thresh[i]:.4}°C) detected: {t:.5}°C")
if t >= shutdown_thresh[i]:
#print("Over Shutdown")
myElementConnection.warn(f"Temperature {i} over shutdown threshold ({shutdown_thresh[i]:.4}°C) detected: {t:.5}°C. Shutting down.")
overtemp_detected = True
if mySwitch.connected:
mySwitch.turnOff()
if relay.connected:
relay.turnOff()
#check for old timestamp
old_timestamp_detected = False
now = time.time()
if now-timestamp_log > 60:
#no log for 1 minute
myElementConnection.warn(f"Latest temperature measurement is older than 1 minute ({now-timestamp_log} seconds). Will shut down at 900 seconds.")
if now-timestamp_log > 600:
#no log for 1 minute
myElementConnection.warn(f"Latest temperature measurement is older than 15 minutes ({now-timestamp_log} seconds). Shutting down")
old_timestamp_detected = True
if mySwitch.connected:
mySwitch.turnOff()
if relay.connected:
relay.turnOff()
if not overtemp_detected and not old_timestamp_detected:
#print("Have No Overtemp")
if mySwitch.connected:
mySwitch.turnOn()
if relay.connected:
relay.turnOn()
if safety_compromised:
#print("Safety Compromised")
myElementConnection.warn(f"Safety compromised. Temperatures: {temps} °C")
if repetitions_i > 0:
myElementConnection.warn(f"Logfile access recovered.")
return
except Exception as expt:
myElementConnection.warn(f"Supervisor Error: {str(expt)}: try {repetitions_i+1}/10")
time.sleep(3.14159265)
myElementConnection.warn(f"Temperature logfile inaccessible. Shutting down.")
mySwitch.turnOff()
relay.turnOff()
handler()
\ No newline at end of file
PID Controller:
Current Temperatures:
loop: 30.998979 C
ool1: 23.452163 C
ool2: 30.510729 C
ool3: 31.085263 C
ool4: 24.532361 C
PID Coefficients:
Kp: 2.254000
Ki: 0.001400
Kd: 100.348000
Current PID Values:
P: 0.001009
I: 399.529812
D: -0.000012
Current control output:
0.556895
Current Setpoint:
31.000000
PQWSW2 WIFI Switch:
State:
True
Current Temperature:
25.730000 C
Current Powerdraw:
60.1 W
RL20001 Numato Relay Board:
State:
True
1709028399.7751513,30.999624,22.509048,31.170196,30.556627
\ No newline at end of file
Pinging 192.168.1.1 with 32 bytes of data:
Reply from 192.168.1.1: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.1.1:
Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment