RTD Temperature Calculator (PT100/PT1000)
Calculate temperature from PT100 or PT1000 resistance — enter measured ohms, get °C instantly. Uses the Callendar-Van Dusen linear approximation. Includes presets for common PT100 values (119.4 Ω = 50 °C, 138.5 Ω = 100 °C).
Formula
How It Works
This calculator converts RTD resistance to temperature using the Callendar-Van Dusen equation, used by process engineers, calibration technicians, and industrial automation designers for precision temperature measurement from -200 to +850 C. RTDs (Resistance Temperature Detectors) exploit the linear resistance-temperature relationship in pure platinum: R(T) = R0 * (1 + A*T + B*T^2 + C*(T-100)*T^3) per IEC 60751:2022. The standard coefficients are A = 3.9083e-3 /C, B = -5.775e-7 /C^2, and C = -4.2735e-12 /C^4 (C applies only below 0 C). PT100 sensors (R0 = 100 Ohm) provide 0.385 Ohm/C sensitivity; PT1000 sensors (R0 = 1000 Ohm) provide 3.85 Ohm/C, enabling direct microcontroller ADC interfacing. IEC 60751 defines accuracy classes: Class AA (+/-0.1 C at 0 C), Class A (+/-0.15 C), Class B (+/-0.3 C), and Class C (+/-0.6 C). The temperature coefficient alpha = 0.00385055 Ohm/Ohm/C is the European standard (DIN/IEC); some US sensors use alpha = 0.003916 (ASTM E1137).
Worked Example
A 4-wire PT100 sensor reads 138.51 Ohm in a pharmaceutical reactor. Calculate the temperature and verify it meets IEC 60751 Class A tolerance.
- Given: R = 138.51 Ohm, R0 = 100 Ohm, IEC 60751 coefficients
- For T > 0 C, use quadratic: R = R0*(1 + A*T + B*T^2)
- Rearrange: 138.51 = 100*(1 + 3.9083e-3*T - 5.775e-7*T^2)
- 1.3851 = 1 + 3.9083e-3*T - 5.775e-7*T^2
- Solve quadratic: T = (A - sqrt(A^2 - 4*B*(1-R/R0))) / (2*B)
- T = (3.9083e-3 - sqrt(1.528e-5 + 2.224e-6)) / (-1.155e-6) = 100.0 C
- Class A tolerance at 100 C: +/-(0.15 + 0.002*|T|) = +/-0.35 C
Practical Tips
- ✓Use 4-wire (Kelvin) connection for +/-0.01 C accuracy; 3-wire connection assumes matched lead resistances and achieves +/-0.1 C; 2-wire is only suitable for short runs (<1 m) or when lead resistance is calibrated out per ASTM E1137
- ✓Limit excitation current to 1 mA to keep self-heating below 0.05 C in typical industrial installations; at 5 mA, self-heating in still air reaches 0.5-2 C depending on sensor construction
- ✓For temperatures above 500 C, use platinum RTDs with ceramic insulation rated to 850 C; for cryogenic applications below -200 C, use rhodium-iron RTDs per NIST calibration standards
Common Mistakes
- ✗Using the two-term equation below 0 C omits the cubic C-coefficient, causing errors exceeding 0.5 C at -100 C and 2.5 C at -200 C per IEC 60751 Annex B calculations
- ✗Confusing PT100 (100 Ohm) and PT1000 (1000 Ohm) values produces 10x temperature errors; verify R0 matches your sensor type before calculation
- ✗Ignoring lead resistance in 2-wire connections: 1 m of 24 AWG copper wire adds 0.17 Ohm, causing 0.44 C error in PT100 systems (0.044 C error in PT1000)
Frequently Asked Questions
Related Calculators
Sensor
NTC Thermistor
Calculate temperature from NTC thermistor resistance using the Steinhart-Hart beta equation. Get Kelvin and Celsius outputs for sensor circuit design.
Sensor
Wheatstone Bridge
Calculate Wheatstone bridge output voltage, balance condition, and mV/V sensitivity. Design circuits for strain gauges, RTDs, and load cells.
Thermal
Junction Temperature
Calculate semiconductor junction temperature from power dissipation and thermal resistance chain (θJC + θCS + θSA). Essential for transistor, MOSFET, and IC thermal design.
Sensor
Hall Effect Sensor
Calculate Hall voltage V_H = R_H·I·B/t, carrier density, and sensitivity for Hall effect sensors. Covers magnetic field measurement, current sensing, and position detection applications.