Build an Earth s Field Magnetic Observatory!

Size: px
Start display at page:

Download "Build an Earth s Field Magnetic Observatory!"

Transcription

1 P a g e 1 Build an Earth s Field Magnetic Observatory! PART VII, Software Most of the FDM magnetometer signal processing, as well as the display functions are performed by a LabView Windows executable program. Our present plan is to distribute the compiled version of the LabView program as a Windows executable, so that builders do not need to own a LabView development system to build and operate our FDM magnetometer kit. 1 Our LabView program controls a NI USB 6008 (12 bit ADC and digital I/O module) 2. The USB 6008 digital outputs control one of our two hardware modules, the switch control (SWCTRL) module. Each measurement cycle, the LabView program calls a frequency estimator, the FDM Windows executable. 3 The FDM executable is a very sophisticated, yet easy to use ultra high resolution frequency estimator. Our customized FDM executable reads as input, digitized data in the time domain (the precession signal), and outputs a single frequency with milli Hz resolution (the Larmor frequency). Professor Mandelshtam of UC Irvine most generously provided FDM source code from his landmark work 4 in mathematical methods related to NMR spectroscopy for the FDM magnetometer project. Our FDM windows executable was compiled from a modified version of the professor s FDM FORTRAN source code. 5 MEASUREMENT FLOW CHART The measurement flow chart below shows the operation of the FDM magnetometer software. With the exception of the FDM executable, the blocks represent functions performed by the LabView program. The time line, as described in more detail below, provides the timing for both the USB-6008 and SWCTRL modules.

2 P a g e 2 A sample display screen from the current version of our working FDM proton precession magnetometer prototype.

3 P a g e 3

4 P a g e 4 The digitizer digitizes the proton precession waveform, also known as the free induction decay (FID) signal. The digitizer is software triggered at the end of the running of the time line. The LabView program reads the signal sampled points from the digitizer and saves the integer values to a signal data text file. The LabView program also uses this one dimensional (vector) 1D data array for further processing and to generate the waveform displays. The precession waveform envelope is computed and displayed by the LabView program and the raw signal modified by an exponential window (apodization) and both waveforms are displayed on the front panel. Each measurement cycle, the LabView program calls the FDM executable, which reads the signal data file and returns a single fundamental frequency, a figure of merit (FOM), and a narrow band signal to noise ratio (NB S/N). These values are saved to the field_data text file. The auto-retry process (within the LabView program) evaluates the returned FDM data to test if it is within acceptable limits. If within limits, on the following measurement cycle after a measurement delay of about 2 minutes, the values are added to a plot data array and also plotted to the display graph and written to a field_data_plot text file. If the most recent acquired data is out of limits, the auto-retry process repeats the measurement at a relatively fast rated (e.g. every 8 seconds), until an acceptable measurement is achieved. revised to here 3/20/11 INITIALIZATION The following section of the LabView program is for program initialization. Initialization (not shown in the measurement flow diagram above) precedes the running of the time line. The two flat sequence structures at the left open the field_data.txt and field_data_plot.txt files. The green wire from both of these boxes carries the file name reference number (refnum) into the main program while loop. The flat sequence structure at the bottom of the initialization drawing reads a user edited file FDM_FRNG which allows the user to set the FDM frequency range. This frequency range should be a 300 Hz range roughly centered at the local expected fundamental Larmor frequency. It can be slightly skewed should there be an especially problematic interfering spur at the low or high edge of the frequency range of interest. For example, our local Larmor frequency is presently around 2287 Hz and we are using a range entered in khz in the FDM_FRNG.txt file as: 2.1d0 2.4d0 (2100 Hz to 2400 Hz). In our experience, for reliable operation, once robust operating parameters are found, it is best to leave them set as is, rather than to continue to attempt to tune them.

5 P a g e 5 Thus, some parameters, while user settable, once set, are best left alone as a fixed file entry (that is why they are not an active front panel control).

6 P a g e 6

7 P a g e 7 The multiplication factor above the flat sequence structure at the bottom of the initialization drawing is the correction for the actual measured sample rate of any given USB 6008 digitizer (due to the fixed clock manufacturing scale error). We have found the USB 6008 clock to be stable with time and temperature to better than a ppm, however, for best reporting of the Larmor frequency, where an experimenter can measure the scale error of the clock frequency (as with a calibrated signal generator, or synthesizer using a GPS disciplined oscillator frequency reference) the scale error should be entered. This sample rate scale factor is a work in progress and needs to be moved either to a readable file or a front panel user entry. Our USB 6008 sample frequency was found to be low by a scale factor of about 3.54x10-5 (i.e. when we software set the USB 6008 sample rate to 10 khz, it is actually 10, Hz). The corrected sample rate is sent on to later routines that take actual sample rate as an input. The time functions above the sample rate correction provides actual time in an initialized time array to the program while loop. Also, the number of samples to be digitized by the USB 6008 and then used by the following routines is defined here as 11,000 points (another user settable factor can be added later). MEASUREMENT TIME LINE The running of the measurement time line refers to the sequenced operation of the zero-current hybrid FET circuit of the switch control module (SWCTRL). At present, the time delay values for each sequence block are fixed programmed, however some or all of these values could also be converted over to user settable values for the final distribution software. In our present design, the small signal relay is de-energized at the beginning of the measurement time line. A delay of 200 milliseconds ensures that the relay contacts are in a stable normally opened position (relay coil deenergized). Since the polarization circuit for the powered coil (of the counterwound coil pair) uses the relay s normally open contacts, the powered coil can now be energized by turning the power FET on. Following the polarization cycle (typically 2 seconds), the power FET is turned off. Once the power FET is turned off, the powered coil discharges via the dump resistor on the SWCTRL board, and the other resistances in the system, including the coil and cable resistance. There can be some oscillatory nature in the form of an RLC discharge since although the resonating capacitance is not in the circuit during the polarization cycle, there can be significant capacitance

8 P a g e 8 attributed both to the powered coil inter winding capacitance as well as the capacitance of the sensor cable. By the time the coil discharge delay time of 20 milliseconds has passed, the powered coil has been completely discharged. With zero coil current, the relay coil can now be re-energized. Notice that the relay contacts never change state while there is coil current flowing for zero-current relay switching. Zero-current relay switching is very important to provide a very long relay life, not limited by electrical contact wear (pitting due to arcing, etc.) and limited only by the mechanical life of the moving contacts as related to metal fatigue. In the normally closed position, the relay configures the counter-wound coiled pair as a center-tapped coil (analogous to a center-tapped transformer secondary winding). The center-tapped coil pair is configured in parallel with the resonating capacitor bank and coupled to the input of the NBLNA differential input.

9 P a g e 9

10 P a g e 10 Now turning to the measurement time line section of the LabView program below, it can be seen that for convenience, we used higher level LabView Express vi s for both USB 6008 writes and reads as well as for the timers. In the future we might break one or more of these Express vi s into a more basic LabView G code for efficiency. However, early compiled versions have performed well with no noticeable delays, therefore conversion of the Express vi s to raw G code might not be needed. The Boolean F to the Relay OPEN Express vi sends a low via a USB 6008 digital output (Port 0, line 6 (P0.6)) to the input relay 2N3904 transistor causing the relay on the SWCTRL board to de-energize. The Wait for Relay to Close Express time delay vi provides the first 200 ms delay. The Polarize ON Express vi sets Port 0, line 7 (P0.7) to low (Boolean F ) which turns ON the power FET via an inverting 2N3905 (or 2N3906) PNP inverter stage on the SWCTRL board. The ALIGN PROTONS time delay Express vi sets the polarization time (typically 2 seconds, probably later user settable). Following the ALIGN PROTONS time delay, the Polarize OFF Express vi sets Port 0, line 7 (P0.7) to high (Boolean T ) which turns the power FET OFF. The Wait for Discharge of Sensor Coils time delay vi pauses while the powered coil (of the counter-wound coil pair) completely discharges. For those less familiar with inductive circuits, note that a coil is charged with a current, just as the more familiar situation where a capacitor is charged with a voltage. Following complete discharge of the powered coil, the relay coil is re-energized to close the relay (contacts in the normally closed position) by the Relay Close Express vi setting the USB 6008 digital output (Port 0, line 6 (P0.6)) sending a high to the input relay 2N3904 transistor causing the relay on the SWCTRL board to energize. Note that when Port 0, line 6 (P0.6) is set to high, current flows to the 2N3904 relay control transistor base via a 4.7 kilo ohm pull up resistor within the USB Finally, following a Pause Before Observing Exponential Decay of Proton Spin Alignment time delay vi, the DAQ assistant Express vi commands the USB to digitize the precession (free induction decay (FID)) signal, presently for 11,000 samples at 10 khz sample rate for a measurement window of 1.1 seconds.

11 P a g e 11

12 P a g e 12 FID SIGNAL PROCESSING The digitized free induction decay (FID) signal (the precession signal) is processed separately in two paths. One path generates the diagnostic displays of the precession waveform filtered envelope and the precession waveform with apodization (the FID multiplied by an exponential window). Another path builds a data input file for the filter diagonalization method (FDM) executable and conveys the output of the FDM procedure to a standard output which is then read by the LabView vi as it resumes execution and further processes the FDM results. Note that using FDM, generally more points are better. There is no need to use 2 N points as with some Fourier based frequency estimators. Also windowing is not used to control leakage as in Fourier methods. We chose to multiply our FID window by an exponential waveform for several reasons. First, the exponential window causes additional emphasis on the earlier part of the FID waveform having a better signal to noise ratio than the latter portion of the partially digitized (first 1.1 seconds) FID waveform. Also, since FDM solves only for a decaying waveform, the exponential window allows for use of a continuous wave (CW, constant amplitude) calibration signal. In some very unusual circumstances, such as in very high noise areas, there might be some advantage to reducing or eliminating apodization. We begin a more detailed description of FID signal processing with the routine that provides the precession waveform filtered envelope display on the application display screen. The purpose of this signal processing is to roughly emulate the combination of a frequency selective voltmeter and an oscilloscope display of AC amplitude over a narrow frequency band about the fundamental frequency. To create this display, first take the absolute value of all of the digitized data. Then in a moving window process, the RMS voltages of each subset of points (the moving window) are calculated, and finally we apply a low pass filter to produce the envelope display. The precession waveform filtered envelope display can be helpful for tuning the resonating capacitor bank, as well as for monitoring the health of the instrument and evaluating interfering signals that can cause the envelope to become distorted.

13 P a g e 13

14 P a g e 14 The section at the top of the LabView vi below shows the precession waveform filtered envelope display routine. The first FOR loop creates an array of the absolute value of the signal waveform digitized data. The second FOR loop calculates the RMS value for a moving window (here 600 points wide). Finally, a low pass FIR filter provides the final envelope display. FID SIGNAL FILE (READ BY THE FDM EXECUTABLE) Another branch of the overall vi, the lower section of the vi page, shows the creation of the signal text file which is read each measurement cycle by the FDM executable. The present offset integer format of the signal file is as follows with zero set at 8192: d0 2.4d (11,000 points total) The first line has the number of samples followed by the exact (actual) sample period (1/f sample ). The third line (second line blank) is the FDM frequency range as provided in the user file (a user edited file FDM_FRNG, as described above). This signal text file is then written as the file signal (no file extension) and the file is closed. The signal text file is written or overwritten every measurement cycle.

15 P a g e 15

16 P a g e 16 Referring to the LabView drawing below, the LabView call to the FDM executable is now described in more detail. In the first frame of the flat sequence structure (lower left), the LabView System Executable (System Exec) vi calls the FDM executable. The FDM executable reads the signal file written and described above. The FDM executable outputs as standard output an ASCII string including the FDM precession frequency, FDM figure of merit (FOM), FDM narrow band signal to noise ratio (S/N), and FDM amplitude. The LabView System Exec vi accepts the ASCII string into the overall FDM magnetometer vi and passes it to the second frame in the flat sequence structure, which parses the FDM output variables and converts them to real numbers.

17 P a g e 17

18 P a g e 18 AUTO-RETRY The Boolean logic to the right of the second frame in the flat sequence structure performs the auto-retry operation as shown in the Auto-Retry block diagram below. The concept behind auto-retry is that in addition to computing the fundamental frequency of the FID signal, FDM also provides an estimate of the quality of each measurement. The figure or merit (FOM) provides a rough estimate of the confidence of the measurement to a desired resolution. Our FDM FOM cutoff of 2x10-6 corresponds roughly to 0.1 nt. Since a passing vehicle causes a spread in the Larmor frequency over a digitization interval, the FOM filter largely rejects measurements made in the presence of nearby moving vehicles. (Unfortunately once the vehicle is stopped, the FOM filter can no longer filter the vehicle presence and then there is a corresponding shift in the magnetic field reflecting the new actual total field F scalar at the counter-wound coil sensor pair, as caused by the vehicle presence.) The S/N cutoff value of a S/N ratio of 5 db or better, helps to filter out occasional in band noise sources, since the presence of a large in band interfering signal is generally accompanied by a family of in band signal spurs. Since a properly installed and operating system generates a relatively high amplitude FID signal, the 100 mv amplitude threshold further filters out failed FID signal acquisitions, whatever the cause. If a given measurement survives the auto-retry evaluation process, the new data is added to the current measurement array and the normal measurement cycle timer is started (typically 2 minutes). On the successive measurement, the new data is added to the field_data_plot file as well as plotted on the FDM magnetometer front panel magnetogram. This one measurement cycle delay allows for some additional post processing (not yet implemented). If a given measurement does not survive the auto-retry evaluation, the measurement cycle is immediately restarted. Note that with the ultra high resolution capability of FDM, there is no averaging needed nor used. Once a given single measurement passes the autoretry cutoff values, it is the final measurement reported by the instrument. Depending on EMI/RFI local conditions and artificial changes in the local total magnetic F scalar (e.g. nearby vehicle traffic), there can be on average fewer or greater auto-retries. We find in our local home office installation that over 24 hour period, very roughly, 40% or our measurements result in auto-retry operations.

19 P a g e 19

20 P a g e 20

21 P a g e 21 Peak Envelope Voltage (PEV) Servo The peak amplitude of the exponentially decaying precession signal is a strong function of outdoor air temperature. This is because tau 1 of the working NMR fluid changes with temperature. For example, when tau1 is relatively small at lower temperatures, a higher percentage of the proton spins are aligned in a shorter time. The result is a widely varying peak envelope voltage over temperature for a fixed polarization time. One way to manage the peak envelope voltage within a desired range is to manually adjust the NBLNA gain to give a desired peak voltage at some temperature. When the envelope becomes too small or too large at other temperatures, the gain can be further adjusted. However, to avoid the need for periodic gain adjustments, we implemented a negative feedback loop (a servo ) to continuously hold a relatively constant peak envelope voltage. Instead of automatically adjusting the NBLNA gain, we programmatically adjust the polarize time. For a lower amplitude free induction decay (FID) signal (the precession waveform), we set a shorter polarization time. For a higher amplitude FID, we use a longer polarization time. The sensitivity of the amount of change in FID peak amplitude to change in polarization time is non-linear. The curve is non-linear in a way analogous to charging a capacitor in an R-C circuit. Thus, there is more sensitivity for changes in shorter polarization times on the order of one time constant or the tau 1 of the working NMR fluid (at that temperature). Beyond several tau 1, there is relatively little increase in FID peak amplitude for longer polarization times. For this reason, we set an upper limit at about 3.5 seconds, which is generally below 4 tau 1. Normal operation should be kept below about 3 seconds. The peak envelope voltage (PEV) servo loop uses a moving average of N past measurements of the filtered envelope maximum voltage as a feedback sensed or measured parameter. The control variable is the polarization time. In the Labview block diagram, on the left (early in time), we enter the PEV servo with the array of past filtered envelope maximum voltage values and the present polarization time (already used earlier in the present measurement cycle). N points (the number for the moving average) are extracted and the mean value of the N points is calculated. Until the first valid moving average, the loop uses a fixed polarization time. After N points have been measured and the first moving average value is valid, the loop goes into operation. The difference of the set PEV value and the present moving average value is multiplied by -0.1 and a loop gain value

22 P a g e 22 (typically 5). That value is subtracted from the present polarization time to complete the loop calculation. The resulting computed polarization time will be used at the beginning of the following measurement cycle as the polarization time. Hard limiting clamps the computed value between 0.5 and 3.5 seconds. If the PEV servo operates at either of these clamped values, the loop has failed in an open-loop mode. The peak envelope voltage and the computed polarization time are recorded each measurement cycle to the data text files. The blue curve is a plot of 640 points of peak envelope voltages. The red curve is a plot of the computed polarization times. The red curve generally follows the temperature of the working NMR fluid. With the PVC coil form, plastic sensor coil container, and plastic rain cover, solar radiation as well as outside air temperature all drive the temperature of the working NMR fluid. With only modest optimization of loop parameters (e.g. number of moving averaged points, and loop gain), the FID peak envelope voltage is generally held to +/- 0.1 Volt.

23 P a g e 23 ALTERNATIVE SOFTWARE AND ADC/DIGITAL I/O MODULES We acknowledge that some experimenters might prefer to write the software application in frameworks other than National Instrument s LabView and/or use other digitizer and I/O modules. We believe that our hardware kit (which does not include the USB 6008 module) will be amenable to alternate software development approaches. Once a suitable sensor is in operation (generally a counter-wound sensor coil pair as described in our Part IV article), our hardware modules provide a standard analog precession signal (the free induction (FID)) exponentially decaying waveform. Therefore, any suitable signal procession system can be used with our hardware kit. Of course, experimenters using alternative software approaches will need to provide appropriate system timing as described above. 1 Using National Instruments Application Builder The FDM frequency estimator is a windows executable which performs the filter diagonalization method (FDM). 4 Filter Diagonalization Method "FDM" (harmonic inversion), based on: Vladimir A. Mandelshtam, Howard S. Taylor, Harmonic inversion of time signals and its applications, Journal of Chemical Physics (1997), Volume 107, Issue 17, 1997, Pages We plan to share our vi source code for those who have access to a LabView development system, the compiled LabView executable, and the FDM executable. However, since we do not own rights to the FDM source code, at this time we are not able to share the FDM FORTRAN source code. Our software runs on the Microsoft Windows operating system. All of our recent testing was done using Windows 7. Our understanding is that an alternative FDM implementation in LINUX is available for experimenters wanting to use FDM signal processing on other platforms (Google MIT harminv).

EKT 314/4 LABORATORIES SHEET

EKT 314/4 LABORATORIES SHEET EKT 314/4 LABORATORIES SHEET WEEK DAY HOUR 4 1 2 PREPARED BY: EN. MUHAMAD ASMI BIN ROMLI EN. MOHD FISOL BIN OSMAN JULY 2009 Creating a Typical Measurement Application 5 This chapter introduces you to common

More information

LV-Link 3.0 Software Interface for LabVIEW

LV-Link 3.0 Software Interface for LabVIEW LV-Link 3.0 Software Interface for LabVIEW LV-Link Software Interface for LabVIEW LV-Link is a library of VIs (Virtual Instruments) that enable LabVIEW programmers to access the data acquisition features

More information

ET1210: Module 5 Inductance and Resonance

ET1210: Module 5 Inductance and Resonance Part 1 Inductors Theory: When current flows through a coil of wire, a magnetic field is created around the wire. This electromagnetic field accompanies any moving electric charge and is proportional to

More information

An induced emf is the negative of a changing magnetic field. Similarly, a self-induced emf would be found by

An induced emf is the negative of a changing magnetic field. Similarly, a self-induced emf would be found by This is a study guide for Exam 4. You are expected to understand and be able to answer mathematical questions on the following topics. Chapter 32 Self-Induction and Induction While a battery creates an

More information

University of Jordan School of Engineering Electrical Engineering Department. EE 219 Electrical Circuits Lab

University of Jordan School of Engineering Electrical Engineering Department. EE 219 Electrical Circuits Lab University of Jordan School of Engineering Electrical Engineering Department EE 219 Electrical Circuits Lab EXPERIMENT 4 TRANSIENT ANALYSIS Prepared by: Dr. Mohammed Hawa EXPERIMENT 4 TRANSIENT ANALYSIS

More information

Measurement and Analysis for Switchmode Power Design

Measurement and Analysis for Switchmode Power Design Measurement and Analysis for Switchmode Power Design Switched Mode Power Supply Measurements AC Input Power measurements Safe operating area Harmonics and compliance Efficiency Switching Transistor Losses

More information

Lab E5: Filters and Complex Impedance

Lab E5: Filters and Complex Impedance E5.1 Lab E5: Filters and Complex Impedance Note: It is strongly recommended that you complete lab E4: Capacitors and the RC Circuit before performing this experiment. Introduction Ohm s law, a well known

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

Chapter 2 Analog-to-Digital Conversion...

Chapter 2 Analog-to-Digital Conversion... Chapter... 5 This chapter examines general considerations for analog-to-digital converter (ADC) measurements. Discussed are the four basic ADC types, providing a general description of each while comparing

More information

Physics Experiment N -17. Lifetime of Cosmic Ray Muons with On-Line Data Acquisition on a Computer

Physics Experiment N -17. Lifetime of Cosmic Ray Muons with On-Line Data Acquisition on a Computer Introduction Physics 410-510 Experiment N -17 Lifetime of Cosmic Ray Muons with On-Line Data Acquisition on a Computer The experiment is designed to teach the techniques of particle detection using scintillation

More information

Piecewise Linear Circuits

Piecewise Linear Circuits Kenneth A. Kuhn March 24, 2004 Introduction Piecewise linear circuits are used to approximate non-linear functions such as sine, square-root, logarithmic, exponential, etc. The quality of the approximation

More information

Unit/Standard Number. LEA Task # Alignment

Unit/Standard Number. LEA Task # Alignment 1 Secondary Competency Task List 100 SAFETY 101 Demonstrate an understanding of State and School safety regulations. 102 Practice safety techniques for electronics work. 103 Demonstrate an understanding

More information

GENERATION OF SIGNALS USING LABVIEW FOR MAGNETIC COILS WITH POWER AMPLIFIERS

GENERATION OF SIGNALS USING LABVIEW FOR MAGNETIC COILS WITH POWER AMPLIFIERS GENERATION OF SIGNALS USING LABVIEW FOR MAGNETIC COILS WITH POWER AMPLIFIERS Ashmi G V 1, Meena M S 2 1 ER&DCI-IT, Centre for Development of Advanced Computing, Thiruvananthapuram(India) 2 LAMP Group,

More information

INVESTIGATION AND DESIGN OF HIGH CURRENT SOURCES FOR B-H LOOP MEASUREMENTS

INVESTIGATION AND DESIGN OF HIGH CURRENT SOURCES FOR B-H LOOP MEASUREMENTS INVESTIGATION AND DESIGN OF HIGH CURRENT SOURCES FOR B-H LOOP MEASUREMENTS Boyanka Marinova Nikolova, Georgi Todorov Nikolov Faculty of Electronics and Technologies, Technical University of Sofia, Studenstki

More information

Data acquisition and instrumentation. Data acquisition

Data acquisition and instrumentation. Data acquisition Data acquisition and instrumentation START Lecture Sam Sadeghi Data acquisition 1 Humanistic Intelligence Body as a transducer,, data acquisition and signal processing machine Analysis of physiological

More information

Advanced Lab LAB 6: Signal Acquisition & Spectrum Analysis Using VirtualBench DSA Equipment: Objectives:

Advanced Lab LAB 6: Signal Acquisition & Spectrum Analysis Using VirtualBench DSA Equipment: Objectives: Advanced Lab LAB 6: Signal Acquisition & Spectrum Analysis Using VirtualBench DSA Equipment: Pentium PC with National Instruments PCI-MIO-16E-4 data-acquisition board (12-bit resolution; software-controlled

More information

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24 Gentec-EO USA T-RAD-USB Users Manual Gentec-EO USA 5825 Jean Road Center Lake Oswego, Oregon, 97035 503-697-1870 voice 503-697-0633 fax 121-201795 11/15/2010 Page 1 of 24 System Overview Welcome to the

More information

Figure 4.1 Vector representation of magnetic field.

Figure 4.1 Vector representation of magnetic field. Chapter 4 Design of Vector Magnetic Field Sensor System 4.1 3-Dimensional Vector Field Representation The vector magnetic field is represented as a combination of three components along the Cartesian coordinate

More information

SC5407A/SC5408A 100 khz to 6 GHz RF Upconverter. Datasheet. Rev SignalCore, Inc.

SC5407A/SC5408A 100 khz to 6 GHz RF Upconverter. Datasheet. Rev SignalCore, Inc. SC5407A/SC5408A 100 khz to 6 GHz RF Upconverter Datasheet Rev 1.2 2017 SignalCore, Inc. support@signalcore.com P R O D U C T S P E C I F I C A T I O N S Definition of Terms The following terms are used

More information

Emitter base bias. Collector base bias Active Forward Reverse Saturation forward Forward Cut off Reverse Reverse Inverse Reverse Forward

Emitter base bias. Collector base bias Active Forward Reverse Saturation forward Forward Cut off Reverse Reverse Inverse Reverse Forward SEMICONDUCTOR PHYSICS-2 [Transistor, constructional characteristics, biasing of transistors, transistor configuration, transistor as an amplifier, transistor as a switch, transistor as an oscillator] Transistor

More information

Exam Booklet. Pulse Circuits

Exam Booklet. Pulse Circuits Exam Booklet Pulse Circuits Pulse Circuits STUDY ASSIGNMENT This booklet contains two examinations for the six lessons entitled Pulse Circuits. The material is intended to provide the last training sought

More information

Your first NMR measurement

Your first NMR measurement Your first NMR measurement Introduction Select 10mM water in D2O as NMR sample. The NMR spectrum of such sample consists of only two signals: the water signal and the peak of the reference (TSP). Follow

More information

Considerations for Analog Input and Output

Considerations for Analog Input and Output Considerations for Analog Input and Output Useful information can be found in the text in Sections 6.7.1 (Data Rates), 6.7.5 (Analog Input Signals), 6.7.6 (Multiple Signal Sources: Data Loggers), 6.7.9

More information

Experiment No. 2 Pre-Lab Signal Mixing and Amplitude Modulation

Experiment No. 2 Pre-Lab Signal Mixing and Amplitude Modulation Experiment No. 2 Pre-Lab Signal Mixing and Amplitude Modulation Read the information presented in this pre-lab and answer the questions given. Submit the answers to your lab instructor before the experimental

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

UNIT 2. Q.1) Describe the functioning of standard signal generator. Ans. Electronic Measurements & Instrumentation

UNIT 2. Q.1) Describe the functioning of standard signal generator. Ans.   Electronic Measurements & Instrumentation UNIT 2 Q.1) Describe the functioning of standard signal generator Ans. STANDARD SIGNAL GENERATOR A standard signal generator produces known and controllable voltages. It is used as power source for the

More information

AC : A LOW-COST LABORATORY EXPERIMENT TO GEN- ERATE THE I-V CHARACTERISTIC CURVES OF A SOLAR CELL

AC : A LOW-COST LABORATORY EXPERIMENT TO GEN- ERATE THE I-V CHARACTERISTIC CURVES OF A SOLAR CELL AC 2011-1842: A LOW-COST LABORATORY EXPERIMENT TO GEN- ERATE THE I-V CHARACTERISTIC CURVES OF A SOLAR CELL Erik A. Mayer, Pittsburg State University Erik Mayer received his Ph.D. in Engineering Science

More information

LabVIEW 8" Student Edition

LabVIEW 8 Student Edition LabVIEW 8" Student Edition Robert H. Bishop The University of Texas at Austin PEARSON Prentice Hall Upper Saddle River, NJ 07458 CONTENTS Preface xvii LabVIEW Basics 1.1 System Configuration Requirements

More information

How to Setup a Real-time Oscilloscope to Measure Jitter

How to Setup a Real-time Oscilloscope to Measure Jitter TECHNICAL NOTE How to Setup a Real-time Oscilloscope to Measure Jitter by Gary Giust, PhD NOTE-3, Version 1 (February 16, 2016) Table of Contents Table of Contents... 1 Introduction... 2 Step 1 - Initialize

More information

Castle Creations, INC.

Castle Creations, INC. Castle Link Live Communication Protocol Castle Creations, INC. 6-Feb-2012 Version 2.0 Subject to change at any time without notice or warning. Castle Link Live Communication Protocol - Page 1 1) Standard

More information

Laboratory Exercise 6 THE OSCILLOSCOPE

Laboratory Exercise 6 THE OSCILLOSCOPE Introduction Laboratory Exercise 6 THE OSCILLOSCOPE The aim of this exercise is to introduce you to the oscilloscope (often just called a scope), the most versatile and ubiquitous laboratory measuring

More information

Contents. Acknowledgments. About the Author

Contents. Acknowledgments. About the Author Contents Figures Tables Preface xi vii xiii Acknowledgments About the Author xv xvii Chapter 1. Basic Mathematics 1 Addition 1 Subtraction 2 Multiplication 2 Division 3 Exponents 3 Equations 5 Subscripts

More information

Grid-Tied Home Energy Production Using a Solar or Wind Power Inverter without DC-to-DC Converter

Grid-Tied Home Energy Production Using a Solar or Wind Power Inverter without DC-to-DC Converter Exercise 3 Grid-Tied Home Energy Production Using a Solar or Wind Power Inverter without DC-to-DC Converter EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with grid-tied

More information

SENSOR AND MEASUREMENT EXPERIMENTS

SENSOR AND MEASUREMENT EXPERIMENTS SENSOR AND MEASUREMENT EXPERIMENTS Page: 1 Contents 1. Capacitive sensors 2. Temperature measurements 3. Signal processing and data analysis using LabVIEW 4. Load measurements 5. Noise and noise reduction

More information

Agilent 81180A Arbitrary Waveform Generator

Agilent 81180A Arbitrary Waveform Generator Agilent 81180A Arbitrary Waveform Generator Specification 1.0 When waveform resolution matters test with confidence 4.2 GSa/s Arbitrary Waveform Generator with 12 bit vertical resolution 1 81180A at a

More information

EE 4440 Comm Theory Lab 5 Line Codes

EE 4440 Comm Theory Lab 5 Line Codes EE 4440 Comm Theory Lab 5 Line Codes Purpose: The purpose of this lab is to investigate the properties of various line codes. Specific parameters investigated will be wave shape, bandwidth, and transparency.

More information

DISCRETE DIFFERENTIAL AMPLIFIER

DISCRETE DIFFERENTIAL AMPLIFIER DISCRETE DIFFERENTIAL AMPLIFIER This differential amplifier was specially designed for use in my VK-1 audio oscillator and VK-2 distortion meter where the requirements of ultra-low distortion and ultra-low

More information

IT.MLD900 SENSORS AND TRANSDUCERS TRAINER. Signal Conditioning

IT.MLD900 SENSORS AND TRANSDUCERS TRAINER. Signal Conditioning SENSORS AND TRANSDUCERS TRAINER IT.MLD900 The s and Instrumentation Trainer introduces students to input sensors, output actuators, signal conditioning circuits, and display devices through a wide range

More information

Notes on OR Data Math Function

Notes on OR Data Math Function A Notes on OR Data Math Function The ORDATA math function can accept as input either unequalized or already equalized data, and produce: RF (input): just a copy of the input waveform. Equalized: If the

More information

LLRF4 Evaluation Board

LLRF4 Evaluation Board LLRF4 Evaluation Board USPAS Lab Reference Author: Dmitry Teytelman Revision: 1.1 June 11, 2009 Copyright Dimtel, Inc., 2009. All rights reserved. Dimtel, Inc. 2059 Camden Avenue, Suite 136 San Jose, CA

More information

Filters And Waveform Shaping

Filters And Waveform Shaping Physics 3330 Experiment #3 Fall 2001 Purpose Filters And Waveform Shaping The aim of this experiment is to study the frequency filtering properties of passive (R, C, and L) circuits for sine waves, and

More information

Audio Noise Figure Meter

Audio Noise Figure Meter Audio Noise Figure Meter Abstract Low noise amplifiers in the audio range are used in many applications. The definition of 'lownoise' is very flexible and poorly defined so any experimenter in this field

More information

SIGNAL RECOVERY. Model 7265 DSP Lock-in Amplifier

SIGNAL RECOVERY. Model 7265 DSP Lock-in Amplifier Model 7265 DSP Lock-in Amplifier FEATURES 0.001 Hz to 250 khz operation Voltage and current mode inputs Direct digital demodulation without down-conversion 10 µs to 100 ks output time constants Quartz

More information

THE BENEFITS OF DSP LOCK-IN AMPLIFIERS

THE BENEFITS OF DSP LOCK-IN AMPLIFIERS THE BENEFITS OF DSP LOCK-IN AMPLIFIERS If you never heard of or don t understand the term lock-in amplifier, you re in good company. With the exception of the optics industry where virtually every major

More information

Summer 2015 Examination

Summer 2015 Examination Summer 2015 Examination Subject Code: 17445 Model Answer Important Instructions to examiners: 1) The answers should be examined by key words and not as word-to-word as given in the model answer scheme.

More information

Electrical, Electronic and Communications Engineering Technology/Technician CIP Task Grid

Electrical, Electronic and Communications Engineering Technology/Technician CIP Task Grid Secondary Task List 100 SAFETY 101 Describe OSHA safety regulations. 102 Identify, select, and demonstrate proper hand tool use for electronics work. 103 Recognize the types and usages of fire extinguishers.

More information

Optimizing System Throughput with the NI PXI ½-Digit FlexDMM

Optimizing System Throughput with the NI PXI ½-Digit FlexDMM Optimizing System Throughput with the NI PXI-4070 6 ½-Digit FlexDMM Introduction How do I maximize my system throughput? is a common question posed by many engineers and scientists. For years, engineers

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

Revised April Unit/Standard Number. Proficiency Level Achieved: (X) Indicates Competency Achieved to Industry Proficiency Level

Revised April Unit/Standard Number. Proficiency Level Achieved: (X) Indicates Competency Achieved to Industry Proficiency Level Unit/Standard Number Electrical, Electronic and Communications Engineering Technology/Technician CIP 15.0303 Task Grid Secondary Competency Task List 100 SAFETY 101 Demonstrate an understanding of state,

More information

Module 1: Introduction to Experimental Techniques Lecture 2: Sources of error. The Lecture Contains: Sources of Error in Measurement

Module 1: Introduction to Experimental Techniques Lecture 2: Sources of error. The Lecture Contains: Sources of Error in Measurement The Lecture Contains: Sources of Error in Measurement Signal-To-Noise Ratio Analog-to-Digital Conversion of Measurement Data A/D Conversion Digitalization Errors due to A/D Conversion file:///g /optical_measurement/lecture2/2_1.htm[5/7/2012

More information

Glossary of VCO terms

Glossary of VCO terms Glossary of VCO terms VOLTAGE CONTROLLED OSCILLATOR (VCO): This is an oscillator designed so the output frequency can be changed by applying a voltage to its control port or tuning port. FREQUENCY TUNING

More information

UCE-DSO212 DIGITAL OSCILLOSCOPE USER MANUAL. UCORE ELECTRONICS

UCE-DSO212 DIGITAL OSCILLOSCOPE USER MANUAL. UCORE ELECTRONICS UCE-DSO212 DIGITAL OSCILLOSCOPE USER MANUAL UCORE ELECTRONICS www.ucore-electronics.com 2017 Contents 1. Introduction... 2 2. Turn on or turn off... 3 3. Oscilloscope Mode... 4 3.1. Display Description...

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

The University of Jordan Mechatronics Engineering Department Electronics Lab.( ) Experiment 1: Lab Equipment Familiarization

The University of Jordan Mechatronics Engineering Department Electronics Lab.( ) Experiment 1: Lab Equipment Familiarization The University of Jordan Mechatronics Engineering Department Electronics Lab.(0908322) Experiment 1: Lab Equipment Familiarization Objectives To be familiar with the main blocks of the oscilloscope and

More information

Week 8 AM Modulation and the AM Receiver

Week 8 AM Modulation and the AM Receiver Week 8 AM Modulation and the AM Receiver The concept of modulation and radio transmission is introduced. An AM receiver is studied and the constructed on the prototyping board. The operation of the AM

More information

Table of Contents Lesson One Lesson Two Lesson Three Lesson Four Lesson Five PREVIEW COPY

Table of Contents Lesson One Lesson Two Lesson Three Lesson Four Lesson Five PREVIEW COPY Oscillators Table of Contents Lesson One Lesson Two Lesson Three Introduction to Oscillators...3 Flip-Flops...19 Logic Clocks...37 Lesson Four Filters and Waveforms...53 Lesson Five Troubleshooting Oscillators...69

More information

6.115 Final Project Proposal: An RFID Access Control System

6.115 Final Project Proposal: An RFID Access Control System 6.115 Final Project Proposal: An RFID Access Control System Christopher Merrill April 24, 2012 Abstract The goal of this nal project is to implement a device to read standard 125 khz RFID cards using the

More information

Fluxgate Magnetometer

Fluxgate Magnetometer 6.101 Final Project Proposal Woojeong Elena Byun Jack Erdozain Farita Tasnim 7 April 2016 Fluxgate Magnetometer Motivation: A fluxgate magnetometer is a highly precise magnetic field sensor. Its typical

More information

PHY 351/651 LABORATORY 5 The Diode Basic Properties and Circuits

PHY 351/651 LABORATORY 5 The Diode Basic Properties and Circuits Reading Assignment Horowitz, Hill Chap. 1.25 1.31 (p35-44) Data sheets 1N4007 & 1N4735A diodes Laboratory Goals PHY 351/651 LABORATORY 5 The Diode Basic Properties and Circuits In today s lab activities,

More information

Dynamic Power Factor Correction Using a STATCOM

Dynamic Power Factor Correction Using a STATCOM Exercise 2 Dynamic Power Factor Correction Using a STATCOM EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the reasoning behind the usage of power factor correction

More information

Signal Processing for Digitizers

Signal Processing for Digitizers Signal Processing for Digitizers Modular digitizers allow accurate, high resolution data acquisition that can be quickly transferred to a host computer. Signal processing functions, applied in the digitizer

More information

Models 296 and 295 combine sophisticated

Models 296 and 295 combine sophisticated Established 1981 Advanced Test Equipment Rentals www.atecorp.com 800-404-ATEC (2832) Models 296 and 295 50 MS/s Synthesized Multichannel Arbitrary Waveform Generators Up to 4 Independent Channels 10 Standard

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

LLS - Introduction to Equipment

LLS - Introduction to Equipment Published on Advanced Lab (http://experimentationlab.berkeley.edu) Home > LLS - Introduction to Equipment LLS - Introduction to Equipment All pages in this lab 1. Low Light Signal Measurements [1] 2. Introduction

More information

CLIO Pocket is Audiomatica's new Electro-Acoustical Multi-Platform Personal measurement system.

CLIO Pocket is Audiomatica's new Electro-Acoustical Multi-Platform Personal measurement system. Release 1.5! CLIO Pocket is Audiomatica's new Electro-Acoustical Multi-Platform Personal measurement system. The system comes complete of the CLIO Pocket software (Windows and OSX native), the CLIO CP-01

More information

3 Circuit Theory. 3.2 Balanced Gain Stage (BGS) Input to the amplifier is balanced. The shield is isolated

3 Circuit Theory. 3.2 Balanced Gain Stage (BGS) Input to the amplifier is balanced. The shield is isolated Rev. D CE Series Power Amplifier Service Manual 3 Circuit Theory 3.0 Overview This section of the manual explains the general operation of the CE power amplifier. Topics covered include Front End Operation,

More information

TUNED AMPLIFIERS 5.1 Introduction: Coil Losses:

TUNED AMPLIFIERS 5.1 Introduction: Coil Losses: TUNED AMPLIFIERS 5.1 Introduction: To amplify the selective range of frequencies, the resistive load R C is replaced by a tuned circuit. The tuned circuit is capable of amplifying a signal over a narrow

More information

EKT 314/4 LABORATORIES SHEET

EKT 314/4 LABORATORIES SHEET EKT 314/4 LABORATORIES SHEET WEEK DAY HOUR 4 2 1 PREPARED BY: EN. MUHAMAD ASMI BIN ROMLI EN. MOHD FISOL BIN OSMAN JULY 2009 Measuring Strain 10 This chapter describes how to measure strain using DAQ devices

More information

SAMPLE: EXPERIMENT 2 Series RLC Circuit / Bode Plot

SAMPLE: EXPERIMENT 2 Series RLC Circuit / Bode Plot SAMPLE: EXPERIMENT 2 Series RLC Circuit / Bode Plot ---------------------------------------------------------------------------------------------------- This experiment is an excerpt from: Electric Experiments

More information

Application Note (A12)

Application Note (A12) Application Note (A2) The Benefits of DSP Lock-in Amplifiers Revision: A September 996 Gooch & Housego 4632 36 th Street, Orlando, FL 328 Tel: 47 422 37 Fax: 47 648 542 Email: sales@goochandhousego.com

More information

Revised April Unit/Standard Number. High School Graduation Years 2016, 2017 and 2018

Revised April Unit/Standard Number. High School Graduation Years 2016, 2017 and 2018 Unit/Standard Number High School Graduation Years 2016, 2017 and 2018 Electrical, Electronic and Communications Engineering Technology/Technician CIP 15.0303 Task Grid Secondary Competency Task List 100

More information

HAMTRONICS TB901 FM EXCITER INSTALLATION, OPERATION, & MAINTENANCE

HAMTRONICS TB901 FM EXCITER INSTALLATION, OPERATION, & MAINTENANCE HAMTRONICS TB901 FM EXCITER INSTALLATION, OPERATION, & MAINTENANCE GENERAL INFORMATION. The TB901 is a single-channel low power fm transmitter (exciter) designed to provide 300-600 milliwatts continuous

More information

PXIe Contents. Required Software CALIBRATION PROCEDURE

PXIe Contents. Required Software CALIBRATION PROCEDURE CALIBRATION PROCEDURE PXIe-5160 This document contains the verification and adjustment procedures for the PXIe-5160. Refer to ni.com/calibration for more information about calibration solutions. Contents

More information

User s Manual for Integrator Short Pulse ISP16 10JUN2016

User s Manual for Integrator Short Pulse ISP16 10JUN2016 User s Manual for Integrator Short Pulse ISP16 10JUN2016 Specifications Exceeding any of the Maximum Ratings and/or failing to follow any of the Warnings and/or Operating Instructions may result in damage

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

AC LAB ECE-D ecestudy.wordpress.com

AC LAB ECE-D ecestudy.wordpress.com PART B EXPERIMENT NO: 1 AIM: PULSE AMPLITUDE MODULATION (PAM) & DEMODULATION DATE: To study Pulse Amplitude modulation and demodulation process with relevant waveforms. APPARATUS: 1. Pulse amplitude modulation

More information

FREQUENCY RESPONSE OF R, L AND C ELEMENTS

FREQUENCY RESPONSE OF R, L AND C ELEMENTS FREQUENCY RESPONSE OF R, L AND C ELEMENTS Marking scheme : Methods & diagrams : 3 Graph plotting : - Tables & analysis : 2 Questions & discussion : 3 Performance : 2 Aim: This experiment will investigate

More information

total j = BA, [1] = j [2] total

total j = BA, [1] = j [2] total Name: S.N.: Experiment 2 INDUCTANCE AND LR CIRCUITS SECTION: PARTNER: DATE: Objectives Estimate the inductance of the solenoid used for this experiment from the formula for a very long, thin, tightly wound

More information

2.0 AC CIRCUITS 2.1 AC VOLTAGE AND CURRENT CALCULATIONS. ECE 4501 Power Systems Laboratory Manual Rev OBJECTIVE

2.0 AC CIRCUITS 2.1 AC VOLTAGE AND CURRENT CALCULATIONS. ECE 4501 Power Systems Laboratory Manual Rev OBJECTIVE 2.0 AC CIRCUITS 2.1 AC VOLTAGE AND CURRENT CALCULATIONS 2.1.1 OBJECTIVE To study sinusoidal voltages and currents in order to understand frequency, period, effective value, instantaneous power and average

More information

The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003

The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003 The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003 Design Objectives The purpose of our device is to control a window based on the temperature of a specified area. The goal

More information

Name Date: Course number: MAKE SURE TA & TI STAMPS EVERY PAGE BEFORE YOU START EXPERIMENT 10. Electronic Circuits

Name Date: Course number: MAKE SURE TA & TI STAMPS EVERY PAGE BEFORE YOU START EXPERIMENT 10. Electronic Circuits Laboratory Section: Last Revised on September 21, 2016 Partners Names: Grade: EXPERIMENT 10 Electronic Circuits 1. Pre-Laboratory Work [2 pts] 1. How are you going to determine the capacitance of the unknown

More information

Multiple Instrument Station Module

Multiple Instrument Station Module Multiple Instrument Station Module Digital Storage Oscilloscope Vertical Channels Sampling rate Bandwidth Coupling Input impedance Vertical sensitivity Vertical resolution Max. input voltage Horizontal

More information

Advanced electromagnetism and electromagnetic induction

Advanced electromagnetism and electromagnetic induction Advanced electromagnetism and electromagnetic induction This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit

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

Unit 3 Magnetism...21 Introduction The Natural Magnet Magnetic Polarities Magnetic Compass...21

Unit 3 Magnetism...21 Introduction The Natural Magnet Magnetic Polarities Magnetic Compass...21 Chapter 1 Electrical Fundamentals Unit 1 Matter...3 Introduction...3 1.1 Matter...3 1.2 Atomic Theory...3 1.3 Law of Electrical Charges...4 1.4 Law of Atomic Charges...4 Negative Atomic Charge...4 Positive

More information

Preface...x Chapter 1 Electrical Fundamentals

Preface...x Chapter 1 Electrical Fundamentals Preface...x Chapter 1 Electrical Fundamentals Unit 1 Matter...3 Introduction...3 1.1 Matter...3 1.2 Atomic Theory...3 1.3 Law of Electrical Charges...4 1.4 Law of Atomic Charges...5 Negative Atomic Charge...5

More information

Massachusetts Institute of Technology MIT

Massachusetts Institute of Technology MIT Massachusetts Institute of Technology MIT Real Time Wireless Electrocardiogram (ECG) Monitoring System Introductory Analog Electronics Laboratory Guilherme K. Kolotelo, Rogers G. Reichert Cambridge, MA

More information

Single-Phase Grid-Tied Inverter (PWM Rectifier/Inverter)

Single-Phase Grid-Tied Inverter (PWM Rectifier/Inverter) Exercise 2 Single-Phase Grid-Tied Inverter (PWM Rectifier/Inverter) EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the singlephase grid-tied inverter. DISCUSSION OUTLINE

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

Physics 309 Lab 3 Bipolar junction transistor

Physics 309 Lab 3 Bipolar junction transistor Physics 39 Lab 3 Bipolar junction transistor The purpose of this third lab is to learn the principles of operation of a bipolar junction transistor, how to characterize its performances, and how to use

More information

When input, output and feedback voltages are all symmetric bipolar signals with respect to ground, no biasing is required.

When input, output and feedback voltages are all symmetric bipolar signals with respect to ground, no biasing is required. 1 When input, output and feedback voltages are all symmetric bipolar signals with respect to ground, no biasing is required. More frequently, one of the items in this slide will be the case and biasing

More information

Lab E5: Filters and Complex Impedance

Lab E5: Filters and Complex Impedance E5.1 Lab E5: Filters and Complex Impedance Note: It is strongly recommended that you complete lab E4: Capacitors and the RC Circuit before performing this experiment. Introduction Ohm s law, a well known

More information

GATE: Electronics MCQs (Practice Test 1 of 13)

GATE: Electronics MCQs (Practice Test 1 of 13) GATE: Electronics MCQs (Practice Test 1 of 13) 1. Removing bypass capacitor across the emitter leg resistor in a CE amplifier causes a. increase in current gain b. decrease in current gain c. increase

More information

Entry Level Assessment Blueprint Electronics Technology

Entry Level Assessment Blueprint Electronics Technology Blueprint Test Code: 4135 / Version: 01 Specific Competencies and Skills Tested in this Assessment: Safety Practices Demonstrate safe working procedures Explain the purpose of OSHA and how it promotes

More information

FlexDDS-NG DUAL. Dual-Channel 400 MHz Agile Waveform Generator

FlexDDS-NG DUAL. Dual-Channel 400 MHz Agile Waveform Generator FlexDDS-NG DUAL Dual-Channel 400 MHz Agile Waveform Generator Excellent signal quality Rapid parameter changes Phase-continuous sweeps High speed analog modulation Wieserlabs UG www.wieserlabs.com FlexDDS-NG

More information

Demagnetization of Power Transformers Following a DC Resistance Testing

Demagnetization of Power Transformers Following a DC Resistance Testing Demagnetization of Power Transformers Following a DC Resistance Testing Dr.ing. Raka Levi DV Power, Sweden Abstract This paper discusses several methods for removal of remanent magnetism from power transformers.

More information

2014 Short Form Test and Measurement Catalog

2014 Short Form Test and Measurement Catalog 2014 Short Form Test and Measurement Catalog Quality Products Since 1949 DC Source/Calibrators Tunable Active Filters Filter Systems Filter Modules Wideband Power Amplifiers Precision Phasemeters Distortion

More information

Experiment 1: Instrument Familiarization (8/28/06)

Experiment 1: Instrument Familiarization (8/28/06) Electrical Measurement Issues Experiment 1: Instrument Familiarization (8/28/06) Electrical measurements are only as meaningful as the quality of the measurement techniques and the instrumentation applied

More information

OIS25. Optical smart sensor for hydraulic cylinders. General Description. Features. Applications. Pin Functions. Ordering Information

OIS25. Optical smart sensor for hydraulic cylinders. General Description. Features. Applications. Pin Functions. Ordering Information Optical smart sensor for hydraulic cylinders General Description is a patented smart optical device, which is usually combined with a hydraulic steering cylinder. The main application is on rough terrain

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