Electronic – Inverting Amplifer for ADC IC

adcamplifieranalog

I am using ads8320 ADC IC which have IN+ and IN- analig inputs. I need to operate this IC with 3.3V VCC and 3.3V Vref. My analog sensor gives 0V-12V range signal which is required to set 0V-3.3V by using an Inverting amplifier. As far now I found the load of the inverting amplifier can be Resistive load or Current output. I don't know what to use in my application.The circuit i have added was generated using Texas Instruments Web-bench. And I have used resistive load.Can I directly connect upper end of the load resistor to my IN+ of the ADC IC (ads8320)

enter image description here

Best Answer

The datasheet for the ADS8320 gives an example circuit. See Figure 22 of the datasheet.

For reference figure 22 from the ADS8320 datasheet:

enter image description here

The given circuit doesn't quite match what you are doing, but it and the text give you a couple of pointers.

  1. You MUST have that 1nF capacitor
  2. You (almost certainly) need that 100 Ohm resistor. If you use the LMP7716 from the example, then you MUST have that 100 Ohm resistor.

The 1nF capacitor is needed by the ADC input. Section 8.2.1.2 explains the reasoning.

From a practical standpoint, if you don't have it the input voltage will scitter around as it is being sampled and result in incorrect values.

The 100 Ohm resistor is needed because op-amps in general don't like driving capacitors. Putting that 100 Ohms in there prevents the op-amp from oscillating.

The 100 Ohm resistor and the 1nF also form a low pass filter. The given values have a cutoff of about 1.5MHz. That's not really low enough considering that the ADS8320 sample rate only goes up to 100kHz. If you can guarantee that the signal will not contain any frequencies above half of your sampling rate then this won't be a problem.

For your task, you need a rail to rail op-amp, a voltage divider, and the parts mentioned above.

That would look like this:

schematic

simulate this circuit – Schematic created using CircuitLab

The voltage divider (R1 and R2) brings the 12V sensor voltage down to something less than 3.3V because it uses standard resistor values. You should be able to figure out what ratio the divider really uses.

The two diodes are schottky diodes. They clamp the input to the op-amp to the limits that the datasheet for the LMP7716 gives. That's less than 0.3V above or below the power rails.

C1 is the 1nF required by the ADS8320 datasheet to keep the input from scittering around during the sampling.

R3 is the series resistor needed so that the LMP7716 can drive the 1nF without oscillating.

This is non-inverting unity gain buffer amplifier. I do not know why you think you need an inverting amplifier. That would be an unusual thing for the situation you describe.


Edited to add:

I've just noticed your comments on the frequency range.

You can add a capacitor in parallel with R2 to form a simple low pass filter. This will reduce the noise being sampled, and help avoid aliasing.

10nF should be sufficient (calculating the corner frequency is a task for you.)

Once you have it sampled, you can apply a filter in the digital domain and get better results than an analog filter would give you.

You need to get acquainted with Shannon's theorem and the Nyquist rate. This will help you avoid problems when sampling analog signals.

Related Topic