2012-11-16 23:51:05 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
"""Thermistor Value Lookup Table Generator
|
|
|
|
|
|
|
|
Generates lookup to temperature values for use in a microcontroller in C format based on:
|
2015-01-06 08:20:20 +01:00
|
|
|
http://en.wikipedia.org/wiki/Steinhart-Hart_equation
|
2012-11-16 23:51:05 +01:00
|
|
|
|
|
|
|
The main use is for Arduino programs that read data from the circuit board described here:
|
|
|
|
http://make.rrrf.org/ts-1.0
|
|
|
|
|
|
|
|
Usage: python createTemperatureLookup.py [options]
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-h, --help show this help
|
|
|
|
--rp=... pull-up resistor
|
2014-02-18 05:50:59 +01:00
|
|
|
--t1=ttt:rrr low temperature temperature:resistance point (around 25C)
|
|
|
|
--t2=ttt:rrr middle temperature temperature:resistance point (around 150C)
|
|
|
|
--t3=ttt:rrr high temperature temperature:resistance point (around 250C)
|
2015-01-06 08:20:20 +01:00
|
|
|
--num-temps=... the number of temperature points to calculate (default: 36)
|
2012-11-16 23:51:05 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
from math import *
|
|
|
|
import sys
|
|
|
|
import getopt
|
|
|
|
|
2015-01-06 08:23:51 +01:00
|
|
|
"Constants"
|
2015-01-06 08:24:59 +01:00
|
|
|
ZERO = 273.15 # zero point of Kelvin scale
|
|
|
|
VADC = 5 # ADC voltage
|
|
|
|
VCC = 5 # supply voltage
|
2015-01-06 08:23:51 +01:00
|
|
|
ARES = pow(2,10) # 10 Bit ADC resolution
|
2015-01-06 08:24:59 +01:00
|
|
|
VSTEP = VADC / ARES # ADC voltage resolution
|
2015-01-06 08:23:51 +01:00
|
|
|
TMIN = 0 # lowest temperature in table
|
|
|
|
TMAX = 350 # highest temperature in table
|
|
|
|
|
2012-11-16 23:51:05 +01:00
|
|
|
class Thermistor:
|
|
|
|
"Class to do the thermistor maths"
|
|
|
|
def __init__(self, rp, t1, r1, t2, r2, t3, r3):
|
2015-01-06 08:24:59 +01:00
|
|
|
l1 = log(r1)
|
|
|
|
l2 = log(r2)
|
|
|
|
l3 = log(r3)
|
|
|
|
y1 = 1.0 / (t1 + ZERO) # adjust scale
|
|
|
|
y2 = 1.0 / (t2 + ZERO)
|
|
|
|
y3 = 1.0 / (t3 + ZERO)
|
|
|
|
x = (y2 - y1) / (l2 - l1)
|
|
|
|
y = (y3 - y1) / (l3 - l1)
|
|
|
|
c = (y - x) / ((l3 - l2) * (l1 + l2 + l3))
|
|
|
|
b = x - c * (pow(l1,2) + pow(l2,2) + l1*l2)
|
|
|
|
a = y1 - (b + pow(l1,2)*c)*l1
|
|
|
|
self.c1 = a # Steinhart-Hart coefficients
|
|
|
|
self.c2 = b
|
|
|
|
self.c3 = c
|
|
|
|
self.rp = rp # pull-up resistance
|
2012-11-16 23:51:05 +01:00
|
|
|
|
2015-01-06 08:24:59 +01:00
|
|
|
def res(self, adc):
|
2014-01-16 18:40:15 +01:00
|
|
|
"Convert ADC reading into a resolution"
|
|
|
|
res = self.temp(adc)-self.temp(adc+1)
|
|
|
|
return res
|
|
|
|
|
2015-01-06 08:24:59 +01:00
|
|
|
def v(self, adc):
|
2014-01-16 18:40:15 +01:00
|
|
|
"Convert ADC reading into a Voltage"
|
2015-01-06 08:24:59 +01:00
|
|
|
return adc * VSTEP # convert the 10 bit ADC value to a voltage
|
2014-01-16 18:40:15 +01:00
|
|
|
|
2015-01-06 08:24:59 +01:00
|
|
|
def r(self, adc):
|
2014-01-16 18:40:15 +01:00
|
|
|
"Convert ADC reading into a resistance in Ohms"
|
2015-01-06 08:24:59 +01:00
|
|
|
r = self.rp * self.v(adc) / (VCC - self.v(adc)) # resistance of thermistor
|
2014-01-16 18:40:15 +01:00
|
|
|
return r
|
|
|
|
|
2015-01-06 08:24:59 +01:00
|
|
|
def temp(self, adc):
|
2012-11-16 23:51:05 +01:00
|
|
|
"Convert ADC reading into a temperature in Celcius"
|
2015-01-06 08:24:59 +01:00
|
|
|
r = self.rp * self.v(adc) / (VCC - self.v(adc)) # resistance of thermistor
|
2012-11-16 23:51:05 +01:00
|
|
|
lnr = log(r)
|
|
|
|
Tinv = self.c1 + (self.c2*lnr) + (self.c3*pow(lnr,3))
|
2015-01-06 08:24:59 +01:00
|
|
|
return (1/Tinv) - ZERO # temperature
|
2012-11-16 23:51:05 +01:00
|
|
|
|
2015-01-06 08:24:59 +01:00
|
|
|
def adc(self, temp):
|
2012-11-16 23:51:05 +01:00
|
|
|
"Convert temperature into a ADC reading"
|
2015-01-06 08:24:59 +01:00
|
|
|
x = (self.c1 - (1.0 / (temp+ZERO))) / (2*self.c3)
|
|
|
|
y = sqrt(pow(self.c2 / (3*self.c3),3) + pow(x,2))
|
|
|
|
r = exp(pow(y-x,1.0/3) - pow(y+x,1.0/3)) # resistance of thermistor
|
|
|
|
return (r / (self.rp + r)) * ARES
|
2012-11-16 23:51:05 +01:00
|
|
|
|
|
|
|
def main(argv):
|
2015-01-06 08:20:20 +01:00
|
|
|
"Default values"
|
|
|
|
t1 = 25 # low temperature in Kelvin (25 degC)
|
|
|
|
r1 = 100000 # resistance at low temperature (10 kOhm)
|
|
|
|
t2 = 150 # middle temperature in Kelvin (150 degC)
|
|
|
|
r2 = 1641.9 # resistance at middle temperature (1.6 KOhm)
|
|
|
|
t3 = 250 # high temperature in Kelvin (250 degC)
|
|
|
|
r3 = 226.15 # resistance at high temperature (226.15 Ohm)
|
|
|
|
rp = 4700; # pull-up resistor (4.7 kOhm)
|
|
|
|
num_temps = int(36); # number of entries for look-up table
|
2012-11-16 23:51:05 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
opts, args = getopt.getopt(argv, "h", ["help", "rp=", "t1=", "t2=", "t3=", "num-temps="])
|
2014-02-18 05:50:59 +01:00
|
|
|
except getopt.GetoptError as err:
|
|
|
|
print str(err)
|
2012-11-16 23:51:05 +01:00
|
|
|
usage()
|
|
|
|
sys.exit(2)
|
2015-01-06 08:20:20 +01:00
|
|
|
|
2012-11-16 23:51:05 +01:00
|
|
|
for opt, arg in opts:
|
|
|
|
if opt in ("-h", "--help"):
|
|
|
|
usage()
|
|
|
|
sys.exit()
|
|
|
|
elif opt == "--rp":
|
|
|
|
rp = int(arg)
|
|
|
|
elif opt == "--t1":
|
|
|
|
arg = arg.split(':')
|
2015-01-06 08:20:20 +01:00
|
|
|
t1 = float(arg[0])
|
|
|
|
r1 = float(arg[1])
|
2012-11-16 23:51:05 +01:00
|
|
|
elif opt == "--t2":
|
|
|
|
arg = arg.split(':')
|
2015-01-06 08:20:20 +01:00
|
|
|
t2 = float(arg[0])
|
|
|
|
r2 = float(arg[1])
|
2012-11-16 23:51:05 +01:00
|
|
|
elif opt == "--t3":
|
|
|
|
arg = arg.split(':')
|
2015-01-06 08:20:20 +01:00
|
|
|
t3 = float(arg[0])
|
|
|
|
r3 = float(arg[1])
|
2012-11-16 23:51:05 +01:00
|
|
|
elif opt == "--num-temps":
|
|
|
|
num_temps = int(arg)
|
|
|
|
|
2015-01-06 08:23:51 +01:00
|
|
|
increment = int((ARES-1)/(num_temps-1));
|
2012-11-16 23:51:05 +01:00
|
|
|
t = Thermistor(rp, t1, r1, t2, r2, t3, r3)
|
2015-01-06 08:23:51 +01:00
|
|
|
tmp = (TMIN-TMAX) / (num_temps-1)
|
|
|
|
temps = range(TMAX, TMIN+tmp, tmp);
|
2012-11-16 23:51:05 +01:00
|
|
|
|
|
|
|
print "// Thermistor lookup table for Marlin"
|
2014-01-30 05:34:22 +01:00
|
|
|
print "// ./createTemperatureLookupMarlin.py --rp=%s --t1=%s:%s --t2=%s:%s --t3=%s:%s --num-temps=%s" % (rp, t1, r1, t2, r2, t3, r3, num_temps)
|
2015-01-06 08:20:20 +01:00
|
|
|
print "// Steinhart-Hart Coefficients: a=%.15g, b=%.15g, c=%.15g " % (t.c1, t.c2, t.c3)
|
|
|
|
print
|
|
|
|
print "#define NUMTEMPS %s" % (len(temps))
|
2014-01-16 18:40:15 +01:00
|
|
|
print "const short temptable[NUMTEMPS][2] PROGMEM = {"
|
2012-11-16 23:51:05 +01:00
|
|
|
|
|
|
|
for temp in temps:
|
2015-01-06 08:20:52 +01:00
|
|
|
print " { (short) (%7.2f * OVERSAMPLENR ), %s\t}%s // v=%.3f\tr=%.3f\tres=%.3f degC/count" % ( t.adc(temp), temp, \
|
|
|
|
',' if temp != temps[-1] else ' ', \
|
|
|
|
t.v( t.adc(temp)), \
|
|
|
|
t.r( t.adc(temp)), \
|
|
|
|
t.res(t.adc(temp)) \
|
|
|
|
)
|
2012-11-16 23:51:05 +01:00
|
|
|
print "};"
|
2015-01-06 08:20:20 +01:00
|
|
|
|
2012-11-16 23:51:05 +01:00
|
|
|
def usage():
|
|
|
|
print __doc__
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main(sys.argv[1:])
|