My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

createTemperatureLookupMarlin.py 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #!/usr/bin/python
  2. """Thermistor Value Lookup Table Generator
  3. Generates lookup to temperature values for use in a microcontroller in C format based on:
  4. http://en.wikipedia.org/wiki/Steinhart-Hart_equation
  5. The main use is for Arduino programs that read data from the circuit board described here:
  6. http://make.rrrf.org/ts-1.0
  7. Usage: python createTemperatureLookup.py [options]
  8. Options:
  9. -h, --help show this help
  10. --rp=... pull-up resistor
  11. --t1=ttt:rrr low temperature temperature:resistance point (around 25 degC)
  12. --t2=ttt:rrr middle temperature temperature:resistance point (around 150 degC)
  13. --t3=ttt:rrr high temperature temperature:resistance point (around 250 degC)
  14. --num-temps=... the number of temperature points to calculate (default: 36)
  15. """
  16. from math import *
  17. import sys
  18. import getopt
  19. "Constants"
  20. ZERO = 273.15 # zero point of Kelvin scale
  21. VADC = 5 # ADC voltage
  22. VCC = 5 # supply voltage
  23. ARES = 2**10 # 10 Bit ADC resolution
  24. VSTEP = VADC / ARES # ADC voltage resolution
  25. TMIN = 0 # lowest temperature in table
  26. TMAX = 350 # highest temperature in table
  27. class Thermistor:
  28. "Class to do the thermistor maths"
  29. def __init__(self, rp, t1, r1, t2, r2, t3, r3):
  30. l1 = log(r1)
  31. l2 = log(r2)
  32. l3 = log(r3)
  33. y1 = 1.0 / (t1 + ZERO) # adjust scale
  34. y2 = 1.0 / (t2 + ZERO)
  35. y3 = 1.0 / (t3 + ZERO)
  36. x = (y2 - y1) / (l2 - l1)
  37. y = (y3 - y1) / (l3 - l1)
  38. c = (y - x) / ((l3 - l2) * (l1 + l2 + l3))
  39. self.c1 = a # Steinhart-Hart coefficients
  40. self.c2 = b
  41. self.c3 = c
  42. self.rp = rp # pull-up resistance
  43. def resol(self, adc):
  44. "Convert ADC reading into a resolution"
  45. res = self.temp(adc)-self.temp(adc+1)
  46. return res
  47. def voltage(self, adc):
  48. "Convert ADC reading into a Voltage"
  49. return adc * VSTEP # convert the 10 bit ADC value to a voltage
  50. def resist(self, adc):
  51. "Convert ADC reading into a resistance in Ohms"
  52. r = self.rp * self.voltage(adc) / (VCC - self.voltage(adc)) # resistance of thermistor
  53. return r
  54. def temp(self, adc):
  55. "Convert ADC reading into a temperature in Celcius"
  56. l = log(self.resist(adc))
  57. Tinv = self.c1 + self.c2*l + self.c3* l**3) # inverse temperature
  58. return (1/Tinv) - ZERO # temperature
  59. def adc(self, temp):
  60. "Convert temperature into a ADC reading"
  61. x = (self.c1 - (1.0 / (temp+ZERO))) / (2*self.c3)
  62. y = sqrt((self.c2 / (3*self.c3)**3 + x**2)
  63. r = exp((y-x)**(1.0/3) - (y+x)**(1.0/3))
  64. return (r / (self.rp + r)) * ARES
  65. def main(argv):
  66. "Default values"
  67. t1 = 25 # low temperature in Kelvin (25 degC)
  68. r1 = 100000 # resistance at low temperature (10 kOhm)
  69. t2 = 150 # middle temperature in Kelvin (150 degC)
  70. r2 = 1641.9 # resistance at middle temperature (1.6 KOhm)
  71. t3 = 250 # high temperature in Kelvin (250 degC)
  72. r3 = 226.15 # resistance at high temperature (226.15 Ohm)
  73. rp = 4700; # pull-up resistor (4.7 kOhm)
  74. num_temps = 36; # number of entries for look-up table
  75. try:
  76. opts, args = getopt.getopt(argv, "h", ["help", "rp=", "t1=", "t2=", "t3=", "num-temps="])
  77. except getopt.GetoptError as err:
  78. print str(err)
  79. usage()
  80. sys.exit(2)
  81. for opt, arg in opts:
  82. if opt in ("-h", "--help"):
  83. usage()
  84. sys.exit()
  85. elif opt == "--rp":
  86. rp = int(arg)
  87. elif opt == "--t1":
  88. arg = arg.split(':')
  89. t1 = float(arg[0])
  90. r1 = float(arg[1])
  91. elif opt == "--t2":
  92. arg = arg.split(':')
  93. t2 = float(arg[0])
  94. r2 = float(arg[1])
  95. elif opt == "--t3":
  96. arg = arg.split(':')
  97. t3 = float(arg[0])
  98. r3 = float(arg[1])
  99. elif opt == "--num-temps":
  100. num_temps = int(arg)
  101. t = Thermistor(rp, t1, r1, t2, r2, t3, r3)
  102. increment = int((ARES-1)/(num_temps-1));
  103. step = (TMIN-TMAX) / (num_temps-1)
  104. low_bound = t.temp(ARES-1);
  105. up_bound = t.temp(1);
  106. min_temp = int(TMIN if TMIN > low_bound else low_bound)
  107. max_temp = int(TMAX if TMAX < up_bound else up_bound)
  108. temps = range(max_temp, TMIN+step, step);
  109. print "// Thermistor lookup table for Marlin"
  110. 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)
  111. print "// Steinhart-Hart Coefficients: a=%.15g, b=%.15g, c=%.15g " % (t.c1, t.c2, t.c3)
  112. print "// Theoretical limits of termistor: %.2f to %.2f degC" % (low_bound, up_bound)
  113. print
  114. print "#define NUMTEMPS %s" % (len(temps))
  115. print "const short temptable[NUMTEMPS][2] PROGMEM = {"
  116. for temp in temps:
  117. adc = t.adc(temp)
  118. print " { (short) (%7.2f * OVERSAMPLENR ), %4s }%s // v=%.3f\tr=%.3f\tres=%.3f degC/count" % (adc , temp, \
  119. ',' if temp != temps[-1] else ' ', \
  120. t.voltage(adc), \
  121. t.resist( adc), \
  122. t.resol( adc) \
  123. )
  124. print "};"
  125. def usage():
  126. print __doc__
  127. if __name__ == "__main__":
  128. main(sys.argv[1:])