ENGN Analogue Electronics Digital PC Oscilloscope

Size: px
Start display at page:

Download "ENGN Analogue Electronics Digital PC Oscilloscope"

Transcription

1 Faculty of Engineering and Information Technology Department of Engineering ENGN Analogue Electronics Digital PC Oscilloscope David Dries u Craig Gibbons u James Moran u Ranmadhu Wijayatilaka u Dr. Salman Durrani 24 October 2006

2 CONTENTS Contents 1 Introduction 1 2 Theory Operational Amplifiers Analogue to Digital Converter Full Wave Rectifier Voltage Regulation Multiplexer Sample and Hold Circuit Implementation Full Wave Rectifier Zero Crossing Detector Sample and Hold Circuit ADC, MUX and Parallel Port Interface Results Program in Turbo C Input Signal reaching Conversion Circuit Fullwave Rectifier Sample and Hold Conversion Circuit Verifying ADC Performance Multiplexer Parallel Port Interface Zero Crossing Detector Results of Debugging Conclusion 10 A Circuit Design 11 B Components 13 i

3 CONTENTS C Cathode Ray Oscilloscope Outputs 14 C.1 Zero Crossing Circuit C.2 Fullwave Rectifier C.3 Sample and Hold Circuit C.4 Zero-Crossing Detector D PSpice Implementation 17 D.1 Fullwave Rectifier D.2 Sample and Hold Circuit E Internal Pin Connections 19 ii

4 Abstract This project looks at the design and implementation processes used in the construction and testing of a PC based oscilloscope. Multiple input signals (DC, sinusoidal, square wave) waveforms, limited to 0-5 V peakto-peak with a maximum frequency of 1 khz were tested on a breadboard design, with the output signals observed on a PC graphical user interface (GUI) via hardware interfacing. Various signal conditioning processes were constructed within the project, including full rectification of signals, sampling and holding, digitising of signal information, and multiplexing of streams of data. Interfacing the oscilloscope to a personal computer was made via a standard 25 pin printer port (known commonly as a parallel port). Communication between the parallel port and the circuit was done through software constructed in the Turbo C. The final results obtained demonstrated the project is susceptible to large quantities of noise, as the output signals displayed on the GUI demonstrated large quantities of noise. It was noted though that each subsystem within the circuit, when treated individually, functioned properly, however this was not the case when the entire circuit was implemented as a whole system. It should be noted that the student engineers who participated in this project were satisfied with the final results, even though the circuit did not function properly. New concepts were learnt by each of the participating individuals, in particular hardware interfacing, system troubleshooting and system analysis. These skills, not taught in regular university classes, will be of fundamental use in their engineering careers, making the project a satisfying accomplishment.

5 2 THEORY 1 Introduction Oscilloscopes are electronic test equipment used primarily to accurately display the voltage of a signal against time or frequency. They have a wide range of possible applications, ranging from a medical researcher measuring brain waves to an automotive engineer measuring engine vibrations. Most modern oscilloscopes utilise digital storage, which digitally store data for as long as required. However, as modern computers become more widespread and prevalent, it is becoming advantageous to use PC oscilloscopes running on computers to obtain and display the data. This has many advantages: Easier to analyse the data. More processing power Easier to export and transport data from one device to another. Better resolution displays. Larger memory capacities for holding data. 2 Theory 2.1 Operational Amplifiers An operational amplifier, commonly referred to as an op-amp, is a high-gain differential voltage amplifier used extensively in electronic applications. Common examples include control system electronics, active filter design and bridge oscillator designs. Within this project, op-amps are used in the capacity of voltage followers and inverting amplifiers 2.2 Analogue to Digital Converter Analogue to digital converters (ADC) are a fundamental component in PC oscilloscopes. ADCs receive an analogue input signal, where it is then converted into a digital output. The resolution of an ADC states the number of discrete values its output can occupy, for example, an 8-bit ADC can have 256 (or 2 8 ) discrete values. 2.3 Full Wave Rectifier For our project, the use of a full wave rectifier is essential as the ADC cannot convert a negative signal to digital. To compensate for this, a full wave rectifier can be implemented, 1

6 2 THEORY whereby a sinusoidal wave can be rectified into a positive cyclic signal, as shown in Figure 1. (a) A non-rectified sine wave (b) A rectified sine wave Figure 1: Rectification of a sine wave 2.4 Voltage Regulation As a means of reducing the use of voltage supplies, voltage regulators can be used to produce a desired output voltage through the use of only one voltage source. An LM7805 chip was implemented in the project, whereby a 9 V input signal is regulated to a 5 V output, as shown in Figure 2 Figure 2: Voltage regulator circuit Capacitors C 1 and C 2 are vital in improving the quality of the regulator s input and output signals. C 1 is used to remove unwanted oscillations from the input signal that may arise when the power supply is a considerable distance from the regulator circuit. C 2 is used primarily to improve the transient response of the signal by acting as a line filter. 2.5 Multiplexer Transfering of information within electronic circuits can be a costly process when each stream of data has its own individual line of transmission. As a means of compensating for this, multiplexers can accept multiple input signals and encode them to a single output line. Figure 3 shows the concept of a basic multiplexer. 2

7 3 IMPLEMENTATION 2.6 Sample and Hold Circuit Figure 3: 2 to 1 multiplexer, analogous to a switch Sample and hold circuits are frequently used when converting analogue signals to digital. The sample and hold circuit takes the analogue input and outputs it to the ADC. When a sample is taken, the input signal is held via a capacitor. This output value is maintained until the next sample. See Figure 7 for an example implementation of sample and hold circuit. 3 Implementation Figure 4 displays a high level block diagram of the PC oscilloscope circuit that was implemented (see Figure 9 in Appendix A for full design). The signal is inputted into both the zero-crossing detector and the full-wave rectifier. Initially the full-wave rectifier converts the negative part of the sinusoidal input signal values to positive values, thus the signal is now the absolute value of the original signal. The zero-crossing detector determines when the original signal has negative values and sends that information to the PC, this ensures the PC can correctly determine which parts of the signal are negative even after it has been recitified. The full-wave rectifier sends the rectified signal to the sample and hold circuit. This subcircuit does not forward the signal through to the ADC until it receives a signal telling it to do so from the PC. When it receives this signal, it sends a sample of the signal to the ADC. The length of this sample is determined by the user s settings on the PC. The ADC converts the signal from analog to an 8-bit digital signal and sends that signal to the multiplexer. 3.1 Full Wave Rectifier A full wave rectifier can be implemented in different ways. The method used in this circuit utilizes two op-amps and two diodes as shown in Figure 5. When the signal is positive, A1 acts as an inverter, thus the signal current travels through Dio3 into the inverting pin of A2. Therefore, when the signal is negative, both the op-amps act as inverters, thus the signal is unchanged. However, when the signal is negative, A1 acts as an inverter but 3

8 3 IMPLEMENTATION Figure 4: Block diagram of implementation Figure 5: Full wave rectifier component (see Table 1 for component values) since the output signal from A1 is now positive, the signal current travels through Dio4 into the non-inverting pin of A2. Thus only A1 acts as an inverter when the input signal is negative. 3.2 Zero Crossing Detector Since the input signal is rectified before being sent to the ADC and onwards to the PC, the PC will not know whether the signal is positive or negative. To handle any negative inputs, the zero crossing detector is used. The 3rd LED will signal whether the input signal is negative or not. If the LED is on, the signal is positive. This signal is then sent to the PC to handle. 4

9 3 IMPLEMENTATION Figure 6: Zero crossing detector circuit (see Table 1 for component values) The zero crossing detector is implemented using a LM3914 chip, which is a monolithic integrated circuit. The chip senses analog voltage levels and drives a series of LEDs. Refer to Figure Sample and Hold Circuit The rectified signal is then fed into the sample and hold circuit. Figure 7: Sample and hold circuit (see Table 1 for component values) Figure 7 shows the sample and hold circuit that is implemented using two LM741 op- 5

10 3 IMPLEMENTATION amps and a CD4016 IC, which is a quad bilateral switch. This circuit divides the input signal (in the case of the project, a rectified sinuosoid) into several discrete voltage levels, samples each voltage level and then sends the delayed signal to the ADC for processing. By triggering the transistor, T1 with a low input signal sent from the computers parallel port, the transistor stops conducting and the voltage at the transistors collector switches to high. Once the collector goes high, an internal switch within the CD4016 closes, causing an output current to be produced from port Q1 of the CD4016. The output current begins to charge the capacitor C3 to a voltage level almost equal to the signal voltage. When the transistor is triggered with a high input signal from the parallel port D1, the switch of the CD4016 is left open, causing capacitor C3 to retain the voltage it had stored previously. The voltage is then sent to op-amp A4 (configured as a voltage follower) in order to transfer the signal from the high impedance CD4016 component to the low impedance ADC component. 3.4 ADC, MUX and Parallel Port Interface The ADC used in this circuit is an ADC0804 IC chip. It is powered by a 5 V supply and converts the input signal into an 8-bit output which is fed into the multiplexer unit (MUX) for PC interfacing. Figure 8: ADC and MUX pin connections and sorrounding circuitry (see Table 1 for component values) The inter-connection of the ADC, MUX and parallel ports is shown in Figure 8. The MUX unit is a type with tri-state buffer i.e. three possible outputs LOW, HIGH, Z (high impedance). It has 8 inbuilt buffers for processing of 8-bit data received from the 6

11 4 RESULTS ADC. Four of these buffers control the least signicant bits from the ADC (DB0-DB3), whilst the remaining four control the most signifcant bits of the ADC (DB4-DB7). The reason for this is detailed below. Conversion of the data between the ADC and the PC is initiated after port 16 of the parallel port sends pin 3 of the ADC an active low signal. 8-bit data is now sent to the MUX from the ADC. After a small time delay, pin 1 of the MUX is initialised from an active low signal from port 2 of the parallel port, allowing the four least significant bits of the 8-bit data stream to be sent to the PC. A short time later, another active low signal is sent from the parallel port, this time from port 9 to pin 19 of the MUX, causing the four most significant bits to be sent to the PC. The reason for separating the 8-bit data into two 4-bit streams of data is due to the parallel port s limitation in not allowing 8-bit input. 4 Results Upon initial inspection of the circuit s operation, multiple problems were noted. The input signal waveform was not replicated on the PC graphical user interface. Troubleshooting of the circuit was undertaken in order to isolate causes of the circuit failure. 4.1 Program in Turbo C The design that was implemented was originally published in 2002 and computers have come along way since then. So the first obstical to over come before even purschasing the components and constructing the circuit was to verify the code. The C code uses the parallel port (LPT1) for interfacing to the ciruit in digital form. Hence the program would not run easily under Windows XP, as XP has greater restrictions on the parallel port interface and does not co-operate with Turbo C very well. Thus, the choice was made to implement the system using Windows 98 as this would provide adequate control of the parallel ports. The code compiled and ran without errors, which meant the construction of the circuit could now begin. 4.2 Input Signal reaching Conversion Circuit Fullwave Rectifier The reason for this subsection of the circuit not initially functioning correctl is yet to be determined. In the original circuit diagram, the project uses an LM324, an IC containing four amplifiers, that were configured to achieve full wave rectification. Instead, the output signal resembled a heavily noise distorted signal that showed no form of periodicity, even when the input to the IC was a sinusoidal waveform. Multiple LM324 s were tested with no varying result. See Figure 12 in Appendix C.2. 7

12 4 RESULTS By using LM741 op-amps, the full wave rectification circuit was reconstructed as shown in Figure Sample and Hold In the original circuit design, the T1 transistor was a SL100 type transistor, however it could not be obtained as it is now obsolete. The 2N22 is a newer transistor with similar specifications. The voltage at the collector of the transistor was viewed on the CRO when sampling was requested from the PC. The transistor was switching on and off (0-9 V) in sync with the sample pulses which means it was working correctly. After changing the fullwave rectifier circuit to using LM741s, it was confirmed that the sample and hold circuit receives a correct input signal. Thus it was then necessary to correct the operation in this circuit. The issue assosciated in doing so is that the sample and hold circuit receives inputs from the PC via pin 1 on the parallel port. So we needed to know what happens to the output of this sample and hold circuit for a giving input when the PC is commanded to take a sample. There was a very quick fluctuation when the program requested a sample. The CRO was hooked up to display pin1 of the parallel port when a sample was requested by the PC (see Figure 13). From viewing this figure the signal being sent to the sample and hold was mainly a logical low with a short logical high pulse every 100 µs. When this pin is logical low the sample and hold circuit holds the current voltage level of the input. When logical high, the sample and hold follows the input then holds the value once logical low is returned. This can be seen in Figure 14. This confirmed that the sample and hold circuit was functioning correctly. 4.3 Conversion Circuit When initially debugging the circuit, the fullwave rectifier and the sample and hold circuits were not used. This helps to isolate any problems the circuit may have to individual modules. Thus the ADC and MUX were tested seperately from the rest of the circiut Verifying ADC Performance At first, no output signal was generated on the PC side of the system. First impressions for the cause of this was the 8-bit ADC not functioning properly (i.e. a faulty component). In order to test this, the resolution of the ADC was firstly computed: Resolution = V cc 2c 8 1 = 19.6 mv The resolution of the ADC allowed for the computation of the expected binary equivalent of an applied DC voltage signal. For example, the decimal equivalent output due to a 1 V 8

13 4 RESULTS supplied voltage signal is given as: 1 V 10 = The binary equivalent value is therefore: 1 V 19.6 mv = = Thus the expected output signals from ports DB7 (most significant) to DB0 (least significant) of the ADC should be This was confirmed experimentally by probing each of the ADC output pins, with corresponding high/lo (1 and 0) changes noted on the digital oscilloscope, verifying the output datastream being To test the ADC directly with the C program, 4 of the 8 bit outputs were connected directly to the parallel port data lines (D3, D4, D5, D6) with a small DC voltage into the input V in(+). The constant DC waveform was displayed perfectly on the PC and increasing the input voltage increased the voltage on the PC in sync Multiplexer The pins 1 and 19 of the multiplexer (MUX) (see Figure 21 in Appendix E) are active low pins that determine which set of four output pins will be active. If pin 1 is on, then pins 18, 16, 14 and 12 will have the same voltage as pins 2, 4, 6 and 8 respectively. Likewise, if pin 19 is on, pins 3, 5, 7 and 9 will have the same voltage as pins 17, 15, 13 and 11 respectively. This behaviour was observed by inputting voltages into the different input pins and changing the values of the control pins (pins 1 and 19). Thus it was confirmed that the MUX unit was working correctly. 4.4 Parallel Port Interface The C code was setup to default on LPT1 with Data port 0x0378. To make sure the PCs parallel port was also setup on LPT1 debug was used in DOS. The following command was used: Debug d 0040:08 L8. Which resulted in B 02 being returned. This means LPT1 is used for Data port 0x0378, LPT2 and LPT3 arent used, and LPT4 0x020B is assigned. This concludes that the code is using the correct data, status and controls ports. The next step was to ensure that the parallel port interface between the circuit and the PC functioned correctly. To determine this, the parallel port was seperated from the circuit and voltages were applied to the individual pins of the port to simulate logical high (3 V to 5 V). Whilst doing this, the software was run and data captured onto the PC oscilloscope and recorded. From this observed data, it was confirmed that inputting logical highs into the individual pins affected the output on the PC oscilloscope. 9

14 5 CONCLUSION 4.5 Zero Crossing Detector This step was left to last because this only determines if the signal is above or below 0 V. The zero-crossing detector was tested in isolation to ensure that it works as designed. The output was observed via the cathode ray oscilloscope (see Figure 15) in Appendix C.4). This output waveform confirmed that the zero-crossing detector was working but it wasnt switching states exactly at zero volts. V R1 was varied so the detector was switching states exactly at zero (see Figure 16) in Appendix C.4) When the input signal was negative, the zero-crossing detector was a logical high. 4.6 Results of Debugging After debugging the circuit s individual modules, it was found that each of them functioned as were expected. The problems arose when the system was constructed as a whole. The output then was inconsistent and heavly noise affected. There are several possible reasons for this is the timing of the circuit: The PC sends a signal to the MUX to send the first 4-bit packet, followed by the next 4-bits, the timing of this operation must be very precise in order to calculate and display a proper waveform. Thus any mis-timings in the output side of the circuit will result in varying results. Another major cause of the incorrect output is the noise generated by the sample and hold circuit. The circuit should ideally hold the same value, however, when observed via the oscilloscope, it was noted that the output was heavily affected by noise. This constant change in the output of the sample and hold circuit means both the ADC and the MUX will also have varying outputs, thus skewing the final display on the PC. 5 Conclusion Overall, the project was satisfactorily completed. The initial objective could not be achieved; however, it was observed that each component functioned correctly in isolation. The problems in the integrated circuit was narrowed down to the MUX-PC interface timing and the noise in the sample and hold output. Most importantly, the project confirmed that PC interfacing is a achievable, and that PC digital oscilloscopes can be implemented with further study and analysis. 10

15 A CIRCUIT DESIGN A Circuit Design Figure 9: The original circuit design 11

16 A CIRCUIT DESIGN Figure 10: The circuit implemented on breadboards 12

17 B COMPONENTS B Components Table 1: Components used in the circuit ID Component Value Notes R1 Resistor 10 KΩ R2 Resistor 330 Ω R3 Resistor 330 Ω R4 Resistor 330 Ω R5 Resistor 330 Ω R6 Resistor 330 Ω R7 Resistor 1 MΩ R8 Resistor 470 Ω R9 Resistor 470 Ω R10 Resistor 470 Ω R11 Resistor 470 Ω R12 Resistor 470 Ω R13 Resistor 470 Ω R14 Resistor 470 Ω R15 Resistor 470 Ω R16 Resistor 470 Ω R17 Resistor 470 Ω R18 Resistor 1 kω R19 Resistor 10 kω 1 W power rating C1 Capacitor 1000 µf C2 Capacitor 0.1 µf C3 Capacitor 1500 pf A1 Op-amp LM741 A2 Op-amp LM741 A3 Op-amp LM741 A4 Op-amp LM741 A5 Op-amp LM741 VR1 Variable resistor 10 kω VR2 Variable resistor 10 kω Dio1 Diode (1N4001) Dio2 Diode (1N4001) Dio3 Diode (1N4001) Dio4 Diode (1N4001) IC1 Multiplexer (74244) IC3 ADC (0804) T1 Transistor (2N22) 13

18 C CATHODE RAY OSCILLOSCOPE OUTPUTS C Cathode Ray Oscilloscope Outputs C.1 Zero Crossing Circuit Figure 11: Input and output from the zero crossing circuit. The output goes high when the input signal is negative. C.2 Fullwave Rectifier Figure 12: Input and output from the fullwave rectifier circuit. The output is the absolute value of the input signal. 14

19 C CATHODE RAY OSCILLOSCOPE OUTPUTS C.3 Sample and Hold Circuit Figure 13: Input from the PC (via pin 1 on the parallel port) to the sample and hold circuit Figure 14: Output from the sample and hold circuit 15

20 C CATHODE RAY OSCILLOSCOPE OUTPUTS C.4 Zero-Crossing Detector Figure 15: Incorrect output from the zero crossing detector Figure 16: Corrected output from the zero crossing detector 16

21 D PSPICE IMPLEMENTATION D PSpice Implementation D.1 Fullwave Rectifier Figure 17: PSpice implementation of the fullwave rectifier Figure 18: Output waveform 17

22 D PSPICE IMPLEMENTATION D.2 Sample and Hold Circuit Figure 19: PSpice implementation of the sample and hold circuit Figure 20: Output waveform 18

23 E INTERNAL PIN CONNECTIONS E Internal Pin Connections Figure 21 shows the internal circuitry of a MUX IC unit (obtained from Fairchild Semiconductor s DM74LS244 data sheet). Figure 21: Internal circuitry of MUX IC unit 19

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2)

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2) EE 368 Electronics Lab Experiment 10 Operational Amplifier Applications (2) 1 Experiment 10 Operational Amplifier Applications (2) Objectives To gain experience with Operational Amplifier (Op-Amp). To

More information

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS 6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS Laboratory based hardware prototype is developed for the z-source inverter based conversion set up in line with control system designed, simulated and discussed

More information

Op Amp Booster Designs

Op Amp Booster Designs Op Amp Booster Designs Although modern integrated circuit operational amplifiers ease linear circuit design, IC processing limits amplifier output power. Many applications, however, require substantially

More information

Low Cost Screening Audiometer

Low Cost Screening Audiometer Abstract EE 389 EDL Report, EE Dept. IIT Bombay, submitted on Nov.2004 Low Cost Screening Audiometer Group No.: D3 Chirag Jain 01d07018 Prashant Yadav 01d07024 Puneet Parakh 01d07007 Supervisor: Prof.

More information

BINARY AMPLITUDE SHIFT KEYING

BINARY AMPLITUDE SHIFT KEYING BINARY AMPLITUDE SHIFT KEYING AIM: To set up a circuit to generate Binary Amplitude Shift keying and to plot the output waveforms. COMPONENTS AND EQUIPMENTS REQUIRED: IC CD4016, IC 7474, Resistors, Zener

More information

UNIVERSITI MALAYSIA PERLIS

UNIVERSITI MALAYSIA PERLIS UNIVERSITI MALAYSIA PERLIS ANALOG ELECTRONICS II EMT 212 2009/2010 EXPERIMENT # 3 OP-AMP (OSCILLATORS) 1 1. OBJECTIVE: 1.1 To demonstrate the Wien bridge oscillator 1.2 To demonstrate the RC phase-shift

More information

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139 DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 019.101 Introductory Analog Electronics Laboratory Laboratory No. READING ASSIGNMENT

More information

LINEAR IC APPLICATIONS

LINEAR IC APPLICATIONS 1 B.Tech III Year I Semester (R09) Regular & Supplementary Examinations December/January 2013/14 1 (a) Why is R e in an emitter-coupled differential amplifier replaced by a constant current source? (b)

More information

ECE3204 D2015 Lab 1. See suggested breadboard configuration on following page!

ECE3204 D2015 Lab 1. See suggested breadboard configuration on following page! ECE3204 D2015 Lab 1 The Operational Amplifier: Inverting and Non-inverting Gain Configurations Gain-Bandwidth Product Relationship Frequency Response Limitation Transfer Function Measurement DC Errors

More information

Spectrum analyzer for frequency bands of 8-12, and MHz

Spectrum analyzer for frequency bands of 8-12, and MHz EE389 Electronic Design Lab Project Report, EE Dept, IIT Bombay, November 2006 Spectrum analyzer for frequency bands of 8-12, 12-16 and 16-20 MHz Group No. D-13 Paras Choudhary (03d07012)

More information

Electronic PRINCIPLES

Electronic PRINCIPLES MALVINO & BATES Electronic PRINCIPLES SEVENTH EDITION Chapter 22 Nonlinear Op-Amp Circuits Topics Covered in Chapter 22 Comparators with zero reference Comparators with non-zero references Comparators

More information

MAINTENANCE MANUAL AUDIO MATRIX BOARD P29/

MAINTENANCE MANUAL AUDIO MATRIX BOARD P29/ MAINTENANCE MANUAL AUDIO MATRIX BOARD P29/5000056000 TABLE OF CONTENTS Page DESCRIPTION................................................ Front Cover CIRCUIT ANALYSIS.............................................

More information

Computer Controlled Curve Tracer

Computer Controlled Curve Tracer Computer Controlled Curve Tracer Christopher Curro The Cooper Union New York, NY Email: chris@curro.cc David Katz The Cooper Union New York, NY Email: katz3@cooper.edu Abstract A computer controlled curve

More information

Precision Rectifier Circuits

Precision Rectifier Circuits Precision Rectifier Circuits Rectifier circuits are used in the design of power supply circuits. In such applications, the voltage being rectified are usually much greater than the diode voltage drop,

More information

USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE

USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE LM2901 Quad Voltage Comparator 1 5/18/04 TABLE OF CONTENTS 1. Index of Figures....3 2. Index of Tables. 3 3. Introduction.. 4-5 4. Theory

More information

Electronics. RC Filter, DC Supply, and 555

Electronics. RC Filter, DC Supply, and 555 Electronics RC Filter, DC Supply, and 555 0.1 Lab Ticket Each individual will write up his or her own Lab Report for this two-week experiment. You must also submit Lab Tickets individually. You are expected

More information

DIGITAL COMMUNICATIONS LAB

DIGITAL COMMUNICATIONS LAB DIGITAL COMMUNICATIONS LAB List of Experiments: 1. PCM Generation and Detection. 2. Differential Pulse Code modulation. 3. Delta modulation. 4. Time Division Multiplexing of 2band Limited Signals. 5. Frequency

More information

Fig 1: The symbol for a comparator

Fig 1: The symbol for a comparator INTRODUCTION A comparator is a device that compares two voltages or currents and switches its output to indicate which is larger. They are commonly used in devices such as They are commonly used in devices

More information

Data Conversion and Lab Lab 4 Fall Digital to Analog Conversions

Data Conversion and Lab Lab 4 Fall Digital to Analog Conversions Digital to Analog Conversions Objective o o o o o To construct and operate a binary-weighted DAC To construct and operate a Digital to Analog Converters Testing the ADC and DAC With DC Input Testing the

More information

Applications of the LM392 Comparator Op Amp IC

Applications of the LM392 Comparator Op Amp IC Applications of the LM392 Comparator Op Amp IC The LM339 quad comparator and the LM324 op amp are among the most widely used linear ICs today. The combination of low cost, single or dual supply operation

More information

A Digital Multimeter Using the ADD3501

A Digital Multimeter Using the ADD3501 A Digital Multimeter Using the ADD3501 INTRODUCTION National Semiconductor s ADD3501 is a monolithic CMOS IC designed for use as a 3 -digit digital voltmeter The IC makes use of a pulse-modulation analog-to-digital

More information

Practical 2P12 Semiconductor Devices

Practical 2P12 Semiconductor Devices Practical 2P12 Semiconductor Devices What you should learn from this practical Science This practical illustrates some points from the lecture courses on Semiconductor Materials and Semiconductor Devices

More information

Function Generator Using Op Amp Ic 741 Theory

Function Generator Using Op Amp Ic 741 Theory Function Generator Using Op Amp Ic 741 Theory Note: Op-Amps ua741, LM 301, LM311, LM 324 & AD 633 may be used To design an Inverting Amplifier for the given specifications using Op-Amp IC 741. THEORY:

More information

ANALOG TO DIGITAL CONVERTER

ANALOG TO DIGITAL CONVERTER Final Project ANALOG TO DIGITAL CONVERTER As preparation for the laboratory, examine the final circuit diagram at the end of these notes and write a brief plan for the project, including a list of the

More information

UMAINE ECE Morse Code ROM and Transmitter at ISM Band Frequency

UMAINE ECE Morse Code ROM and Transmitter at ISM Band Frequency UMAINE ECE Morse Code ROM and Transmitter at ISM Band Frequency Jamie E. Reinhold December 15, 2011 Abstract The design, simulation and layout of a UMAINE ECE Morse code Read Only Memory and transmitter

More information

PreLab 6 PWM Design for H-bridge Driver (due Oct 23)

PreLab 6 PWM Design for H-bridge Driver (due Oct 23) GOAL PreLab 6 PWM Design for H-bridge Driver (due Oct 23) The overall goal of Lab6 is to demonstrate a DC motor controller that can adjust speed and direction. You will design the PWM waveform and digital

More information

ASTABLE MULTIVIBRATOR

ASTABLE MULTIVIBRATOR 555 TIMER ASTABLE MULTIIBRATOR MONOSTABLE MULTIIBRATOR 555 TIMER PHYSICS (LAB MANUAL) PHYSICS (LAB MANUAL) 555 TIMER Introduction The 555 timer is an integrated circuit (chip) implementing a variety of

More information

Lab 10: Oscillators (version 1.1)

Lab 10: Oscillators (version 1.1) Lab 10: Oscillators (version 1.1) WARNING: Use electrical test equipment with care! Always double-check connections before applying power. Look for short circuits, which can quickly destroy expensive equipment.

More information

Lab 6: Instrumentation Amplifier

Lab 6: Instrumentation Amplifier Lab 6: Instrumentation Amplifier INTRODUCTION: A fundamental building block for electrical measurements of biological signals is an instrumentation amplifier. In this lab, you will explore the operation

More information

CHAPTER 7 HARDWARE IMPLEMENTATION

CHAPTER 7 HARDWARE IMPLEMENTATION 168 CHAPTER 7 HARDWARE IMPLEMENTATION 7.1 OVERVIEW In the previous chapters discussed about the design and simulation of Discrete controller for ZVS Buck, Interleaved Boost, Buck-Boost, Double Frequency

More information

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139 DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 019 Spring Term 00.101 Introductory Analog Electronics Laboratory Laboratory No.

More information

University of Pittsburgh

University of Pittsburgh University of Pittsburgh Experiment #7 Lab Report Analog-Digital Applications Submission Date: 08/01/2018 Instructors: Dr. Ahmed Dallal Shangqian Gao Submitted By: Nick Haver & Alex Williams Station #2

More information

For the filter shown (suitable for bandpass audio use) with bandwidth B and center frequency f, and gain A:

For the filter shown (suitable for bandpass audio use) with bandwidth B and center frequency f, and gain A: Basic Op Amps The operational amplifier (Op Amp) is useful for a wide variety of applications. In the previous part of this article basic theory and a few elementary circuits were discussed. In order to

More information

ADC0808/ADC Bit µp Compatible A/D Converters with 8-Channel Multiplexer

ADC0808/ADC Bit µp Compatible A/D Converters with 8-Channel Multiplexer ADC0808/ADC0809 8-Bit µp Compatible A/D Converters with 8-Channel Multiplexer General Description The ADC0808, ADC0809 data acquisition component is a monolithic CMOS device with an 8-bit analog-to-digital

More information

ELC224 Final Review (12/10/2009) Name:

ELC224 Final Review (12/10/2009) Name: ELC224 Final Review (12/10/2009) Name: Select the correct answer to the problems 1 through 20. 1. A common-emitter amplifier that uses direct coupling is an example of a dc amplifier. 2. The frequency

More information

EECS 216 Winter 2008 Lab 2: FM Detector Part II: In-Lab & Post-Lab Assignment

EECS 216 Winter 2008 Lab 2: FM Detector Part II: In-Lab & Post-Lab Assignment EECS 216 Winter 2008 Lab 2: Part II: In-Lab & Post-Lab Assignment c Kim Winick 2008 1 Background DIGITAL vs. ANALOG communication. Over the past fifty years, there has been a transition from analog to

More information

Preliminary simulation study of the front-end electronics for the central detector PMTs

Preliminary simulation study of the front-end electronics for the central detector PMTs Angra Neutrino Project AngraNote 1-27 (Draft) Preliminary simulation study of the front-end electronics for the central detector PMTs A. F. Barbosa Centro Brasileiro de Pesquisas Fsicas - CBPF, e-mail:

More information

GOVERNMENT OF KARNATAKA KARNATAKA STATE PRE-UNIVERSITY EDUCATION EXAMINATION BOARD II YEAR PUC EXAMINATION MARCH-2013 SCHEME OF VALUATION

GOVERNMENT OF KARNATAKA KARNATAKA STATE PRE-UNIVERSITY EDUCATION EXAMINATION BOARD II YEAR PUC EXAMINATION MARCH-2013 SCHEME OF VALUATION GOVERNMENT OF KARNATAKA KARNATAKA STATE PRE-UNIVERSITY EDUCATION EXAMINATION BOARD II YEAR PUC EXAMINATION MARCH-03 SCHEME OF VALUATION Subject Code: 0 Subject: PART - A 0. What does the arrow mark indicate

More information

ME 365 EXPERIMENT 7 SIGNAL CONDITIONING AND LOADING

ME 365 EXPERIMENT 7 SIGNAL CONDITIONING AND LOADING ME 365 EXPERIMENT 7 SIGNAL CONDITIONING AND LOADING Objectives: To familiarize the student with the concepts of signal conditioning. At the end of the lab, the student should be able to: Understand the

More information

DEPARTMENT OF ELECTRICAL ENGINEERING LAB WORK EE301 ELECTRONIC CIRCUITS

DEPARTMENT OF ELECTRICAL ENGINEERING LAB WORK EE301 ELECTRONIC CIRCUITS DEPARTMENT OF ELECTRICAL ENGINEERING LAB WORK EE301 ELECTRONIC CIRCUITS EXPERIMENT : 3 TITLE : Operational Amplifier (Op-Amp) OUTCOME : Upon completion of this unit, the student should be able to: 1. Gain

More information

Voltage-to-Frequency and Frequency-to-Voltage Converter ADVFC32

Voltage-to-Frequency and Frequency-to-Voltage Converter ADVFC32 a FEATURES High Linearity 0.01% max at 10 khz FS 0.05% max at 100 khz FS 0.2% max at 500 khz FS Output TTL/CMOS Compatible V/F or F/V Conversion 6 Decade Dynamic Range Voltage or Current Input Reliable

More information

The Operational Amplifier This lab is adapted from the Kwantlen Lab Manual

The Operational Amplifier This lab is adapted from the Kwantlen Lab Manual Name: Partner(s): Desk #: Date: Purpose The Operational Amplifier This lab is adapted from the Kwantlen Lab Manual The purpose of this lab is to examine the functions of operational amplifiers (op amps)

More information

HOME ASSIGNMENT. Figure.Q3

HOME ASSIGNMENT. Figure.Q3 HOME ASSIGNMENT 1. For the differential amplifier circuit shown below in figure.q1, let I=1 ma, V CC =5V, v CM = -2V, R C =3kΩ and β=100. Assume that the BJTs have v BE =0.7 V at i C =1 ma. Find the voltage

More information

Basic Operational Amplifier Circuits

Basic Operational Amplifier Circuits Basic Operational Amplifier Circuits Comparators A comparator is a specialized nonlinear op-amp circuit that compares two input voltages and produces an output state that indicates which one is greater.

More information

Four-Channel Sample-and-Hold Amplifier AD684

Four-Channel Sample-and-Hold Amplifier AD684 a FEATURES Four Matched Sample-and-Hold Amplifiers Independent Inputs, Outputs and Control Pins 500 ns Hold Mode Settling 1 s Maximum Acquisition Time to 0.01% Low Droop Rate: 0.01 V/ s Internal Hold Capacitors

More information

B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics

B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics B.E. SEMESTER III (ELECTRICAL) SUBJECT CODE: X30902 Subject Name: Analog & Digital Electronics Sr. No. Date TITLE To From Marks Sign 1 To verify the application of op-amp as an Inverting Amplifier 2 To

More information

VCE VET ELECTRONICS. Written examination. Friday 1 November 2002

VCE VET ELECTRONICS. Written examination. Friday 1 November 2002 Victorian Certificate of Education 2002 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Figures Words STUDENT NUMBER Letter VCE VET ELECTRONICS Written examination Friday 1 November 2002 Reading time: 3.00

More information

Control of Electrical Lights and Fans using TV Remote

Control of Electrical Lights and Fans using TV Remote EE 389 Electronic Design Lab -II, Project Report, EE Dept., IIT Bombay, October 2005 Control of Electrical Lights and Fans using TV Remote Group No. D10 Liji Jayaprakash (02d07021)

More information

ENGINEERING TRIPOS PART II A ELECTRICAL AND INFORMATION ENGINEERING TEACHING LABORATORY EXPERIMENT 3B2-B DIGITAL INTEGRATED CIRCUITS

ENGINEERING TRIPOS PART II A ELECTRICAL AND INFORMATION ENGINEERING TEACHING LABORATORY EXPERIMENT 3B2-B DIGITAL INTEGRATED CIRCUITS ENGINEERING TRIPOS PART II A ELECTRICAL AND INFORMATION ENGINEERING TEACHING LABORATORY EXPERIMENT 3B2-B DIGITAL INTEGRATED CIRCUITS OBJECTIVES : 1. To interpret data sheets supplied by the manufacturers

More information

Lab 3 Final report: Embedded Systems Digital Potentiometer Subsystem TEAM: RAR

Lab 3 Final report: Embedded Systems Digital Potentiometer Subsystem TEAM: RAR Lab 3 Final report: Embedded Systems Digital Potentiometer Subsystem TEAM: RAR EE 300W, Section 6 Professor Tim Wheeler Rui Xia, Yuanpeng Liao and Ashwin Ramnarayanan Table of Contents Introduction...2

More information

Project 1 Final System Design and Performance Report. Class D Amplifier

Project 1 Final System Design and Performance Report. Class D Amplifier Taylor Murphy & Remo Panella EE 333 12/12/18 Project 1 Final System Design and Performance Report Class D Amplifier Intro For this project, we designed a class D amplifier circuit. Class D amplifiers work

More information

Digital-to-Analog Converter. Lab 3 Final Report

Digital-to-Analog Converter. Lab 3 Final Report Digital-to-Analog Converter Lab 3 Final Report The Ion Cannons: Shrinand Aggarwal Cameron Francis Nicholas Polito Section 2 May 1, 2017 1 Table of Contents Introduction..3 Rationale..3 Theory of Operation.3

More information

Concepts to be Covered

Concepts to be Covered Introductory Medical Device Prototyping Analog Circuits Part 2 Semiconductors, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Concepts to be Covered Semiconductors

More information

Laboratory 9. Required Components: Objectives. Optional Components: Operational Amplifier Circuits (modified from lab text by Alciatore)

Laboratory 9. Required Components: Objectives. Optional Components: Operational Amplifier Circuits (modified from lab text by Alciatore) Laboratory 9 Operational Amplifier Circuits (modified from lab text by Alciatore) Required Components: 1x 741 op-amp 2x 1k resistors 4x 10k resistors 1x l00k resistor 1x 0.1F capacitor Optional Components:

More information

Analog Effect Pedals. EE333 Project 1. Francisco Alegria and Josh Rolles

Analog Effect Pedals. EE333 Project 1. Francisco Alegria and Josh Rolles Analog Effect Pedals EE333 Project 1 Francisco Alegria and Josh Rolles Introduction For the first project, we ve chosen to design two analog guitar effect pedals. This report will discuss the schematic

More information

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec

INTEGRATED CIRCUITS. AN109 Microprocessor-compatible DACs Dec INTEGRATED CIRCUITS 1988 Dec DAC products are designed to convert a digital code to an analog signal. Since a common source of digital signals is the data bus of a microprocessor, DAC circuits that are

More information

4. Digital Measurement of Electrical Quantities

4. Digital Measurement of Electrical Quantities 4.1. Concept of Digital Systems Concept A digital system is a combination of devices designed for manipulating physical quantities or information represented in digital from, i.e. they can take only discrete

More information

Chapter 12: Electronic Circuit Simulation and Layout Software

Chapter 12: Electronic Circuit Simulation and Layout Software Chapter 12: Electronic Circuit Simulation and Layout Software In this chapter, we introduce the use of analog circuit simulation software and circuit layout software. I. Introduction So far we have designed

More information

Başkent University Department of Electrical and Electronics Engineering EEM 311 Electronics II Experiment 8 OPERATIONAL AMPLIFIERS

Başkent University Department of Electrical and Electronics Engineering EEM 311 Electronics II Experiment 8 OPERATIONAL AMPLIFIERS Başkent University Department of Electrical and Electronics Engineering EEM 311 Electronics II Experiment 8 Objectives: OPERATIONAL AMPLIFIERS 1.To demonstrate an inverting operational amplifier circuit.

More information

Physics 120 Lab 6 (2018) - Field Effect Transistors: Ohmic Region

Physics 120 Lab 6 (2018) - Field Effect Transistors: Ohmic Region Physics 120 Lab 6 (2018) - Field Effect Transistors: Ohmic Region The field effect transistor (FET) is a three-terminal device can be used in two extreme ways as an active element in a circuit. One is

More information

EXPERIMENT 2.2 NON-LINEAR OP-AMP CIRCUITS

EXPERIMENT 2.2 NON-LINEAR OP-AMP CIRCUITS 2.16 EXPERIMENT 2.2 NONLINEAR OPAMP CIRCUITS 2.2.1 OBJECTIVE a. To study the operation of 741 opamp as comparator. b. To study the operation of active diode circuits (precisions circuits) using opamps,

More information

OPERATIONAL AMPLIFIER PREPARED BY, PROF. CHIRAG H. RAVAL ASSISTANT PROFESSOR NIRMA UNIVRSITY

OPERATIONAL AMPLIFIER PREPARED BY, PROF. CHIRAG H. RAVAL ASSISTANT PROFESSOR NIRMA UNIVRSITY OPERATIONAL AMPLIFIER PREPARED BY, PROF. CHIRAG H. RAVAL ASSISTANT PROFESSOR NIRMA UNIVRSITY INTRODUCTION Op-Amp means Operational Amplifier. Operational stands for mathematical operation like addition,

More information

Dev Bhoomi Institute Of Technology Department of Electronics and Communication Engineering PRACTICAL INSTRUCTION SHEET REV. NO. : REV.

Dev Bhoomi Institute Of Technology Department of Electronics and Communication Engineering PRACTICAL INSTRUCTION SHEET REV. NO. : REV. Dev Bhoomi Institute Of Technology Department of Electronics and Communication Engineering PRACTICAL INSTRUCTION SHEET LABORATORY MANUAL EXPERIMENT NO. ISSUE NO. : ISSUE DATE: July 200 REV. NO. : REV.

More information

1. LINEAR WAVE SHAPING

1. LINEAR WAVE SHAPING Aim: 1. LINEAR WAVE SHAPING i) To design a low pass RC circuit for the given cutoff frequency and obtain its frequency response. ii) To observe the response of the designed low pass RC circuit for the

More information

Operational Amplifiers

Operational Amplifiers Operational Amplifiers Table of contents 1. Design 1.1. The Differential Amplifier 1.2. Level Shifter 1.3. Power Amplifier 2. Characteristics 3. The Opamp without NFB 4. Linear Amplifiers 4.1. The Non-Inverting

More information

UNIVERSITY OF PENNSYLVANIA EE 206

UNIVERSITY OF PENNSYLVANIA EE 206 UNIVERSITY OF PENNSYLVANIA EE 206 TRANSISTOR BIASING CIRCUITS Introduction: One of the most critical considerations in the design of transistor amplifier stages is the ability of the circuit to maintain

More information

Introduction. Objectives

Introduction. Objectives Experiment 8 Phase ensitive etection Objectives 1. Construct and observe the operation of a phase sensitive detector to extract a signal buried in noise. 2. Observe the operation of a commercial lock-in

More information

FREQUENCY RESPONSE OF COMMON COLLECTOR AMPLIFIER

FREQUENCY RESPONSE OF COMMON COLLECTOR AMPLIFIER Exp. No #5 FREQUENCY RESPONSE OF COMMON COLLECTOR AMPLIFIER Date: OBJECTIVE The purpose of the experiment is to analyze and plot the frequency response of a common collector amplifier. EQUIPMENT AND COMPONENTS

More information

Chapter 9: Operational Amplifiers

Chapter 9: Operational Amplifiers Chapter 9: Operational Amplifiers The Operational Amplifier (or op-amp) is the ideal, simple amplifier. It is an integrated circuit (IC). An IC contains many discrete components (resistors, capacitors,

More information

CONTENTS Sl. No. Experiment Page No

CONTENTS Sl. No. Experiment Page No CONTENTS Sl. No. Experiment Page No 1a Given a 4-variable logic expression, simplify it using Entered Variable Map and realize the simplified logic expression using 8:1 multiplexer IC. 2a 3a 4a 5a 6a 1b

More information

RF Generators. Requirements:

RF Generators. Requirements: Requirements: RF Generators to deliver a requested forward power (adjustable) level into an RF system power level is adjusted manually, or power level is controlled by a digital or analog input signal

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Linear Integrated Circuits Applications

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Linear Integrated Circuits Applications About the Tutorial Linear Integrated Circuits are solid state analog devices that can operate over a continuous range of input signals. Theoretically, they are characterized by an infinite number of operating

More information

Screening Audiometer

Screening Audiometer EE89 Electronic Design Lab (EDL) Report, EE Dept, IIT Bombay, December, 00 Screening Audiometer Group No. D0 Mahim Agrawal (0D000) < mahim@ee.iitb.ac.in > Ashok Kumar Bhardwaj (0D00) < ashokkb@ee.iitb.ac.in

More information

EE 233 Circuit Theory Lab 3: First-Order Filters

EE 233 Circuit Theory Lab 3: First-Order Filters EE 233 Circuit Theory Lab 3: First-Order Filters Table of Contents 1 Introduction... 1 2 Precautions... 1 3 Prelab Exercises... 2 3.1 Inverting Amplifier... 3 3.2 Non-Inverting Amplifier... 4 3.3 Integrating

More information

multivibrator; Introduction to silicon-controlled rectifiers (SCRs).

multivibrator; Introduction to silicon-controlled rectifiers (SCRs). Appendix The experiments of which details are given in this book are based largely on a set of 'modules' specially designed by Dr. K.J. Close. These 'modules' are now made and marketed by Irwin-Desman

More information

EL4089 and EL4390 DC Restored Video Amplifier

EL4089 and EL4390 DC Restored Video Amplifier EL4089 and EL4390 DC Restored Video Amplifier Application Note AN1089.1 Authors: John Lidgey, Chris Toumazou and Mike Wong The EL4089 is a complete monolithic video amplifier subsystem in a single 8-pin

More information

Lab 2: Common Base Common Collector Design Exercise

Lab 2: Common Base Common Collector Design Exercise CSUS EEE 109 Lab - Section 01 Lab 2: Common Base Common Collector Design Exercise Author: Bogdan Pishtoy / Lab Partner: Roman Vermenchuk Lab Report due March 26 th Lab Instructor: Dr. Kevin Geoghegan 2016-03-25

More information

University of Michigan EECS 311: Electronic Circuits Fall 2009 LAB 2 NON IDEAL OPAMPS

University of Michigan EECS 311: Electronic Circuits Fall 2009 LAB 2 NON IDEAL OPAMPS University of Michigan EECS 311: Electronic Circuits Fall 2009 LAB 2 NON IDEAL OPAMPS Issued 10/5/2008 Pre Lab Completed 10/12/2008 Lab Due in Lecture 10/21/2008 Introduction In this lab you will characterize

More information

Embedded Test System. Design and Implementation of Digital to Analog Converter. TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao

Embedded Test System. Design and Implementation of Digital to Analog Converter. TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao Embedded Test System Design and Implementation of Digital to Analog Converter TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao EE 300W Section 1 Spring 2015 Big Hero 3 DAC 2 INTRODUCTION (KS)

More information

OPERATIONAL AMPLIFIERS (OP-AMPS) II

OPERATIONAL AMPLIFIERS (OP-AMPS) II OPERATIONAL AMPLIFIERS (OP-AMPS) II LAB 5 INTRO: INTRODUCTION TO INVERTING AMPLIFIERS AND OTHER OP-AMP CIRCUITS GOALS In this lab, you will characterize the gain and frequency dependence of inverting op-amp

More information

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved.

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved. Lab 7: The Op Amp Laboratory Objectives: 1) To introduce the operational amplifier or Op Amp 2) To learn the non-inverting mode 3) To learn the inverting mode 4) To learn the differential mode Before You

More information

ETEK TECHNOLOGY CO., LTD.

ETEK TECHNOLOGY CO., LTD. Trainer Model: ETEK DCS-6000-07 FSK Modulator ETEK TECHNOLOGY CO., LTD. E-mail: etek21@ms59.hinet.net mlher@etek21.com.tw http: // www.etek21.com.tw Digital Communication Systems (ETEK DCS-6000) 13-1:

More information

Maintenance Manual ERICSSONZ LBI-31552E

Maintenance Manual ERICSSONZ LBI-31552E E Maintenance Manual TONE REMOTE CONTROL BOARD 19A704686P4 (1-Frequency Transmit Receive with Channel Guard) 19A704686P6 (4-Frequency Transmit Receive with Channel Guard) ERICSSONZ Ericsson Inc. Private

More information

ericssonz LBI-38640E MAINTENANCE MANUAL FOR VHF TRANSMITTER SYNTHESIZER MODULE 19D902780G1 DESCRIPTION

ericssonz LBI-38640E MAINTENANCE MANUAL FOR VHF TRANSMITTER SYNTHESIZER MODULE 19D902780G1 DESCRIPTION MAINTENANCE MANUAL FOR VHF TRANSMITTER SYNTHESIZER MODULE 19D902780G1 TABLE OF CONTENTS Page DESCRIPTION........................................... Front Cover GENERAL SPECIFICATIONS...................................

More information

Supply Voltage Supervisor TL77xx Series. Author: Eilhard Haseloff

Supply Voltage Supervisor TL77xx Series. Author: Eilhard Haseloff Supply Voltage Supervisor TL77xx Series Author: Eilhard Haseloff Literature Number: SLVAE04 March 1997 i IMPORTANT NOTICE Texas Instruments (TI) reserves the right to make changes to its products or to

More information

PRACTICAL ELECTRONICS TROUBLESHOOTING

PRACTICAL ELECTRONICS TROUBLESHOOTING PRACTICAL ELECTRONICS TROUBLESHOOTING Second Edition James Perozzo 4 k 0 DELMAR PUBLISHERS INC. Contents Preface/xiii chapter one Some Necessary Basics Chapter Overview/1 Necessary Background/1 A Few Definitions/6

More information

LM1044 Analog Video Switch

LM1044 Analog Video Switch LM1044 Analog Video Switch General Description Primarily intended for but not restricted to the switching of video signals the LM1044 is a monolithic DC controlled analog switch with buffered outputs allowing

More information

CENG4480 Embedded System Development and Applications The Chinese University of Hong Kong Laboratory 1: Op Amp (I)

CENG4480 Embedded System Development and Applications The Chinese University of Hong Kong Laboratory 1: Op Amp (I) CENG4480 Embedded System Development and Applications The Chinese University of Hong Kong Laboratory 1: Op Amp (I) Student ID: 2018 Fall 1 Introduction This lab session introduces some very basic concepts

More information

ML4818 Phase Modulation/Soft Switching Controller

ML4818 Phase Modulation/Soft Switching Controller Phase Modulation/Soft Switching Controller www.fairchildsemi.com Features Full bridge phase modulation zero voltage switching circuit with programmable ZV transition times Constant frequency operation

More information

781/ /

781/ / 781/329-47 781/461-3113 SPECIFICATIONS DC SPECIFICATIONS J Parameter Min Typ Max Units SAMPLING CHARACTERISTICS Acquisition Time 5 V Step to.1% 25 375 ns 5 V Step to.1% 2 35 ns Small Signal Bandwidth 15

More information

Testing Power Factor Correction Circuits For Stability

Testing Power Factor Correction Circuits For Stability Keywords Venable, frequency response analyzer, impedance, injection transformer, oscillator, feedback loop, Bode Plot, power supply design, switching power supply, PFC, boost converter, flyback converter,

More information

Capacitive Touch Sensing Tone Generator. Corey Cleveland and Eric Ponce

Capacitive Touch Sensing Tone Generator. Corey Cleveland and Eric Ponce Capacitive Touch Sensing Tone Generator Corey Cleveland and Eric Ponce Table of Contents Introduction Capacitive Sensing Overview Reference Oscillator Capacitive Grid Phase Detector Signal Transformer

More information

the reactance of the capacitor, 1/2πfC, is equal to the resistance at a frequency of 4 to 5 khz.

the reactance of the capacitor, 1/2πfC, is equal to the resistance at a frequency of 4 to 5 khz. EXPERIMENT 12 INTRODUCTION TO PSPICE AND AC VOLTAGE DIVIDERS OBJECTIVE To gain familiarity with PSPICE, and to review in greater detail the ac voltage dividers studied in Experiment 14. PROCEDURE 1) Connect

More information

An Analog Phase-Locked Loop

An Analog Phase-Locked Loop 1 An Analog Phase-Locked Loop Greg Flewelling ABSTRACT This report discusses the design, simulation, and layout of an Analog Phase-Locked Loop (APLL). The circuit consists of five major parts: A differential

More information

BME/ISE 3512 Bioelectronics. Laboratory Five - Operational Amplifiers

BME/ISE 3512 Bioelectronics. Laboratory Five - Operational Amplifiers BME/ISE 3512 Bioelectronics Laboratory Five - Operational Amplifiers Learning Objectives: Be familiar with the operation of a basic op-amp circuit. Be familiar with the characteristics of both ideal and

More information

Document Name: Electronic Circuits Lab. Facebook: Twitter:

Document Name: Electronic Circuits Lab.  Facebook:  Twitter: Document Name: Electronic Circuits Lab www.vidyathiplus.in Facebook: www.facebook.com/vidyarthiplus Twitter: www.twitter.com/vidyarthiplus Copyright 2011-2015 Vidyarthiplus.in (VP Group) Page 1 CIRCUIT

More information

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver LABORATORY EXPERIMENT Infrared Transmitter/Receiver (Note to Teaching Assistant: The week before this experiment is performed, place students into groups of two and assign each group a specific frequency

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong.

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong. Department of Electrical Engineering Lecture 10 Analogue Interfacing 1 In this Lecture. Interface 8051 with the following Input/Output Devices Transducer/Sensors Analogue-to-Digital Conversion (ADC) Digital-to-Analogue

More information

ELT 215 Operational Amplifiers (LECTURE) Chapter 5

ELT 215 Operational Amplifiers (LECTURE) Chapter 5 CHAPTER 5 Nonlinear Signal Processing Circuits INTRODUCTION ELT 215 Operational Amplifiers (LECTURE) In this chapter, we shall present several nonlinear circuits using op-amps, which include those situations

More information

). The THRESHOLD works in exactly the opposite way; whenever the THRESHOLD input is above 2/3V CC

). The THRESHOLD works in exactly the opposite way; whenever the THRESHOLD input is above 2/3V CC ENGR 210 Lab 8 RC Oscillators and Measurements Purpose: In the previous lab you measured the exponential response of RC circuits. Typically, the exponential time response of a circuit becomes important

More information