GSO002 Problem 8
Problem Statement
Wheatstone Bridge for a Resistance Temperature Detector with Self-Heating Error
Problem Statement
Consider measuring the temperature of a liquid using a resistance temperature detector (RTD) — an element whose resistance changes with temperature.
When current flows through the RTD, Joule heating raises the RTD's own temperature above that of the surrounding environment. This is known as "self-heating error." In this problem, we combine this thermal effect with circuit behavior to find the true liquid temperature.
A Wheatstone bridge circuit has four terminals A,B,C,D. The elements connected between terminals are:
- Between A and B: RTD with resistance R1
- Between B and C: fixed resistor R2
- Between C and D: variable resistor R3
- Between D and A: fixed resistor R4
A DC power supply of voltage V0 is connected between terminals A and C (positive terminal at A). A galvanometer is connected between terminals B and D. The internal resistance of the power supply and wire resistance are negligible. The fixed resistors satisfy R2=R4=Rc.
The RTD R1 has resistance as a function of its own temperature Ts:
R1(Ts)=R0{1+α(Ts−T0)}where T0 is the reference temperature, R0 is the resistance at reference temperature, and α is the temperature coefficient of resistance.
The Joule power dissipated by the RTD per unit time is P. With the surrounding liquid temperature Tf, Newton's law of cooling states that at thermal equilibrium (steady state):
P=K(Ts−Tf)where K is the heat dissipation constant representing how easily heat flows from the RTD to the liquid.
The RTD is immersed in a large amount of liquid, current flows through the circuit, and sufficient time passes to reach steady state. Then the variable resistor R3 is adjusted until the galvanometer current reaches zero (bridge balance) at R3=Rx.
Derive the true liquid temperature Tf.
Constraints
- DC supply voltage: V0=14V
- Fixed resistor value: Rc=120Ω
- Variable resistor at balance: Rx=90Ω
- Reference temperature: T0=300K
- RTD resistance at reference temperature: R0=100Ω
- Temperature coefficient of resistance: α=5.0×10−3K−1
- Heat dissipation constant: K=8.0×10−2W/K
Input Format
Give the liquid temperature Tf [K] as a positive integer (no units).
Solution
1. Finding the RTD Resistance R1 from Bridge Balance
At bridge balance, no current flows through the galvanometer, so terminals B and D are at the same potential. The Wheatstone bridge balance condition gives:
R1⋅R3=R2⋅R4With R2=R4=Rc and R3=Rx:
R1⋅Rx=Rc2⟹R1=RxRc2=901202=9014400=160Ω2. Finding the RTD Temperature Ts
From the resistance-temperature relationship:
Ts=T0+αR0R1−R0=300+5.0×10−3×100160−100=300+0.5060=300+120=420K3. Computing Joule Power P
At bridge balance, no current splits between B and D, so current I1 flows in series through R1 and R2:
I1=R1+RcV0=160+12014=28014=0.050AThe Joule power in the RTD:
P=R1I12=160×(0.050)2=160×0.0025=0.40W4. Finding the Liquid Temperature Tf
At thermal equilibrium, all Joule heat flows to the liquid. From Newton's law of cooling:
Tf=Ts−KP=420−8.0×10−20.40=420−5.0=415KAnswer: 415