The RTD PT100 is a Resistance Temperature Detector that utilizes platinum (PT) with a resistance of 100 ohms at 0°C. It is widely used for precise temperature measurements due to its high accuracy and stability. The PT100 is commonly found in industrial applications, laboratory environments, and any scenario where accurate temperature monitoring is crucial.
Parameter | Value |
---|---|
Resistance at 0°C | 100 ohms |
Temperature Range | -200°C to 850°C |
Tolerance Class | Class A, B, or C |
Temperature Coefficient | 0.00385 Ω/Ω/°C |
Material | Platinum |
Accuracy | ±(0.15 + 0.002*t)°C (Class A) |
Response Time | 1 to 10 seconds |
Pin Number | Description |
---|---|
1 | RTD Element Lead 1 |
2 | RTD Element Lead 2 |
3 | (Optional) RTD Element Lead 3 for 3-wire configuration |
Wiring the RTD PT100:
Connecting to an Arduino UNO:
#include <SPI.h>
#include <Adafruit_MAX31865.h>
// Use software SPI: CS, DI, DO, CLK
Adafruit_MAX31865 max = Adafruit_MAX31865(10, 11, 12, 13);
// The value of the Rref resistor. Use 430.0 for PT100
#define RREF 430.0
void setup() {
Serial.begin(9600);
Serial.println("Adafruit MAX31865 PT100 Sensor Test!");
max.begin(MAX31865_3WIRE); // Initialize sensor for 3-wire RTD
}
void loop() {
uint16_t rtd = max.readRTD();
Serial.print("RTD value: "); Serial.println(rtd);
float ratio = rtd;
ratio /= 32768;
Serial.print("Ratio = "); Serial.println(ratio, 8);
Serial.print("Resistance = "); Serial.println(RREF * ratio, 8);
Serial.print("Temperature = "); Serial.println(max.temperature(100, RREF));
delay(1000);
}
Inaccurate Temperature Readings:
No Temperature Reading:
Fluctuating Readings:
Q: Can I use a 2-wire configuration for the RTD PT100? A: Yes, but it may introduce errors due to lead wire resistance. A 3-wire configuration is recommended for higher accuracy.
Q: What is the maximum temperature the RTD PT100 can measure? A: The RTD PT100 can measure temperatures up to 850°C, but ensure it is within the specified range for your specific RTD class.
Q: How do I calibrate the RTD PT100? A: Calibration can be done using a known temperature reference and adjusting the measurement system to match the reference.
This documentation provides a comprehensive guide to using the RTD PT100 for precise temperature measurements. Whether you are a beginner or an experienced user, following these instructions and best practices will help you achieve accurate and reliable results.