Decibel (Db) – 3Db Point

Total Page:16

File Type:pdf, Size:1020Kb

Decibel (Db) – 3Db Point Lab & Checkoff Logistics • Open lab with no scheduled lab sessions –lab can be done any time the lab is open. • Start early –32 students with 17 + 6 lab stations • Staffed lab hours posted. • Tools & Safety •Resonance 2 handouts • Material on cart and round table; additional • Bode Plots lecture notes parts available from parts bins near the center • Wires –theory vs reality pset1 • Amplitude Modulation columns and from EDS 38‐500. • Diodes • Lab reports should be turned in for grading. Acknowledgements: Lecture material adapted from Prof Qing Hu & Prof Jae Lim, 6.003 Figures and images used in these lecture notes by permission, copyright 1997 by Alan V. Oppenheim and Alan S. Willsky 6.101 Spring 2020 Lecture 2 1 6.101 Spring 2020 2 Tools & Safety Decibel (dB) –3dB point • Correct tools makes life easier! V P • Understand power ratings. dB 20log o dB 10log o P Vi i • All EECS Instructional Laboratories lab kit voltages are below 50 volts peak or 50 volts DC. See staff if you are working with voltages greater than 50 volts. 100 dB = 100,000 = 105 log10(2)=.301 • All students must read and sign the safety form 80 dB = 10,000 = 104 https : / / eecs‐ug.scripts.mit.edu:444/safety/index.py/6.101 3 dB point = ? 60 dB = 1,000 = 103 half power point 40 dB = 100 = 102 6.101 Spring 2020 3 6.101 Spring 2020 Lecture 2 4 Resonance (Series RLC) –Key points Bandwidth and Q (Series RLC) R • BW (hertz) = h l • Applies to more complex RLC 2 2L + RL circuits V C - •At resonance: power is maximum •Q* (quality factor, radians) resonant frequency bandwidth 1 1 Z R sL R j(L ) •At resonance: phase angle zero, 1 L sC C Q i.e. capacitive reactance = R C inductive reactance, or impedance is real •Higher Q implies more selectivity *Agarwal/Lang Foundation of Analog Digital Elect Circuits equation 14.47, p 794 6.101 Spring 2020 Lecture 2 5 6.101 Spring 2020 Lecture 2 6 Summary – Parallel Series RLC Series Parallel Duality Parallel Series R L 1 1 + f I O fO V C RL CV 2 LC 2 LC I - 2 f L Q 2 f RC Q O o R 1 1 1 1 R V I R jwL I V jwC BW ( fh fl ) BW ( f f ) jwC 2RC h l 2L R jwL 1 Series Parallel 2 f 0 LC 0 VI 1 R1/R f0 LC 2 LC CL 6.101 Spring 2020 Lecture 2 7 6.101 Spring 2020 8 Bode Plot ‐ Review • A Bode plot is a graph of the magnitude (in dB) or phase of the transfer function versus frequency. • Magnitude plot on log‐log scale – Slope: 20dB/decade, same as 6dB/octave • Bode plot provides insight into impact of RLC in frequency response. • Stable networks must always have poles and zeroes in the left‐half plane. https://web.njit.edu/~levyr/Physics_121/chapter32.ppt 6.101 Spring 2020 9 6.101 Spring 2020 Lecture 2 10 MATLAB MATLAB commands • % comment delimiter • Matlab windows: • MATLAB arrays starts with index=1 current folder, – command, work a = [4,5,6] is a row vector a(2)=5 space (workspace), – b = [7;8;9] is a column vector command history • “;” don’t print values (commandhistory) • Variables are case sensitive • Set folder to your • Variables must start with a letter Aa favorite folder • who/whos: list the current variables in short/long form • Built in help in • shg – show recent graph, pop to the front command window • use apostrophes for FILENAME • docking/undocking • format shortENG – display engineering notation Command window Workspace Current folder Command history MATLAB MATLAB Matrix Operation >> a=[2,3,4] pi 3.14159265 a = 2 3 4 i,j sqrt(-1) imaginary unit >> b=[1,0,0] b = 1 0 0 zeros(n,m) an n x m matrix of zeros >> c=a+b ones(n,m) an n x m matrix of ones c = 3 3 4 >> d=a*b % dot product operation ??? Error using ==> mtimes + - addition, subtraction Inner matrix dimensions must agree. */ ^ multiplication, division, power >> d=a.*b d = 2 0 0 sqrt square root >> e=a*b' % ' transpose e = 2 MATLAB Flow Control MATLAB example sin(x) >> t=[0:1/100:1-1/100]; % create t from 0 to .99, 100 values if a == 0 >> x=sin(2*pi*t); • if else statement b = a; >> plot(t, x); else >> stem(t,x); b = 1/a; >> shg end • for loop n = 100 for m = 1:n a(m) = a(m) + 1; end • while loop n = 10 while n > 0 n = n – 1 end Bode vs Freqs Plots MATLAB Functions bode, freqs format shortENG num=[1/L 0] denom=[1 R/L 1/(L*C)] 1 f=1/(2*pi*sqrt(L*C)) w=2*pi*f 1 • BODE(SYS,W) uses the vector W of frequencies (in radians/TimeUnit) to w_range = [.8*w:20:1.2*w]; evaluate the frequency response h=bode(num,denom,w_range); magh=abs(h); plot(w_range,magh) R=1 L=47uh C=1.8nf f=540khz • [MAG,PHASE] = BODE(SYS,W) and [MAG,PHASE,W] = BODE(SYS) return the shg freqs(num,denom,w_range) response magnitudes and phases in degrees (along with the frequency vector W if unspecified). • SYS is the transfer function expressed as numerator and denominator in the form d eS SYS aS2 bS c • bode(num,denom,range) num=[d e], denom=[a b c], range= desired freqencies in radians • freqs(num,denom,range) plots frequency response and phase angle bode freqs not same scale 6.101 Spring 2020 17 6.101 Spring 2020 Lecture 2 18 Bode in Hz Selectivity and Q 1 R=1 L=47uh C=1.8nf 1 f=540khz L=47uh C=1.8nf [Mag, Phase, W] = bode(num, denom, w_range); f=540khz Freq_Hz = W/2/pi; Mag_dB = 20*log10(Mag); subplot(2,1,1) semilogx(Freq_Hz, Mag_dB) RQ title('Bode Diagram') ylabel('Magnitude (dB)') 1 160 subplot(2,1,2) semilogx(Freq_Hz,Phase) 532 xlabel('Frequency (Hz)') ylabel('Phase (deg)') 10 16 shg 6.101 Spring 2020 Lecture 2 19 6.101 Spring 2020 Lecture 2 20 r=1 l=4.7e-5 bw1=1/(2*pi*l) Selectivity and Q c=1.8482e-009 q1=f/bw1 num=[1/l 0] bw5=5/(2*pi*l) denom=[1 r/l 1/(l*c)] q5=f/bw5 f=1/(2*pi*sqrt(l*c)) bw10=10/(2*pi*l) w=2*pi*f q10=f/bw10 w_range = [.8*w:20:1.2*w] L=47uh [w,mag1]=bode_gh(1,l,c) >> bw1=1/(2*pi*l) [w,mag5]=bode_gh(5,l,c) bw1 = 3.3863e+003 C=1.8nf [w,mag10]=bode_gh(10,l,c) >> f f=540khz hold on f = 5.4000e+005 plot(w,mag1) >> q1=f/bw1 plot(w,mag5/max(mag5),'r-') q1 = 159.4683 RQ shg >> bw5=5/(2*pi*l) plot(w,mag10/max(mag10),'g-') bw5 = 1.6931e+004 1 160 shg >> q5=f/bw5 xlabel('w(rad/sec)') q5 = 31.8937 532 shg >> bw10=10/(2*pi*l) ylabel('Amplitude') bw10 = 3.3863e+004 10 16 shg >> q10=f/bw10 title(' Response for RLC series circuit') q10 = 15.9468 shg 6.101 Spring 2020 21 6.101 Spring 2020 Lecture 2 22 Lab 1 Topics Proper External Grounding for Lab 1 IF Transformer • Resonance, Q, bandwidth • Transformers and impact on load and PC Board pri sec bandwidth NC • Diode detector, demodulation • Simple AM transmitter and receiver Can 6.101 Spring 2020 23 6.101 Spring 2020 Lecture 2 24 Schematics & Wiring Wire Gauge • IC power supply connections generally not drawn. • Wire gauge: diameter is inversely proportional to the All integrated circuits need power! wire gauge number. Diameter increases as the wire gauge decreases. 2, 1, 0, 00, 000(3/0) up to 7/0. • Use standard color coded wires to avoid confusion. – red: positive • Resistance – black: ground or common reference point – 22 gauge .0254 in 16 ohm/1000 feet – 12 gauge .08 in 1.5 ohm/1000 feet – Other colors: signals – High voltage AC used to reduce loss • Circuit flow, signal flow left to right • Higher voltage on top, ground negative voltage on • 1cm cube of copper has a resistance of 1.68 micro ohm (resistance of copper wire scales linearly : bottom length/area) • Neat wiring helps in debugging! 6.101 Spring 2020 25 6.101 Spring 2020 26 Wires Theory vs Reality ‐ Lab 1 Bypass (Decoupling) Capacitors Electrolytic Bypass capacitor Capacitor 10uf 0.1uf typical • Provides additional filtering from main power supply • Used as local energy source – provides peak current during 30-50mv voltage drop in chip transitions Wires have inductance and • Provided decoupling of resistance noise spikes during power transitions supply • Placed as close to the IC noise as possible. noise during transitions • Use small capacitors for Voltage drop across wires high frequency response. • Use large capacitors to LC ringing after transitions Through hole PCB (ancient) shown for clarity. localize bulk energy storage 6.101 Spring 2020 Lecture 2 27 6.101 Spring 2020 Lecture 2 28 Two of Many Methods of Modulation The Concept of Modulation (modulating a carrier) x(t) Transmitted Signal Carrier Signal Why? • More efficient to transmit E&M signals at higher frequencies. • Transmitting multiple signals through the same medium using different carriers. • Increase signal/noise ratio in lock‐in measurements. • others... How? • Many methods Focus is on Amplitude Modulation (AM) 6.101 Spring 2020 Lecture 2 29 6.101 Spring 2020 30 Fourier Series Time Domain Analysis 1(n1) n ? v (Ac KAm cosmt)*cosct T= 1/f1 KA v A cos t m [cos( )t cos( )t] c c 2 c m c m ? V=|Asin(ω0t)| ω0 = 2π f1 ? 6.101 Spring 2020 31 6.101 Spring 2020 Lecture 2 32 Amplitude Modulation (AM) of a Complex Asynchronous Demodulation Exponential Carrier • Assume c >> M, so signal envelope looks like x(t) j c t • Add same carrier ct e , c — carrier frequency j t y(t) x(t) e c 1 Yj Xj Cj 2 1 Xj 2 Time Domain 2 c Frequency Domain A + x(t) > 0 why? Xj c 6.101 Spring 2020 Lecture 2 33 6.101 Spring 2020 34 Lecture 2 AM with Carrier (for different Amplitudes of A) Asynchronous Demodulation (continued) xm (t) A c(t) D1 Envelop Detector xm (t) t c(t) In order for it to function properly, the envelop function must be positive definite, i.e.
Recommended publications
  • Lesson 22: Determining Control Stability Using Bode Plots
    11/30/2015 Lesson 22: Determining Control Stability Using Bode Plots 1 ET 438A AUTOMATIC CONTROL SYSTEMS TECHNOLOGY lesson22et438a.pptx Learning Objectives 2 After this presentation you will be able to: List the control stability criteria for open loop frequency response. Identify the gain and phase margins necessary for a stable control system. Use a Bode plot to determine if a control system is stable or unstable. Generate Bode plots of control systems the include dead-time delay and determine system stability. lesson22et438a.pptx 1 11/30/2015 Bode Plot Stability Criteria 3 Open loop gain of less than 1 (G<1 or G<0dB) at Stable Control open loop phase angle of -180 degrees System Oscillatory Open loop gain of exactly 1 (G=1 or G= 0dB) at Control System open loop phase angle of -180 degrees Marginally Stable Unstable Control Open loop gain of greater than 1 (G>1 or G>0dB) System at open loop phase angle of -180 degrees lesson22et438a.pptx Phase and Gain Margins 4 Inherent error and inaccuracies require ranges of phase shift and gain to insure stability. Gain Margin – Safe level below 1 required for stability Minimum level : G=0.5 or -6 dB at phase shift of 180 degrees Phase Margin – Safe level above -180 degrees required for stability Minimum level : f=40 degree or -180+ 40=-140 degrees at gain level of 0.5 or 0 dB. lesson22et438a.pptx 2 11/30/2015 Determining Phase and Gain Margins 5 Define two frequencies: wodB = frequency of 0 dB gain w180 = frequency of -180 degree phase shift Open Loop Gain 0 dB Gain Margin -m180 bodB Phase Margin -180+b0dB -180o Open Loop w w Phase odB 180 lesson22et438a.pptx Determining Phase and Gain Margins 6 Procedure: 1) Draw vertical lines through 0 dB on gain and -180 on phase plots.
    [Show full text]
  • RANDOM VIBRATION—AN OVERVIEW by Barry Controls, Hopkinton, MA
    RANDOM VIBRATION—AN OVERVIEW by Barry Controls, Hopkinton, MA ABSTRACT Random vibration is becoming increasingly recognized as the most realistic method of simulating the dynamic environment of military applications. Whereas the use of random vibration specifications was previously limited to particular missile applications, its use has been extended to areas in which sinusoidal vibration has historically predominated, including propeller driven aircraft and even moderate shipboard environments. These changes have evolved from the growing awareness that random motion is the rule, rather than the exception, and from advances in electronics which improve our ability to measure and duplicate complex dynamic environments. The purpose of this article is to present some fundamental concepts of random vibration which should be understood when designing a structure or an isolation system. INTRODUCTION Random vibration is somewhat of a misnomer. If the generally accepted meaning of the term "random" were applicable, it would not be possible to analyze a system subjected to "random" vibration. Furthermore, if this term were considered in the context of having no specific pattern (i.e., haphazard), it would not be possible to define a vibration environment, for the environment would vary in a totally unpredictable manner. Fortunately, this is not the case. The majority of random processes fall in a special category termed stationary. This means that the parameters by which random vibration is characterized do not change significantly when analyzed statistically over a given period of time - the RMS amplitude is constant with time. For instance, the vibration generated by a particular event, say, a missile launch, will be statistically similar whether the event is measured today or six months from today.
    [Show full text]
  • EE C128 Chapter 10
    Lecture abstract EE C128 / ME C134 – Feedback Control Systems Topics covered in this presentation Lecture – Chapter 10 – Frequency Response Techniques I Advantages of FR techniques over RL I Define FR Alexandre Bayen I Define Bode & Nyquist plots I Relation between poles & zeros to Bode plots (slope, etc.) Department of Electrical Engineering & Computer Science st nd University of California Berkeley I Features of 1 -&2 -order system Bode plots I Define Nyquist criterion I Method of dealing with OL poles & zeros on imaginary axis I Simple method of dealing with OL stable & unstable systems I Determining gain & phase margins from Bode & Nyquist plots I Define static error constants September 10, 2013 I Determining static error constants from Bode & Nyquist plots I Determining TF from experimental FR data Bayen (EECS, UCB) Feedback Control Systems September 10, 2013 1 / 64 Bayen (EECS, UCB) Feedback Control Systems September 10, 2013 2 / 64 10 FR techniques 10.1 Intro Chapter outline 1 10 Frequency response techniques 1 10 Frequency response techniques 10.1 Introduction 10.1 Introduction 10.2 Asymptotic approximations: Bode plots 10.2 Asymptotic approximations: Bode plots 10.3 Introduction to Nyquist criterion 10.3 Introduction to Nyquist criterion 10.4 Sketching the Nyquist diagram 10.4 Sketching the Nyquist diagram 10.5 Stability via the Nyquist diagram 10.5 Stability via the Nyquist diagram 10.6 Gain margin and phase margin via the Nyquist diagram 10.6 Gain margin and phase margin via the Nyquist diagram 10.7 Stability, gain margin, and
    [Show full text]
  • I Introduction and Background
    Final Design Report Platform Motion Measurement System ELEC 492 A Senior Design Project, 2005 Between University of San Diego And Trex Enterprises Submitted to: Dr. Lord at USD Prepared by: YAZ Zlatko Filipovic Yoshitaka Yano August 12, 2005 University of San Diego Final Design Report USD August 12, 2005 Platform Motion Measurement System Table of Contents I. Acknowledgments…………...…………………………………………………………4 II. Executive Summary……..…………………………………………………………….5 III. Introduction and Background…...………………………...………………………….6 IV. Project Requirements…………….................................................................................8 V. Methodology of Design Plan……….…..……………..…….………….…..…….…..11 VI. Testing….……………………………………..…..…………………….……...........21 VII. Deliverables and Project Results………...…………...…………..…….…………...24 VIII. Budget………………………………………...……..……………………………..25 IX. Personnel…………………..………………………………………....….……….......28 X. Design Schedule………….…...……………………………….……...…………........29 XI. Reference and Bibliography…………..…………..…………………...…………….31 XII. Summary…………………………………………………………………………....32 Appendices Appendix 1. Simulink Simulations…..………………………….…….33 Appendix 2. VisSim Simulations..........……………………………….34 Appendix 3. Frequency Response and VisSim results……………......36 Appendix 4. Vibration Measurements…………..………………….….38 Appendix 5. PCB Layout and Schematic……………………………..39 Appendix 6. User’s Manual…………………………………………..41 Appendix 7. PSpice Simulations of Hfilter…………………………….46 1 Final Design Report USD August 12, 2005 Platform Motion Measurement System
    [Show full text]
  • Amplifier Frequency Response
    EE105 – Fall 2015 Microelectronic Devices and Circuits Prof. Ming C. Wu [email protected] 511 Sutardja Dai Hall (SDH) 2-1 Amplifier Gain vO Voltage Gain: Av = vI iO Current Gain: Ai = iI load power vOiO Power Gain: Ap = = input power vIiI Note: Ap = Av Ai Note: Av and Ai can be positive, negative, or even complex numbers. Nagative gain means the output is 180° out of phase with input. However, power gain should always be a positive number. Gain is usually expressed in Decibel (dB): 2 Av (dB) =10log Av = 20log Av 2 Ai (dB) =10log Ai = 20log Ai Ap (dB) =10log Ap 2-2 1 Amplifier Power Supply and Dissipation • Circuit needs dc power supplies (e.g., battery) to function. • Typical power supplies are designated VCC (more positive voltage supply) and -VEE (more negative supply). • Total dc power dissipation of the amplifier Pdc = VCC ICC +VEE IEE • Power balance equation Pdc + PI = PL + Pdissipated PI : power drawn from signal source PL : power delivered to the load (useful power) Pdissipated : power dissipated in the amplifier circuit (not counting load) P • Amplifier power efficiency η = L Pdc Power efficiency is important for "power amplifiers" such as output amplifiers for speakers or wireless transmitters. 2-3 Amplifier Saturation • Amplifier transfer characteristics is linear only over a limited range of input and output voltages • Beyond linear range, the output voltage (or current) waveforms saturates, resulting in distortions – Lose fidelity in stereo – Cause interference in wireless system 2-4 2 Symbol Convention iC (t) = IC +ic (t) iC (t) : total instantaneous current IC : dc current ic (t) : small signal current Usually ic (t) = Ic sinωt Please note case of the symbol: lowercase-uppercase: total current lowercase-lowercase: small signal ac component uppercase-uppercase: dc component uppercase-lowercase: amplitude of ac component Similarly for voltage expressions.
    [Show full text]
  • Meeting Design Specifications
    NDSU Meeting Design Specs using Bode Plots ECE 461 Meeting Design Specs using Bode Plots When designing a compensator to meet design specs including: Steady-state error for a step input Phase Margin 0dB gain frequency the procedure using Bode plots is about the same as it was for root-locus plots. Add a pole at s = 0 if needed (making the system type-1) Start cancelling zeros until the system is too fast For every zero you added, add a pole. Place these poles so that the phase adds up. When using root-locus techniques, the phase adds up to 180 degrees at some spot on the s-plane. When using Bode plot techniques, the phase adds up to give you your phase margin at some spot on the jw axis. Example 1: Problem: Given the following system 1000 G(s) = (s+1)(s+3)(s+6)(s+10) Design a compensator which result in No error for a step input 20% overshoot for a step input, and A settling time of 4 second Solution: First, convert to Bode Plot terminology No overshoot means make this a type-1 system. Add a pole at s = 0. 20% overshoot means ζ = 0.4559 Mm = 1.2322 GK = 1∠ − 132.120 Phase Margin = 47.88 degrees A settling time of 4 seconds means s = -1 + j X s = -1 + j2 (from the damping ratio) The 0dB gain frequency is 2.00 rad/sec In short, design K(s) so that the system is type-1 and 0 (GK)s=j2 = 1∠ − 132.12 JSG 1 rev June 22, 2016 NDSU Meeting Design Specs using Bode Plots ECE 461 Start with s+1 K(s) = s At 4 rad/sec 1000 0 GK = s(s+3)(s+6)(s+10) = 2.1508∠ − 153.43 s=j2 There is too much phase shift, so start cancelling zeros.
    [Show full text]
  • Applications Academic Program Distributing Vissim Models
    VISSIM VisSim is a visual block diagram language for simulation of dynamical systems and Model Based Design of embedded systems. It is developed by Visual Solutions of Westford, Massachusetts. Applications VisSim is widely used in control system design and digital signal processing for multidomain simulation and design. It includes blocks for arithmetic, Boolean, and transcendental functions, as well as digital filters, transfer functions, numerical integration and interactive plotting. The most commonly modeled systems are aeronautical, biological/medical, digital power, electric motor, electrical, hydraulic, mechanical, process, thermal/HVAC and econometric. Academic program The VisSim Free Academic Program allows accredited educational institutions to site license VisSim v3.0 for no cost. The latest versions of VisSim and addons are also available to students and academic institutions at greatly reduced pricing. Distributing VisSim models VisSim viewer screenshot with sample model. The free Vis Sim Viewer is a convenient way to share VisSim models with colleagues and clients not licensed to use VisSim. The VisSim Viewer will execute any VisSim model, and allows changes to block and simulation parameters to illustrate different design scenarios. Sliders and buttons may be activated if included in the model. Code generation The VisSim/C-Code add-on generates efficient, readable ANSI C code for algorithm acceleration and real-time implementation of embedded systems. The code is more efficient and readable than most other code generators. VisSim's author served on the X3J11 ANSI C committee and wrote several C compilers, in addition to co-authoring a book on C. [2] This deep understanding of ANSI C, and the nature of the resulting machine code when compiled, is the key to the code generator's efficiency.
    [Show full text]
  • Frequency Response and Bode Plots
    1 Frequency Response and Bode Plots 1.1 Preliminaries The steady-state sinusoidal frequency-response of a circuit is described by the phasor transfer function Hj( ) . A Bode plot is a graph of the magnitude (in dB) or phase of the transfer function versus frequency. Of course we can easily program the transfer function into a computer to make such plots, and for very complicated transfer functions this may be our only recourse. But in many cases the key features of the plot can be quickly sketched by hand using some simple rules that identify the impact of the poles and zeroes in shaping the frequency response. The advantage of this approach is the insight it provides on how the circuit elements influence the frequency response. This is especially important in the design of frequency-selective circuits. We will first consider how to generate Bode plots for simple poles, and then discuss how to handle the general second-order response. Before doing this, however, it may be helpful to review some properties of transfer functions, the decibel scale, and properties of the log function. Poles, Zeroes, and Stability The s-domain transfer function is always a rational polynomial function of the form Ns() smm as12 a s m asa Hs() K K mm12 10 (1.1) nn12 n Ds() s bsnn12 b s bsb 10 As we have seen already, the polynomials in the numerator and denominator are factored to find the poles and zeroes; these are the values of s that make the numerator or denominator zero. If we write the zeroes as zz123,, zetc., and similarly write the poles as pp123,, p , then Hs( ) can be written in factored form as ()()()s zsz sz Hs() K 12 m (1.2) ()()()s psp12 sp n 1 © Bob York 2009 2 Frequency Response and Bode Plots The pole and zero locations can be real or complex.
    [Show full text]
  • Evaluation of Audio Test Methods and Measurements for End-Of-Line Loudspeaker Quality Control
    Evaluation of audio test methods and measurements for end-of-line loudspeaker quality control Steve Temme1 and Viktor Dobos2 (1. Listen, Inc., Boston, MA, 02118, USA. [email protected]; 2. Harman/Becker Automotive Systems Kft., H-8000 Székesfehérvár, Hungary) ABSTRACT In order to minimize costly warranty repairs, loudspeaker OEMS impose tight specifications and a “total quality” requirement on their part suppliers. At the same time, they also require low prices. This makes it important for driver manufacturers and contract manufacturers to work with their OEM customers to define reasonable specifications and tolerances. They must understand both how the loudspeaker OEMS are testing as part of their incoming QC and also how to implement their own end-of-line measurements to ensure correlation between the two. Specifying and testing loudspeakers can be tricky since loudspeakers are inherently nonlinear, time-variant and effected by their working conditions & environment. This paper examines the loudspeaker characteristics that can be measured, and discusses common pitfalls and how to avoid them on a loudspeaker production line. Several different audio test methods and measurements for end-of- the-line speaker quality control are evaluated, and the most relevant ones identified. Speed, statistics, and full traceability are also discussed. Keywords: end of line loudspeaker testing, frequency response, distortion, Rub & Buzz, limits INTRODUCTION In order to guarantee quality while keeping testing fast and accurate, it is important for audio manufacturers to perform only those tests which will easily identify out-of-specification products, and omit those which do not provide additional information that directly pertains to the quality of the product or its likelihood of failure.
    [Show full text]
  • Calibration of Radio Receivers to Measure Broadband Interference
    NBSIR 73-335 CALIBRATION OF RADIO RECEIVERS TO MEASORE BROADBAND INTERFERENCE Ezra B. Larsen Electromagnetics Division Institute for Basic Standards National Bureau of Standards Boulder, Colorado 80302 September 1973 Final Report, Phase I Prepared for Calibration Coordination Group Army /Navy /Air Force NBSIR 73-335 CALIBRATION OF RADIO RECEIVERS TO MEASORE BROADBAND INTERFERENCE Ezra B. Larsen Electromagnetics Division Institute for Basic Standards National Bureau of Standards Boulder, Colorado 80302 September 1973 Final Report, Phase I Prepared for Calibration Coordination Group Army/Navy /Air Force u s. DEPARTMENT OF COMMERCE, Frederick B. Dent. Secretary NATIONAL BUREAU OF STANDARDS. Richard W Roberts Director V CONTENTS Page 1. BACKGROUND 2 2. INTRODUCTION 3 3. DEFINITIONS OF RECEIVER BANDWIDTH AND IMPULSE STRENGTH (Or Spectral Intensity) 5 3.1 Random noise bandwidth 5 3.2 Impulse bandwidth in terms of receiver response transient 7 3.3 Voltage-response bandwidth of receiver 8 3.4 Receiver bandwidths related to voltage- response bandwidth 9 3.5 Impulse strength in terms of random-noise bandwidth 10 3.6 Sum-and-dif ference correlation radiometer technique 10 3.7 Impulse strength in terms of Fourier trans- forms 11 3.8 Impulse strength in terms of rectangular DC pulses 12 3.9 Impulse strength and impulse bandwidth in terms of RF pulses 13 4. EXPERIMENTAL PROCEDURE AND DATA 16 4.1 Measurement of receiver input impedance and phase linearity 16 4.2 Calibration of receiver as a tuned RF volt- meter 20 4.3 Stepped- frequency measurements of receiver bandwidth 23 4.4 Calibration of receiver impulse bandwidth with a baseband pulse generator 37 iii CONTENTS [Continued) Page 4.5 Calibration o£ receiver impulse bandwidth with a pulsed-RF source 38 5.
    [Show full text]
  • MT-033: Voltage Feedback Op Amp Gain and Bandwidth
    MT-033 TUTORIAL Voltage Feedback Op Amp Gain and Bandwidth INTRODUCTION This tutorial examines the common ways to specify op amp gain and bandwidth. It should be noted that this discussion applies to voltage feedback (VFB) op amps—current feedback (CFB) op amps are discussed in a later tutorial (MT-034). OPEN-LOOP GAIN Unlike the ideal op amp, a practical op amp has a finite gain. The open-loop dc gain (usually referred to as AVOL) is the gain of the amplifier without the feedback loop being closed, hence the name “open-loop.” For a precision op amp this gain can be vary high, on the order of 160 dB (100 million) or more. This gain is flat from dc to what is referred to as the dominant pole corner frequency. From there the gain falls off at 6 dB/octave (20 dB/decade). An octave is a doubling in frequency and a decade is ×10 in frequency). If the op amp has a single pole, the open-loop gain will continue to fall at this rate as shown in Figure 1A. A practical op amp will have more than one pole as shown in Figure 1B. The second pole will double the rate at which the open- loop gain falls to 12 dB/octave (40 dB/decade). If the open-loop gain has dropped below 0 dB (unity gain) before it reaches the frequency of the second pole, the op amp will be unconditionally stable at any gain. This will be typically referred to as unity gain stable on the data sheet.
    [Show full text]
  • A Note on Stability Analysis Using Bode Plots
    ChE classroom A NOTE ON STABILITY ANALYSIS USING BODE PLOTS JUERGEN HAHN, THOMAS EDISON, THOMAS F. E DGAR The University of Texas at Austin • Austin, TX 78712-1062 he Bode plot is an important tool for stability analysis amplitude ratio greater than unity for frequencies where f = of closed-loop systems. It is based on calculating the -180∞-n*360∞, where n is an integer. These conditions can T amplitude and phase angle for the transfer function occur when the process includes time delays, as shown in the following example. GsGsGs 1 OL( ) = C( ) P ( ) ( ) for s = jw Juergen Hahn was born in Grevenbroich, Ger- many, in 1971. He received his diploma degree where GC(s) is the controller and GP(s) is the process. The in engineering from RWTH Aachen, Germany, Bode stability criterion presented in most process control text- in 1997, and his MS degree in chemical engi- neering from the University of Texas, Austin, in books is a sufficient, but not necessary, condition for insta- 1998. He is currently a PhD candidate working bility of a closed-loop process.[1-4] Therefore, it is not pos- as a research assistant in chemical engineer- sible to use this criterion to make definitive statements about ing at the University of Texas, Austin. His re- search interests include process modeling, non- the stability of a given process. linear model reduction, and nonlinearity quanti- fication. Other textbooks[5,6] state that this sufficient condition is a necessary condition as well. That statement is not correct, as Thomas Edison is a lecturer at the University of Texas, Austin.
    [Show full text]