Experiment 419: IEEE Standard Digital Interface for Programmable Instrumentation

Size: px
Start display at page:

Download "Experiment 419: IEEE Standard Digital Interface for Programmable Instrumentation"

Transcription

1 Experiment 419: IEEE Standard Digital Interface for Programmable Instrumentation Introduction The IEEE-488 interface or General Purpose Interface Bus (GPIB) is a standard system for the interconnection of programmable instruments and a controlling computer. It allows up to 15 devices to be connected to one another. A device may have one or more of the properties of controller (e.g. a computer), talker (sends out data) or listener (receives commands). A typical system is shown in Fig. 1. Controller (computer) Talker (e.g. counter) BUS Listener (e.g. function generator) Talker/Listener (e.g. DVM) Fig. 1 The bus consists of 24 lines, comprising 8 data lines, 3 data transfer control lines, 5 interface management lines and 8 ground lines. Data and commands are transferred by a 3-line handshaking system under control of the management lines, in a byte serial/bit parallel manner. The five management lines are as follows: ATN (Attention): Indicates whether the byte being placed on the bus is data or a command (or address). EOI (End or Identify): Indicates end of transmission. SRQ (Service Request): This line is set true by any device requiring service (e.g. after taking a reading). The controller uses this information to conduct a SERIAL POLL, addressing each device in turn to find which one requires service. IFC (Interface Clear): Sets all devices to a known initial state. 1

2 REN (Remote Enable): Allows a device to be remotely controlled (as opposed to LOCAL control via its front panel switches). The three data control (handshaking) lines are: NRFD (Not Ready for Data): This is held true until all listeners are ready for data (or commands). NDAC ( Not Data Accepted): This is held true until all listeners have accepted the data. DAV (Data Valid). Set true by a talker to indicate that data or a control byte is on the bus and available to listeners. The signals, cables, plugs/sockets etc. are all standardised so that any instruments (with interfaces fitted) may be directly connected to one another and to a computer (with a suitable interface). The standard functions that an instrument may have are as follows: (1) Source Handshake (SH): Permits a talker to transfer data to one or more listeners. (2) Acceptor Handshake (AH): Permits a listener to accept data from a talker. (3) Talker (and Extended Talker) T(ET): A device may be addressed and enabled to be a talker. (4) Listener (and Extended Listener) L(EL): A device may be addressed and enabled to be a listener. (5) Service Request (SR): The controller may be notified that action is required. (6) Remote/Local (RL): A device can be controlled remotely by the controller, or locally (by its front pane1). (7) Parallel Poll (PP): Up to 8 devices may be polled simultaneously to determine whether service is required. (8) Device Clear (DC): Clears device interface. (9) Device Trigger (DT): Initiates one or m ore devices into operation. (10) Controller (C): System controller. The capabilities of a given instrument are marked on its rear panel. For example the DVM in this experiment is marked SH1, AH1, T5, TE0, L3, LE0, E1, SR1, RL1, DC1, C0, DT1, PP. The numerals indicate different levels of capability. This DVM has most functions except that it cannot be used as a controller. (TE and LE refer to additional levels of talking and listening, e.g. where an additional register may be accessed). 2

3 Each instrument has device address between 0 and 30, which may be set by 5 switches on the rear panel. Device address 31 is not allowed, being used for a special UNTALK command. The controller has a default address of 0. The pc lab card in the computer is a full implementation of the IEEE standard and includes the following commands. It is operated from BASIC (having a ROM which translates the commands to interface functions). Initialise: Output: Input: Clear: Initialises card after switching on. CALL INIT (10PORT,MYADDR,SETTING) Sends data/commands to devices CALL OUT (ADDR,D$) Receives data from devices CALL INN (ADDR,D$) Clears interface CALL CLR Device clear: Clears specified device CALL DEVCLR (ADDR) Local Lockout: Disables front panel controls CALL LLO Local: Returns specified device to local control CALL LOCAL (ADDR) Parallel Poll: Returns 8-bit byte showing any service requests CALL PPOLL (response) Remote: Serial Poll: Trigger: Puts specified device into remote mode CALL REMOTE (ADDR) Returns 8-bit byte from specified device CALL SPOLL (ADDR,response) Triggers a reading from specified device CALL TRIGGER (ADDR) 3

4 Description of Instruments The experiment permits control of a Phillips function generator (type 5190) and a Solartron DVM (type 7150). Solartron DVM type 7150 (SHI, AH1, T5, TEO, L3, LEO, SRI, RL1, DC1, DT1, PP, C0) This instrument has a very full implementation of the IEEE standard. It measures voltage (ac and dc), current (ac and dc) and resistance over a wide range of values and also has an autorange facility. The address has been set to device number 3 Command format (see handbook for full details): C : Normal (0) or Calibration (1) G: sample (must be in sample mode first) M: Mode 0 V dc 3 I dc 1 V ac 4 I ac 2 kω J: n sets Parallel Poll to bit n. N: Display format 0 Numeric with literals (ea Vdc) 1 Numeric only (e.g ) R: Range V I R 0 autorange autorange autorange V (dc only) V V - 20 kω V kω V 2A 2 MΩ MΩ T: Sample mode (0) or Track mode (1) Q: SRQ on error (0) or SRQ on error/output available (1) e.g. M0N0R2T1Q1 sets V dc, literals, 2 V range, track mode and normal SRQ. Serial poll byte: SRQ on 0 Output available Remote / local 0 0 Error 4

5 Philips LF Synthesiser (AH1, L2, RL1) The front panel controls enable waveforms to be produced at frequencies in the range 1 mhz to 2 MHz (for sinewaves and squarewaves) and up to 100 khz for trianglewaves; ac voltages are selectable from 0 to 19.9 V and dc offsets from 0 to V. The device is basically a listener (L2) and cannot transmit data. All functions are programmable from the controller, and the front panel controls can be locked out (RL1). The address has been set to device number 4. Command format: Frequency: FXX.XXXXEOS At least one digit must be set, the values being always in khz. The decimal point may be omitted. ac/dc voltage: AXX.XD-XXEOS ac dc 3 ac digits must be set, with leading zeros set, and the first ac digit must be 0 or 1. The decimal point must be set (and not at the end). The 6th byte must be D. For +ve offsets the - digit is simply omitted. The decimal point is in the same position as for ac. Both digits should be set. Waveform type: Wn 1 sine 2 square 3 triangle 4 sinewave with external AM 5 triangle with external AM egs. F0l.1 sets frequency to 1.1 khz A11.5 D-11 sets a.c. amplitude 11.5 V, dc offset V. W 2 sets waveform to square. F5151A01.9D05W1 sets frequency 5151 khz, ac amplitude 1.9 V, sinewave. (The EOS character is CHRS(3), but is added automatically in the program). Description of the Program The disc will boot from drive A and loads GW BASIC and runs the program (IEEE-E). You have to specify if you are using CGA (on a 1512) or EGA (on a 1640). The device addresses are set to 3(DVM) and 4(synthesiser). The OPTION MENU is then displayed. OPTION MENU 1. Properties of IEEE interface 2. Frequency sweep 3. Amplitude sweep 4. End 5

6 Select 1 for the IEEE Interface Menu IEEE INTERFACE MENU 1. Print to device 2. Listen to device 3. Remote/Local 4. Trigger 5. SRQ and Serial Poll 6. Parallel Poll 7. Set time out 8. Initialise/Clear 9. Return to main menu 1) Print to Device. The device number is requested, and you are asked for a command. A command is entered as above, ea. SIT5DI5D0 or F2.2A0l.lD00. 2) Listen to Device. The device address is requested, and the reading returned immediately as a string, ea E1 DCV. 3) Remote/Local. This asks whether you want remote or local operation, and for the device address. 4) Trigger. The device address is requested and the device triggered to take a reading (this sets SRQ on). 5) Serial Poll. Only the DVM can initiate a service request. The SRQ line is examined and T or F returned. The poll on the DVM is then done, returning a one-byte response (see DVM section). 6) Parallel Poll. This returns a byte of value depending on the configuration set for the DVM (see DVM section). 7) Set Timeout. The timeout (in ms) is entered. 8) Initialise/Clear. The interface can be initialised, or all devices cleared. 9) Return to Main Menu. Procedure Examine the front panel controls on the DVM and Synthesiser and ensure that you can operate both instruments locally (set up a few waveforms and read the amplitudes on the DVM). Set the oscilloscope to dc, 1 V/cm, 2 ms/cm. Part I: Basic Properties of the GPIB (i) Program a square wave of amplitude 1.11 V ac, frequency 9.51 khz, dc offset -0.ll V. Write down the string required. Note that the front panel controls are disabled. 6

7 (ii) (iii) (iv) (v) Program a reading of this waveform on the DVM. Write down the strings used (for ac and dc) and the values obtained. Set Timeout to 2s and operate it by trying to listen to a device which is not connected (e.g address 5). Set DVM to SRQ on error. Generate an error by sending C1. Carry out a serial poll and record the result. Carry out a second serial poll and record the result. Check that these agree with the values expected from the serial poll byte. (Only the DVM has serial poll capability). Set DVM to Parallel Poll bit 1 by sending J1. Generate an error and carry out a Parallel Poll. Record the result. Carry out a second poll and record the result. Then carry out a serial poll followed by another parallel poll and record the final result. Part II: Automatic Measurement of Network Response. Connect the input of the network provided to the synthesiser, and the output to the DVM. Return to the Main Menu and select Frequency Sweep or Amplitude Sweep. The responses are stored in arrays and can be displayed on the screen or printed out. Run the programs to get an idea of the value of where the interesting ranges of frequency and amplitude lie. Then carry out specific runs to sketch plots of the following: (i) (ii) (iii) The frequency response well below amplitude limiting. The frequency response well above the start of amplitude limiting. The response at the resonant frequency as a function of amplitude. Note the peak responses and Q-factors in (i) and (ii), and the actual value where amplitude limiting starts in (iii). Sketch a possible circuit for the network. Note: Remember that the synthesiser accepts frequencies in khz. Discussion and Conclusions You should have discussed any necessary results in the appropriate sections above. Answer the following questions in addition to any general conclusions. (i) How many instruments can the bus handle (excluding the controller)? (ii) What is the form of the data/command transfer (e.g. serial bit, parallel byte etc)? (iii) How does the system tell whether a byte is data or command? (iv) Why is a three-line handshake required? (v) What are the relative advantages of (a) Serial Poll, (b) Parallel poll? (vi) What is meant by Local Lockout? (vii) What are the principal advantages of a standardised system such as the GPIB? (viii) What are the main disadvantages? 7

Universally Applicable for Piezoelectric Measuring Technology. Technical Data. Charge Input. Instant value. Extreme values ors statistic measurements

Universally Applicable for Piezoelectric Measuring Technology. Technical Data. Charge Input. Instant value. Extreme values ors statistic measurements Electronics & Software Charge Meter Universally Applicable for Piezoelectric Measuring Technology Type 5015A... This instrument can be used wherever mechanical quantities are measured with piezoelectric

More information

Universally Applicable for Piezoelectric Measuring Technology. Technical Data. Charge Input. Extreme values ors statistic measurements

Universally Applicable for Piezoelectric Measuring Technology. Technical Data. Charge Input. Extreme values ors statistic measurements Electronics & Software Charge Meter Type 5015A... Universally Applicable for Piezoelectric Measuring Technology This instrument can be used wherever mechanical quantities are measured with piezoelectric

More information

Charge Meter. Electronics & Software. Universally Applicable for Piezoelectric Measuring Technology. Type 5015A...

Charge Meter. Electronics & Software. Universally Applicable for Piezoelectric Measuring Technology. Type 5015A... Electronics & Software Charge Meter Type 5015A... Universally Applicable for Piezoelectric Measuring Technology This instrument can be used wherever mechanical quantities are measured with piezoelectric

More information

Model AC Voltage Calibrator 1mVac to Vac IEEE-488 Remote Controlled. Operating Manual

Model AC Voltage Calibrator 1mVac to Vac IEEE-488 Remote Controlled. Operating Manual Model 4503 AC Voltage Calibrator 1mVac to 111.110Vac IEEE-488 Remote Controlled Operating Manual This page intentionally left blank. 4503 OPERATORS MANUAL Serial No. 4503 OPERATORS MANUAL Copyright 1998

More information

Model Multimeter Specifications ABSOLUTE ACCURACY TYPICAL ACCURACIES 2002 SPECIFIED CALIBRATION INTERVALS

Model Multimeter Specifications ABSOLUTE ACCURACY TYPICAL ACCURACIES 2002 SPECIFIED CALIBRATION INTERVALS Keithley Instruments 28775 Aurora Road Cleveland, Ohio 44139 1-800-935-5595 www.tek.com/keithley Model 2002 Multimeter Specifications This document contains the complete specifications for the 2002. Every

More information

Physics 472, Graduate Laboratory DAQ with Matlab. Overview of data acquisition (DAQ) with GPIB

Physics 472, Graduate Laboratory DAQ with Matlab. Overview of data acquisition (DAQ) with GPIB 1 Overview of data acquisition (DAQ) with GPIB The schematic below gives an idea of how the interfacing happens between Matlab, your computer and your lab devices via the GPIB bus. GPIB stands for General

More information

Back to. Communication Products Group. Technical Notes. Local/Remote Control, 9300 Series

Back to. Communication Products Group. Technical Notes. Local/Remote Control, 9300 Series Back to Communication Products Group Technical Notes 25T001 Local/Remote Control, 9300 Series MITEQ TECHNICAL NOTE 25T001 MAY 1995 REV G 1.0 LOCAL/REMOTE SELECTION LOCAL/REMOTE CONTROL 9300 SERIES CONVERTER

More information

NMR TESLAMETER. User s Manual. Version 2.0. (Revision 2.0)

NMR TESLAMETER. User s Manual. Version 2.0. (Revision 2.0) NMR TESLAMETER User s Manual Version 2.0 (Revision 2.0) June 2010 CONTENTS 1 GENERAL DESCRIPTION... 1 2 SPECIFICATIONS... 5 2.1 Probes... 5 2.2 PT 2025 TESLAMETER... 5 3 USER'S GUIDE... 11 4 PT 2025 OPERATING

More information

FREQUENCY SYNTHESIZERS, SIGNAL GENERATORS

FREQUENCY SYNTHESIZERS, SIGNAL GENERATORS SYNTHESIZED SIGNAL GENERATOR MG3641A/MG3642A 12 khz to 1040/2080 MHz NEW New Anritsu synthesizer technology permits frequency to be set with a resolution of 0.01 Hz across the full frequency range. And

More information

LCR meter User Manual. Issue A

LCR meter User Manual. Issue A LCR meter 4235 User Manual Issue A 23 th April 2018 1.2 AC Power Supply Power cable and connector requirements vary between countries. Always use a cable that conforms to local regulations, terminated

More information

RIGOL Data Sheet. DG3000 Series Function/Arbitrary Waveform Generator DG3121A, DG3101A, DG3061A. Product Overview. Easy to Use Design.

RIGOL Data Sheet. DG3000 Series Function/Arbitrary Waveform Generator DG3121A, DG3101A, DG3061A. Product Overview. Easy to Use Design. RIGOL Data Sheet DG3000 Series Function/Arbitrary Waveform Generator DG3121A, DG3101A, DG3061A Product Overview DG3000 Series Function/Arbitrary Waveform Generators adopt DDS technology, which enables

More information

N432A Thermistor Power Meter DATA SHEET

N432A Thermistor Power Meter DATA SHEET N432A Thermistor Power Meter DATA SHEET Why Keysight s Power Meters and Sensors? Keysight s only power meter that supports thermistor mount with useful enhancements for metrology and calibration lab environments.

More information

HP 33120A Function Generator / Arbitrary Waveform Generator

HP 33120A Function Generator / Arbitrary Waveform Generator Note: Unless otherwise indicated, this manual applies to all Serial Numbers. The HP 33120A is a high-performance 15 MHz synthesized function generator with built-in arbitrary waveform capability. Its combination

More information

California Instruments BPS Series kva V A / Phase. Overview. High Power AC Source. Expandable Power Levels.

California Instruments BPS Series kva V A / Phase. Overview. High Power AC Source. Expandable Power Levels. California Instruments Overview High AC Source Expandable Levels Remote Control 30 180 kva 150 400 V 0 400 A / Phase 208 230 400 480 Introduction The consists of multiple high power AC power systems that

More information

DS75160A DS75161A DS75162A IEEE-488 GPIB Transceivers

DS75160A DS75161A DS75162A IEEE-488 GPIB Transceivers DS75160A DS75161A DS75162A IEEE-488 GPIB Transceivers General Description This family of high-speed-schottky 8-channel bi-directional transceivers is designed to interface TTL MOS logic to the IEEE Standard

More information

SIGNAL GENERATORS. MG3633A 10 khz to 2700 MHz SYNTHESIZED SIGNAL GENERATOR GPIB

SIGNAL GENERATORS. MG3633A 10 khz to 2700 MHz SYNTHESIZED SIGNAL GENERATOR GPIB SYNTHESIZED SIGNAL GENERATOR MG3633A GPIB For Evaluating of Quasi-Microwaves and Measuring High-Performance Receivers The MG3633A has excellent resolution, switching speed, signal purity, and a high output

More information

Agilent 33250A 80 MHz Function / Arbitrary Waveform Generator. User s Guide

Agilent 33250A 80 MHz Function / Arbitrary Waveform Generator. User s Guide User s Guide Publication Number 33250-90002 (order as 33250-90100 manual set) Edition 2, March 2003 Copyright Agilent Technologies, Inc. 2000, 2003 For Safety information, Warranties, and Regulatory information,

More information

HAMEG Programmable Measuring Instruments Series 8100

HAMEG Programmable Measuring Instruments Series 8100 HAMEG Programmable Measuring Instruments Series 8100 HAMEG Programmable Measuring Instruments Series 8100 are ideally suited for test installations in production and automated tests in laboratories. They

More information

System Two GPIB. Programmer s Reference Manual

System Two GPIB. Programmer s Reference Manual System Two GPIB Programmer s Reference Manual 6\VWHP7ZR *3,%3URJUDPPHUV 5HIHUHQ H*XLGH 5HYLVLRQIRU*3,%)LUPZDUH9HUVLRQ -XQH $XGLR3UH LVLRQ31 &RS\ULJKW $XGLR3UHFLVLRQ,QF$OOULJKWVUHVHUYHG1RSDUWRIWKLVGRFXPHQWPD\EH

More information

2026Q CDMA/GSM Interferer MultiSource Generator

2026Q CDMA/GSM Interferer MultiSource Generator Signal Sources 2026Q CDMA/GSM Interferer MultiSource Generator The 2026Q is designed to work with a radio test set to provide a fully integrated radio receiver test solution for cellular and PCS systems

More information

G5100A: 50 MHz Arbitrary Function Generator

G5100A: 50 MHz Arbitrary Function Generator G5100A: 50 MHz Arbitrary Function Generator Key Features 50 MHz Sine Wave 25 MHz Square Wave Pulse, Ramp, Triangle, Noise, and DC waveforms AM, FM, PM, FSK, and PWM modulation types Linear & logarithmic

More information

EENG-201 Experiment # 4: Function Generator, Oscilloscope

EENG-201 Experiment # 4: Function Generator, Oscilloscope EENG-201 Experiment # 4: Function Generator, Oscilloscope I. Objectives Upon completion of this experiment, the student should be able to 1. To become familiar with the use of a function generator. 2.

More information

Model GPIB Remote Controlled AC Watt (Hour) Meter Calibration System. Operating Manual

Model GPIB Remote Controlled AC Watt (Hour) Meter Calibration System. Operating Manual Model 4700 GPIB Remote Controlled AC Watt (Hour) Meter Calibration System Operating Manual This page intentionally left blank. Model 4700 OPERATORS MANUAL Serial No. This page intentionally left blank.

More information

Watt Meter - Model 2335

Watt Meter - Model 2335 MORE WATT METERS Watt Meter - Model 2335 Dc to more than 1MHz Inputs up to 10A and 1000V 0.2% Uncertainty Low Power Factor Accuracy Peak or RMS Readings Isolated Inputs Harmonic Analysis Multifunction

More information

In addition to these standard waveforms, user defined waveform can be downloaded over the bus.

In addition to these standard waveforms, user defined waveform can be downloaded over the bus. California Instruments FCS Series II Overview High Performance 135/270 V, 156/312 V, or 200/400 V Easy to Program Uses front panel keyboard display with full decimal keypad for data entry 18 54 kva 135

More information

California Instruments Ls Series VA V A kva Programmable AC Power Source / Analyzer

California Instruments Ls Series VA V A kva Programmable AC Power Source / Analyzer California Instruments Ls Series 3-18 kva Programmable AC Power Source / Analyzer 3000 18000 VA 135 400 V Backward Compatible with L Series Function and bus compatible with the California Instruments L

More information

MODEL 4300B/4350ATE DIGITAL MICRO-OHMMETER

MODEL 4300B/4350ATE DIGITAL MICRO-OHMMETER VALHALLA SCIENTIFIC, INC. MODEL 4300B/4350ATE DIGITAL MICRO-OHMMETER OPERATION MANUAL 8318 MIRAMAR MALL SAN DIEGO, CA 92121 (858) 457-5576 (858) 457-0127 Fax CERTIFICATION Valhalla Scientific, Inc. certifies

More information

Agilent 8970B Error Messages Data Sheet

Agilent 8970B Error Messages Data Sheet Agilent 8970B Error Messages Data Sheet The error messages are displayed on the front panel of the noise figure meter in the format E XX or EXXX where XX is between 01 and 80 and XXX is between 100 and

More information

Tektronix PSPL10050A, PSPL10060A, PSPL10070A & PSPL10300B Programmable Pulse Generators User Manual

Tektronix PSPL10050A, PSPL10060A, PSPL10070A & PSPL10300B Programmable Pulse Generators User Manual xx ZZZ Tektronix PSPL10050A, PSPL10060A, PSPL10070A & PSPL10300B Programmable Pulse Generators User Manual *P071341600* 071-3416-00 xx ZZZ Tektronix PSPL10050A, PSPL10060A, PSPL10070A & PSPL10300B Programmable

More information

Agilent 33220A. 20 MHz Waveform Generator. User's Guide. Agilent Technologies

Agilent 33220A. 20 MHz Waveform Generator. User's Guide. Agilent Technologies Agilent 33220A 20 MHz Waveform Generator User's Guide Agilent Technologies User s Guide Publication Number 33220-90002 (order as 33220-90100 manual set) Edition 4, May 2007 Copyright 2003, 2005, 2007 Agilent

More information

ME 365 EXPERIMENT 1 FAMILIARIZATION WITH COMMONLY USED INSTRUMENTATION

ME 365 EXPERIMENT 1 FAMILIARIZATION WITH COMMONLY USED INSTRUMENTATION Objectives: ME 365 EXPERIMENT 1 FAMILIARIZATION WITH COMMONLY USED INSTRUMENTATION The primary goal of this laboratory is to study the operation and limitations of several commonly used pieces of instrumentation:

More information

Henry Dudley 1508 Wellington Ave. Toms River, NJ

Henry Dudley 1508 Wellington Ave. Toms River, NJ Henry Dudley 1508 Wellington Ave. Toms River, NJ 08757 732-240-6895 hdudley@dudleylab.com OM000001 REV01 RELEASE DATE 1/27/04 TABLE OF CONTENTS TABLE OF CONTENTS... 2 1.0 GENERAL INFORMATION... 3 1.1 Scope

More information

Agilent 33210A 10 MHz Function / Arbitrary Waveform Generator. User s Guide

Agilent 33210A 10 MHz Function / Arbitrary Waveform Generator. User s Guide User s Guide Publication Number 33210-90001 (order as 33210-90000 manual set) Edition 1, August 2008 Copyright 2008 Agilent Technologies, Inc. Agilent 33210A 10 MHz Function / Arbitrary Waveform Generator

More information

1-6. Safety Symbols And Terms Configuration Warranty Information Inspection Manual Addenda. General Information

1-6. Safety Symbols And Terms Configuration Warranty Information Inspection Manual Addenda. General Information General Information fication. If this prefix differs from that listed on the title page of this manual, there are differences between this manual and your instrument. 1-3. Configuration There are two configurations

More information

Digital Multimeters R6451A/6452A. R6451A/6452A Digital Multimeters. 5 1/2 Digit DMM Series Enabling Dual Input and Display

Digital Multimeters R6451A/6452A. R6451A/6452A Digital Multimeters. 5 1/2 Digit DMM Series Enabling Dual Input and Display 5 1/2 Digit DMM Series Enabling Dual Input and Display R6451A/6452A R6451A: General-Purpose Low-Price DMM with Standard Functions R6452A: Full-Functional DMM with Dual- Channel Input and Dual Display (Photo

More information

PM 6669 High-Precision Frequency Counter Specifications

PM 6669 High-Precision Frequency Counter Specifications PM 6669 High-Precision Frequency Counter Specifications Product Home Features Specifications Models, Options & Accessories Measuring functions Definitions Input specifications Auxiliary functions TimeBase

More information

California Instruments MX Series II kva V A / Phase. Overview

California Instruments MX Series II kva V A / Phase. Overview California Instruments M Series II Overview 15 135 kva 150 400 V High AC and DC Source Programmable AC and DC power for frequency conversion and product test applications Expandable Levels Available output

More information

INSTRUCTION MANUAL DEMODULATOR MODEL EM-8500

INSTRUCTION MANUAL DEMODULATOR MODEL EM-8500 INSTRUCTION MANUAL DEMODULATOR MODEL EM-8500 INSTRUCTION MANUAL THIS INSTRUCTION MANUAL AND ITS ASSOCIATED INFORMATION IS PRO- PRIETARY. UNAUTHORIZED REPRO- DUCTION IS FORBIDDEN. 1994 ELECTRO-METRICS CORP.

More information

FREQUENCY SYNTHESIZERS, SIGNAL GENERATORS

FREQUENCY SYNTHESIZERS, SIGNAL GENERATORS SYNTHESIZED SWEEP/SIGNAL GENERATOR 69A, 68B series 10 MHz to 6 GHz GPIB A microwave synthesizer for any application Anritsu Wiltron s El Toro microwave synthesizers present 80 models, providing you the

More information

LAB II. INTRODUCTION TO LABVIEW

LAB II. INTRODUCTION TO LABVIEW 1. OBJECTIVE LAB II. INTRODUCTION TO LABVIEW In this lab, you are to gain a basic understanding of how LabView operates the lab equipment remotely. 2. OVERVIEW In the procedure of this lab, you will build

More information

For Safety information, Warranties, and Regulatory information, see the pages behind the Index.

For Safety information, Warranties, and Regulatory information, see the pages behind the Index. User s Guide Part Number: E3631-90002 April 2000. For Safety information, Warranties, and Regulatory information, see the pages behind the Index. Copyright Agilent Technologies, Inc. 2000 All Rights Reserved.

More information

Specifications for Model 8810A Angle Position Indicator (API) Two Synchro/Resolver Measurement and One optional Reference supply

Specifications for Model 8810A Angle Position Indicator (API) Two Synchro/Resolver Measurement and One optional Reference supply GENERAL This second generation API, Model 8810A, truly represents a major step forward in synchro to digital conversion technology. The use of an intelligent DSP design eliminates push buttons and allows

More information

SERIES 691XXB SYNTHESIZED SIGNAL GENERATOR GPIB PROGRAMMING MANUAL

SERIES 691XXB SYNTHESIZED SIGNAL GENERATOR GPIB PROGRAMMING MANUAL SERIES 691XXB SYNTHESIZED SIGNAL GENERATOR GPIB PROGRAMMING MANUAL 490 JARVIS DRIVE MORGAN HILL, CA 95037-2809 P/N: 10370-10345 REVISION: A PRINTED: JANUARY 1999 COPYRIGHT 1999 ANRITSU CO. WARRANTY The

More information

TG1010A AIM & THURLBY THANDAR INSTRUMENTS. 10MHz programmable DDS function generator. Direct Digital Synthesis

TG1010A AIM & THURLBY THANDAR INSTRUMENTS. 10MHz programmable DDS function generator. Direct Digital Synthesis AIM & THURLBY THANDAR INSTRUMENTS TG1010A 10MHz programmable DDS function generator Arbitrary Waveform Capability, Extensive Modulation Modes Direct Digital Synthesis All the versatility of a function

More information

4500FX User Manual P/N

4500FX User Manual P/N SECTION 1 INTRODUCTION AND SPECIFICATIONS 1.1 INTRODUCTION This instruction manual contains information on the installation, operation, calibration, and maintenance of all power test systems that use the

More information

R&S SMB100N SIGNAL GENERATOR

R&S SMB100N SIGNAL GENERATOR R&S SMB100N SIGNAL GENERATOR PERFORMANCE SPECIFICATIONS VERSION 02.00, SEPTEMBER 2009 CONTENTS Specifications...3 Definitions... 3 RF performance... 4 Frequency... 4 Frequency sweep... 4 Reference frequency...

More information

Agilent N3300 Series DC Electronic Loads

Agilent N3300 Series DC Electronic Loads Agilent N3300 Series DC Electronic Loads Data Sheet Increase your manufacturing test throughput with fast electronic loads Increase test system throughput Lower cost of ownership Decrease system development

More information

Keysight 34401A Multimeter

Keysight 34401A Multimeter Keysight 34401A Multimeter Data Sheet See Keysight's Truevolt Series of DMMs You also get both GPIB and RS-232 interfaces as standard features. Voltmeter Complete and External Trigger signals are provided

More information

MOBILE COMMUNICATIONS MEASURING INSTRUMENTS

MOBILE COMMUNICATIONS MEASURING INSTRUMENTS DIGITAL MODULATION SIGNAL GENERATOR MG3681A 250 khz to 3 GHz GPIB For Evaluating Next Generation Digital Mobile Communications Systems The MG3681A uses a wideband vector modulator to output the highaccuracy,

More information

MG3740A Analog Signal Generator. 100 khz to 2.7 GHz 100 khz to 4.0 GHz 100 khz to 6.0 GHz

MG3740A Analog Signal Generator. 100 khz to 2.7 GHz 100 khz to 4.0 GHz 100 khz to 6.0 GHz Data Sheet MG3740A Analog Signal Generator 100 khz to 2.7 GHz 100 khz to 4.0 GHz 100 khz to 6.0 GHz Contents Definitions, Conditions of Specifications... 3 Frequency... 4 Output Level... 5 ATT Hold...

More information

Signal Sources. 2026Q CDMA Interferer Multisource Generator. Advanced Test Equipment Rentals ATEC (2832)

Signal Sources. 2026Q CDMA Interferer Multisource Generator. Advanced Test Equipment Rentals ATEC (2832) Signal Sources Established 1981 Advanced Test Equipment Rentals www.atecorp.com 800-404-ATEC (2832) 2026Q CDMA Interferer Multisource Generator The 2026Q is designed to work with a radio test set to provide

More information

M-140 Multifunction Calibrator. Operation manual

M-140 Multifunction Calibrator. Operation manual M-140 Multifunction Calibrator Operation manual MEATEST M-140 Multifunction Calibrator Content Operation manual... 1 Basic Information... 3 Preparation for operation... 5 Inspecting package contents,

More information

Applications Avionics Testing Power Line Simulation Production Test - Power Supplies - UPS - Telecom. SMARTWAVE Programmable AC/DC Power Source

Applications Avionics Testing Power Line Simulation Production Test - Power Supplies - UPS - Telecom. SMARTWAVE Programmable AC/DC Power Source Applications Avionics Testing Power Line Simulation Production Test - Power Supplies - UPS - Telecom SMARTWAVE Programmable AC/DC Power Source PRODUCT OVERVIEW of cycles for each segment, the user can

More information

WTPCT-M. eeder. Pulse Counter/Timer Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies

WTPCT-M. eeder. Pulse Counter/Timer Module. Technologies FEATURES SPECIFICATIONS DESCRIPTION. Weeder Technologies eeder Technologies 90-A Beal Pkwy NW, Fort Walton Beach, FL 32548 www.weedtech.com 850-863-5723 Pulse Counter/Timer Module FEATURES Reads frequency from 0.50000 to 1,400,000 Hz using 5 digit resolution

More information

Dual Channel Function/Arbitrary Waveform Generators 4050 Series

Dual Channel Function/Arbitrary Waveform Generators 4050 Series Data Sheet Dual Channel Function/Arbitrary Waveform Generators The Dual Channel Function/Arbitrary Waveform Generators are capable of generating stable and precise sine, square, triangle, pulse, and arbitrary

More information

Implementing RF Masurement System: SNA

Implementing RF Masurement System: SNA DEPARTMENT OF TECHNOLOGY AND BUILT ENVIROMENT Implementing RF Masurement System: SNA Wang Lei Gävle University, May 2010 Bachelors Thesis in Telecommunication.Examiner: Jose Chilo... Abstract The thesis

More information

Agilent 33220A 20 MHz Function / Arbitrary Waveform Generator. Service Guide

Agilent 33220A 20 MHz Function / Arbitrary Waveform Generator. Service Guide Service Guide Publication Number 33220-90012 (order as 33220-90100 manual set) Edition 2, March 2005 Copyright 2003, 2005 Agilent Technologies, Inc. Agilent 33220A 20 MHz Function / Arbitrary Waveform

More information

Model 855 RF / Microwave Signal Generator

Model 855 RF / Microwave Signal Generator Features Very low phase noise Fast switching Phase coherent switching option 2 to 8 phase coherent outputs USB, LAN, GPIB interfaces Applications Radar simulation Quantum computing High volume automated

More information

5500A. Multi-Product Calibrator. Operator Reference Guide. PN December, 1994

5500A. Multi-Product Calibrator. Operator Reference Guide. PN December, 1994 5500A Multi-Product Calibrator Operator Reference Guide PN 945097 December, 1994 1994 Fluke Corporation, Inc. All rights reserved. Printed in U.S.A. Table of Contents Replacing the Fuse... 4 Selecting

More information

PCX-9000 Series Datasheet

PCX-9000 Series Datasheet PCX-9000 Series Datasheet PCX-9000 Series PULSED/CW LASER DIODE DRIVER Features: Up to 600A of Output Current Adjustable 60A bias (simmer current) PCX-9600-X 600Amps at 24 Volts Internal Trigger 2kHz-25KHz

More information

EUROPE S LARGEST SELECTION OF TEST & MEASUREMENT EQUIPMENT FOR HIRE INLEC.COM. Nationwide Low Call

EUROPE S LARGEST SELECTION OF TEST & MEASUREMENT EQUIPMENT FOR HIRE INLEC.COM. Nationwide Low Call EUROPE S LARGEST SELECTION OF TEST & MEASUREMENT EQUIPMENT FOR HIRE INLEC.COM Nationwide Low Call 0333 6000 600 WHY BUY WHEN YOU CAN HIRE Agilent 33120A Function/Arbitrary Waveform Generator Data Sheet

More information

Notes on Experiment #1

Notes on Experiment #1 Notes on Experiment #1 Bring graph paper (cm cm is best) From this week on, be sure to print a copy of each experiment and bring it with you to lab. There will not be any experiment copies available in

More information

PSM3750 START UP GUIDE

PSM3750 START UP GUIDE PSM3750 START UP GUIDE Firmware v1_27 23 rd February 2016 CONTENTS Contents... Page.1 1. Getting Started... Page.2 1.1 Unpacking and Contents... Page.2 1.2 PSM3750 Handle Fitment Instructions... Pages.3-4

More information

Test No. 1. Introduction to Scope Measurements. Report History. University of Applied Sciences Hamburg. Last chance!! EEL2 No 1

Test No. 1. Introduction to Scope Measurements. Report History. University of Applied Sciences Hamburg. Last chance!! EEL2 No 1 University of Applied Sciences Hamburg Group No : DEPARTMENT OF INFORMATION ENGINEERING Laboratory for Instrumentation and Measurement L: in charge of the report Test No. Date: Assistant A2: Professor:

More information

Agilent E1412A 6.5-Digit High-Accuracy Multimeter C-Size

Agilent E1412A 6.5-Digit High-Accuracy Multimeter C-Size Agilent E1412A 6.5-Digit High-Accuracy Multimeter C-Size Data Sheet Features 1-Slot, C-size, message-based DCV, ACV, DCI, ACI, 2/4-wire Ω, frequency, period NULL, MIN/MAX, LIMIT, db, dbm 1000 reading/s

More information

True RMS Bench Multimeter 5492B

True RMS Bench Multimeter 5492B Data Sheet 5492B T The B&K Precision model 5492B is a versatile 5½-digit, 120,000-count bench multimeter suitable for applications in education, service repair, and manufacturing. The instrument enhances

More information

Universal Frequency Counter

Universal Frequency Counter Universal Frequency Counter PM6669 Operators Manual CONTENTS Page: 1 CONTENTS SFETY...2 Introduction...2 PRODUCT PRESENTTION...3 General...3 Rear View...3 Front View...4 INSTLLTION...5 Unpacking...5 Voltage-Range

More information

Output Impedance. Duty Cycle Range. Buffer Size Resolution. PROTECTION Input Over Voltage. Output Short Circuit. TRIGGERING Sources.

Output Impedance. Duty Cycle Range. Buffer Size Resolution. PROTECTION Input Over Voltage. Output Short Circuit. TRIGGERING Sources. 3 Channel Digital Storage Oscilloscope (DSO) Instrument VERTICAL SPECIFICATIONS Analogue Bandwidth (-3dB) Bandwidth Limiting Rise time (10% to 90%, calculated) Input ranges (full scale) Input sensitivity

More information

TG1010A. Programmable 10MHz DSS Function Generator INSTRUCTION MANUAL

TG1010A. Programmable 10MHz DSS Function Generator INSTRUCTION MANUAL TG1010A Programmable 10MHz DSS Function Generator INSTRUCTION MANUAL Table of Contents Introduction 2 Specifications 4 Safety 9 Installation 10 Connections 11 Front Panel Connections 11 Rear Panel Connections

More information

HP 8901B Modulation Analyzer. HP 11722A Sensor Module. 150 khz MHz. 100 khz MHz. Technical Specifications. Four Instruments In One

HP 8901B Modulation Analyzer. HP 11722A Sensor Module. 150 khz MHz. 100 khz MHz. Technical Specifications. Four Instruments In One HP 8901B Modulation Analyzer 150 khz - 1300 MHz HP 11722A Sensor Module 100 khz - 2600 MHz Technical Specifications Four Instruments In One RF Power: ±0.02 db instrumentation accuracy RF Frequency: 10

More information

7461A/7451A Digital Multimeter High-speed and variable integration time DMM supporting multiple applications

7461A/7451A Digital Multimeter High-speed and variable integration time DMM supporting multiple applications / Digital Multimeter High-speed and variable integration time DMM supporting multiple applications l Two models by use 6½-digit () 5½-digit () l Fast sampling : 20,000 readings/sec () 5,000 readings/sec

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

Chapter 1: DC circuit basics

Chapter 1: DC circuit basics Chapter 1: DC circuit basics Overview Electrical circuit design depends first and foremost on understanding the basic quantities used for describing electricity: voltage, current, and power. In the simplest

More information

Multichannel Charge Amplifier

Multichannel Charge Amplifier Measure & Analyze Multichannel Type 5070A... for Multicomponent Force Measurement This instrument is ideal for multicomponent force-torque measurement with piezoelectric dynamometers or force plates. Piezoelectric

More information

n DC Voltage Measurement (DCV) 7461A n AC Voltage Measurement (ACV, ACV (AC+DC)) 7451A 7461A/7451A Additional error depending on the integration time

n DC Voltage Measurement (DCV) 7461A n AC Voltage Measurement (ACV, ACV (AC+DC)) 7451A 7461A/7451A Additional error depending on the integration time Specifications Unless otherwise specified, the measurement accuracy is guaranteed for one year under the following conditions: Temperature; 23±5 C, relative humidity; 85% or less (75% or less in resistance

More information

Physics 120 Lab 1 (2018) - Instruments and DC Circuits

Physics 120 Lab 1 (2018) - Instruments and DC Circuits Physics 120 Lab 1 (2018) - Instruments and DC Circuits Welcome to the first laboratory exercise in Physics 120. Your state-of-the art equipment includes: Digital oscilloscope w/usb output for SCREENSHOTS.

More information

by Santiago Salazar Chris Paulino 12/15/11 Florida Gulf Coast University Dr. Zalewski

by Santiago Salazar Chris Paulino 12/15/11 Florida Gulf Coast University Dr. Zalewski by Santiago Salazar Chris Paulino 12/15/11 Florida Gulf Coast University Dr. Zalewski Previous project by Olexiy Kovtunenko and Robert Porter. They Created a LabView Program to communicate with 2 GPIB

More information

OPERATIONAL AMPLIFIERS LAB

OPERATIONAL AMPLIFIERS LAB 1 of 6 BEFORE YOU BEGIN PREREQUISITE LABS OPERATIONAL AMPLIFIERS LAB Introduction to Matlab Introduction to Arbitrary/Function Generator Resistive Circuits EXPECTED KNOWLEDGE Students should be familiar

More information

RIGOL Data Sheet. DG2000 Series Function/Arbitrary Waveform Generator DG2041A, DG2021A. Product Overview. Main Features.

RIGOL Data Sheet. DG2000 Series Function/Arbitrary Waveform Generator DG2041A, DG2021A. Product Overview. Main Features. RIGOL Data Sheet DG2000 Series Function/Arbitrary Waveform Generator DG2041A, DG2021A Product Overview DG2000 Series Function/Arbitrary Waveform Generators adopt DDS technology, which enables to generate

More information

LOCAL/REMOTE CONTROL and FUNCTIONAL DESCRIPTION. UNIVERSAL Ku-BAND TEST TRANSLATOR UNIVERSAL DBS BAND TEST TRANSLATOR

LOCAL/REMOTE CONTROL and FUNCTIONAL DESCRIPTION. UNIVERSAL Ku-BAND TEST TRANSLATOR UNIVERSAL DBS BAND TEST TRANSLATOR MITEQ TECHNICAL NOTE 25T022 MARCH 2000 REV H LOCAL/REMOTE CONTROL and FUNCTIONAL DESCRIPTION UNIVERSAL Ku-BAND TEST TRANSLATOR UNIVERSAL DBS BAND TEST TRANSLATOR GENERAL DESCRIPTION The Universal Band

More information

HP 34401A Specifications 8

HP 34401A Specifications 8 8 HP 34401A Specifications 8 DC Characteristics DC Characteristics Accuracy Specifications ± ( % of reading + % of range ) [ 1 ] Function Range [ 3 ] Test Current or Burden Voltage 24 Hour [ 2 ] 23 C ±

More information

Model MHz Arbitrary Waveform Generator Specifications

Model MHz Arbitrary Waveform Generator Specifications 50MHz Arbitrary Waveform Generator s DISPLAY: Graph mode for visual verification of signal settings. CAPABILITY: Standard waveforms: Sine, Square, Ramp, Triangle, Pulse, Noise, DC Built-in arbitrary waveforms:

More information

Data Acquisition. NHMFL Summer School 2016 William Coniglio. with many slides from Scott Hannahs

Data Acquisition. NHMFL Summer School 2016 William Coniglio. with many slides from Scott Hannahs Data Acquisition NHMFL Summer School 2016 William Coniglio with many slides from Scott Hannahs Generic Data Acquisition Experiment Analysis Publication Physical Measurement Digital Representation Raw Data

More information

Model 34A. 3Hz to 2MHz 2-Channel Butterworth/Bessel HP, LP, BP, BR Plug-In Filter Card for Model 3905/3916 Chassis.

Model 34A. 3Hz to 2MHz 2-Channel Butterworth/Bessel HP, LP, BP, BR Plug-In Filter Card for Model 3905/3916 Chassis. Model 34A 3Hz to 2MHz 2-Channel Butterworth/Bessel HP, LP, BP, BR Plug-In Filter Card for Model 3905/3916 Chassis Operating Manual Service and Warranty Krohn-Hite Instruments are designed and manufactured

More information

Chapter 1: DC circuit basics

Chapter 1: DC circuit basics Chapter 1: DC circuit basics Overview Electrical circuit design depends first and foremost on understanding the basic quantities used for describing electricity: Voltage, current, and power. In the simplest

More information

Model 745 Series. Berkeley Nucleonics Test, Measurement and Nuclear Instrumentation since Model 845-HP Datasheet BNC

Model 745 Series. Berkeley Nucleonics Test, Measurement and Nuclear Instrumentation since Model 845-HP Datasheet BNC Model 845-HP Datasheet Model 745 Series Portable 20+ GHz Microwave Signal Generator High Power +23dBM Power Output 250 fs Digital Delay Generator BNC Berkeley Nucleonics Test, Measurement and Nuclear Instrumentation

More information

Signal Generator SMA 100A

Signal Generator SMA 100A Specifications Version 01.01 Signal Generator SMA 100A April 2006 Specifications CONTENTS CONTENTS... 2 KEY FEATURES... 3 SPECIFICATIONS... 4 RF CHARACTERISTICS... 4 Frequency... 4 Frequency sweep... 4

More information

Basic Communication Laboratory Manual. Shimshon Levy&Harael Mualem

Basic Communication Laboratory Manual. Shimshon Levy&Harael Mualem Basic Communication Laboratory Manual Shimshon Levy&Harael Mualem September 2006 CONTENTS 1 The oscilloscope 2 1.1 Objectives... 2 1.2 Prelab... 2 1.3 Background Theory- Analog Oscilloscope...... 3 1.4

More information

DIGITAL MULTIMETERS 7561 & & 7562 Digital Multimeters FEATURES RECORDERS INDEX

DIGITAL MULTIMETERS 7561 & & 7562 Digital Multimeters FEATURES RECORDERS INDEX 756 & 7562 756 & 7562 Digital Multimeters 756 (6-/2 digits) 23 88 330 mm 3 kg (8-3/8 3-/2 3" 6.6 lbs) 7562 (6-/2 digits) 23 88 330 mm 3 kg (8-3/8 3-/2 3" 6.6 lbs) The 7560 (6-/2 digit display) Series is

More information

Model 475 DSP Gaussmeter

Model 475 DSP Gaussmeter 12 12 Introduction Magnetic Field Technology Model 475 DSP Gaussmeter Model 475 features BB Full-scale ranges from 35 mg to 350 kg BB DC measurement to 0.02 mg BB Basic DC accuracy of ±0.05% BB DC to 50

More information

MODELS WW5061/2. 50MS/s Single/Dual Channel Arbitrary Waveform Generators

MODELS WW5061/2. 50MS/s Single/Dual Channel Arbitrary Waveform Generators Single / Dual Channel 50MS/s waveform generator Sine waves to 25MHz, Square to 15MHz SINE OUT to 50MHz, 1Vp-p 11 Built-in popular standard waveforms 14 Bit amplitude resolution 11 digits frequency resolution

More information

HMF2525 HMF2550 Arbitrary Function Generator SCPI Programmers Manual

HMF2525 HMF2550 Arbitrary Function Generator SCPI Programmers Manual HMF2525 HMF2550 Arbitrary Function Generator *5800571802* 5800571802 Version 01 Content 1 Basics... 3 1.1 Interfaces... 3 1.1.1 RS-232 Interface... 3 1.1.2 USB Interface... 4 1.1.3 Ethernet (LAN) Interface...

More information

Experiment 1.A. Working with Lab Equipment. ECEN 2270 Electronics Design Laboratory 1

Experiment 1.A. Working with Lab Equipment. ECEN 2270 Electronics Design Laboratory 1 .A Working with Lab Equipment Electronics Design Laboratory 1 1.A.0 1.A.1 3 1.A.4 Procedures Turn in your Pre Lab before doing anything else Setup the lab waveform generator to output desired test waveforms,

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

Analog Discovery Arbitrary Function Generator for Windows 7 by Mr. David Fritz and Ms. Ellen Robertson

Analog Discovery Arbitrary Function Generator for Windows 7 by Mr. David Fritz and Ms. Ellen Robertson Analog Discovery Arbitrary Function Generator for Windows 7 by Mr. David Fritz and Ms. Ellen Robertson Financial support to develop this tutorial was provided by the Bradley Department of Electrical and

More information

MULT SWP X1K K VERN START FREQ DURATION AMPLITUDE 0 TTL OUT RAMP

MULT SWP X1K K VERN START FREQ DURATION AMPLITUDE 0 TTL OUT RAMP Signal Generators This document is a quick reference guide to the operation of the signal generators available in the laboratories. Major functions will be covered, but some features such as their sweep

More information

Dual Channel Function/Arbitrary Waveform Generators 4050 Series

Dual Channel Function/Arbitrary Waveform Generators 4050 Series Data Sheet Dual Channel Function/Arbitrary Waveform Generators The Dual Channel Function/Arbitrary Waveform Generators are capable of generating stable and precise sine, square, triangle, pulse, and arbitrary

More information

Advanced Test Equipment Rentals ATEC (2832)

Advanced Test Equipment Rentals ATEC (2832) Established 1981 Advanced Test Equipment Rentals www.atecorp.com 8-44-ATEC (2832) 215, 215-P, 6 1 2-Digit THD Multimeters 216, 216-P 6 1 2-Digit Audio Analyzing Multimeters THD, THD+Noise, and SINAD measurements

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

California Instruments RP Series 2000 VA V 3 45 A. General purpose AC power sources

California Instruments RP Series 2000 VA V 3 45 A. General purpose AC power sources California Instruments RP Series General purpose AC power sources Portable Power, Low Cost. 2000 VA Output Power Front and Rear Outputs 16 Hz to 5000 Hz Frequency Range High Peak Current Capability Remote

More information