Callendar-Van Dusen Calculator for RTDs
Calculate resistance vs. temperature for platinum RTDs using the Callendar-Van Dusen equation. Enter your parameters below.
Comprehensive Guide to the Callendar-Van Dusen Equation for RTDs
The Callendar-Van Dusen equation is a fundamental mathematical model used to describe the relationship between resistance and temperature in platinum resistance temperature detectors (RTDs). This guide provides a complete explanation of the equation, its coefficients, practical applications, and implementation in Excel.
1. Understanding the Callendar-Van Dusen Equation
The equation comes in two forms depending on the temperature range:
For temperatures below 0°C (-200°C to 0°C):
R(t) = R₀ * [1 + A*t + B*t² + C*(t-100)*t³]
For temperatures above 0°C (0°C to 850°C):
R(t) = R₀ * [1 + A*t + B*t²]
Where:
- R(t) = Resistance at temperature t
- R₀ = Resistance at 0°C (typically 100Ω for Pt100 sensors)
- t = Temperature in °C
- A, B, C = Callendar-Van Dusen coefficients
2. Standard Coefficient Values
For standard platinum RTDs (IEC 60751), the coefficients are:
- A (α) = 3.9083 × 10⁻³ °C⁻¹
- B = -5.775 × 10⁻⁷ °C⁻²
- C = -4.183 × 10⁻¹² °C⁻⁴ (for t < 0°C)
| Coefficient | Symbol | Standard Value | Description |
|---|---|---|---|
| Alpha | A (α) | 0.0039083 | Primary temperature coefficient |
| Beta | B | -0.0000005775 | Secondary coefficient for t > 0°C |
| Delta | C (δ) | -0.000000004183 | Tertiary coefficient for t < 0°C |
3. Implementing in Excel
To implement the Callendar-Van Dusen equation in Excel:
- Create columns for Temperature (t) and Resistance (R)
- Enter your R₀ value in a known cell (e.g., $B$1)
- Enter coefficients in known cells (e.g., $B$2 for A, $B$3 for B, $B$4 for C)
- For temperatures ≥ 0°C, use:
= $B$1 * (1 + $B$2*A2 + $B$3*A2^2) - For temperatures < 0°C, use:
= $B$1 * (1 + $B$2*A2 + $B$3*A2^2 + $B$4*(A2-100)*A2^3)
4. Practical Applications
The Callendar-Van Dusen equation is widely used in:
- Industrial temperature measurement systems
- Laboratory calibration procedures
- Automotive temperature sensing
- HVAC system controls
- Medical device temperature monitoring
5. Accuracy Considerations
The equation provides excellent accuracy within its specified range:
| Temperature Range | Typical Accuracy | Primary Use Cases |
|---|---|---|
| -200°C to 0°C | ±0.1°C | Cryogenic applications, low-temperature research |
| 0°C to 850°C | ±0.5°C | Industrial processes, oven calibration |
For higher accuracy requirements, consider:
- Using individually calibrated RTDs with custom coefficients
- Implementing higher-order polynomials for extended ranges
- Applying digital filtering to reduce noise
6. Historical Context
The equation is named after Hugh Longbourne Callendar (1863-1930) and M.S. Van Dusen who developed it in the early 20th century. Their work built upon earlier research by Sir William Siemens who first proposed using platinum for temperature measurement in 1871.
For more historical details, see the National Institute of Standards and Technology (NIST) archives on temperature measurement standards.
7. Modern Alternatives
While the Callendar-Van Dusen equation remains widely used, modern alternatives include:
- ITS-90 reference functions (for highest accuracy)
- Polynomial fits with more terms for extended ranges
- Neural network models for non-linear sensors
The International Temperature Scale of 1990 (ITS-90) provides the current international standard for temperature measurement.
8. Common Implementation Errors
Avoid these mistakes when working with the equation:
- Using wrong coefficients for the temperature range
- Incorrect unit conversions (always use °C)
- Assuming linear behavior outside calibrated range
- Ignoring self-heating effects in RTDs
- Using insufficient precision in calculations
9. Excel Implementation Tips
For robust Excel implementations:
- Use named ranges for coefficients
- Implement data validation for inputs
- Create separate worksheets for different temperature ranges
- Add conditional formatting to highlight out-of-range values
- Include error checking with IFERROR functions
10. Advanced Applications
For specialized applications, consider:
- Dynamic coefficient adjustment based on sensor aging
- Real-time compensation for lead wire resistance
- Implementation in embedded systems using fixed-point arithmetic
- Combining with other sensors for hybrid measurement systems
For academic research on advanced temperature measurement techniques, refer to publications from the NIST Temperature and Humidity Group.