Electronic – Why does this work for biasing an AC signal for A/D conversion

adcbias

I have a working circuit for biasing the AC signal going into my ADC, but I cant quite wrap my head around why it works. I can see that it resembles a high pass filter but how/why does it add the two voltages together? For example if the AC signal is at 1.5V, the ADC input is at 4V (1.5V + 2.5V).

The 2.5V comes from a simple voltage divider circuit. The AC signal is coming from a voltage follower op amp.

enter image description here

Best Answer

Agreed with the answer given by @KyranF, but I would also like to add that capacitors resist change in voltage. This means that when the AC voltage swings between -2.5V and 2.5V, the capacitor will draw/produce (Depending how you look at it) whatever current it needs to maintain this voltage. So that causes a voltage/current swing in the 1MΩ resistor.

I would also argue that the circuit given by @Black Emperor is not entirely wrong.

Ideally (Note ideally) an ADC pin would not draw any current, so we can treat the ADC node as an open circuit. Let's say we apply zero volts at the AC signal pin for a very long time. The cap would also be an open circuit and there wouldn't be any current flowing through the resistor, thus the ADC pin sees 2.5V, this is the known bias.

If the AC signal starts to fluctuate, the cap would force the voltage across it's terminal to remain the same, causing current to flow and changing the voltage across the resistor which can be read by the ADC.

The only reason why I wouldn't suggest to implement that exact circuit is because a cheap ADC would have a low input impedance. This low input impedance might be on the same scale as the 1MΩ resistor (causing it to appear less like an open circuit) and current would start to sink into the ADC and possibly cause damage.

Hope I was clear, good luck!

  • Josh