

The OP37, manufactured by Analog Devices, is a high-performance operational amplifier designed for applications requiring low noise, precision, and high-speed signal amplification. With its superior characteristics, the OP37 is widely used in instrumentation, audio processing, medical devices, and other precision signal processing applications.








| Parameter | Value |
|---|---|
| Supply Voltage Range | ±3 V to ±18 V |
| Input Offset Voltage | 25 µV (typical) |
| Input Bias Current | 10 nA (typical) |
| Input Noise Voltage | 3 nV/√Hz at 10 Hz |
| Gain Bandwidth Product | 63 MHz |
| Slew Rate | 17 V/µs |
| Output Voltage Swing | ±13 V (typical, with ±15 V supply) |
| Common-Mode Rejection Ratio | 120 dB (typical) |
| Power Supply Rejection Ratio | 120 dB (typical) |
| Operating Temperature Range | -25°C to +85°C |
| Package Options | 8-Pin PDIP, SOIC |
The OP37 is available in an 8-pin package. The pinout and descriptions are as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Offset Null 1 | Offset voltage adjustment (connect to a |
| potentiometer for fine-tuning) | ||
| 2 | Inverting Input | Inverting input terminal (-) |
| 3 | Non-Inverting | Non-inverting input terminal (+) |
| Input | ||
| 4 | V- (Negative | Negative power supply terminal |
| Supply) | ||
| 5 | Offset Null 2 | Offset voltage adjustment (connect to a |
| potentiometer for fine-tuning) | ||
| 6 | Output | Amplifier output terminal |
| 7 | V+ (Positive | Positive power supply terminal |
| Supply) | ||
| 8 | NC (No Connect) | Not connected internally |
The OP37 can be used to amplify analog signals for an Arduino UNO. Below is an example of a non-inverting amplifier circuit with a gain of 10.
// Arduino code to read amplified signal from OP37 and display it
// on the serial monitor.
const int analogPin = A0; // Analog pin connected to OP37 output
int sensorValue = 0; // Variable to store the analog reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(analogPin); // Read the analog value
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Amplified Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(500); // Wait for 500 ms before the next reading
}
No Output Signal:
Output Distortion:
High Noise Levels:
Instability or Oscillation:
Q: Can the OP37 operate with a single power supply?
A: Yes, the OP37 can operate with a single supply, but the input and output signals must remain within the specified voltage range. A virtual ground may be required for proper operation.
Q: What is the maximum gain I can achieve with the OP37?
A: The OP37 is optimized for gains of 5 or higher. For lower gains, consider using a different operational amplifier.
Q: How do I minimize offset voltage in my circuit?
A: Use the offset null pins (Pins 1 and 5) with a potentiometer to fine-tune the offset voltage.