Home Links Downloads
ElmorLabs KTH (K-type Thermometer)

KTH Calibration

This is a two point calibration calculator for K-Type thermocouples. It's used to work out the actual temperature based on 2 benchmark points and works reliably to convert the read temperature to the actual temperature. This page is primarily used by its creator Chloe (exa) so it wont be set up for other probes. Save the html file and edit the variables between the PyScript tags to use this yourself. Btw this page was made for mobile devices so if it looks wonky thats why :3

How To Use.

1.Take two measurements with your sensor: I used freezing and boiling water. Record the two temperatures as "RawLow" and "RawHigh".

2. Repeat these measurements with your reference instrument. Record these readings as "RefLow" and "RefHigh".

3. Input these into the table above and then enter a temperature the probe is reading, click "Go" and the output box should show the actual temperature. Read more about this process here (external link).

from pyodide import JsProxy from js import window def show_output(*args, **kwargs): output = Element("output_div") try: RawLow = float(Element('RawLow').element.value) RawHigh = float(Element('RawHigh').element.value) ReferenceLow = float(Element('ReferenceLow').element.value) ReferenceHigh = float(Element('ReferenceHigh').element.value) RawRange = RawHigh - RawLow ReferenceRange = ReferenceHigh - ReferenceLow RawValue = float(Element('test-input').element.value) #except ValueError: #output.write("Invalid temperature") except IndexError: output.write("Temperature required") try: CorrectedValue = (((RawValue - RawLow) * ReferenceRange) / RawRange) + ReferenceLow output.write(f"{round(CorrectedValue, 2)} °C") except NameError: pass