TwinCAT Library for PZT Driver

Size: px
Start display at page:

Download "TwinCAT Library for PZT Driver"

Transcription

1 LIGO Laboratory / LIGO Scientific Collaboration LIGO- E v2 Advanced LIGO 2/7/2018 TwinCAT Library for PZT Driver Daniel Sigg Distribution of this document: LIGO Scientific Collaboration This is an internal working note of the LIGO Laboratory. California Institute of Technology LIGO Project MS E. California Blvd. Pasadena, CA Phone (626) Fax (626) info@ligo.caltech.edu Massachusetts Institute of Technology LIGO Project NW Albany St Cambridge, MA Phone (617) Fax (617) info@ligo.mit.edu LIGO Hanford Observatory P.O. Box 159 Richland WA Phone Fax LIGO Livingston Observatory P.O. Box 940 Livingston, LA Phone Fax

2 Library Title Version 1 TwinCAT version 2.11 Name space Author PztDriver Daniel Sigg Interfaces the PZT driver, D This library provides a function block to support a single channel of the 4-channel PZT driver. The board has a voltage monitor that represents the PZT output driver voltage, and an offset adjustment. The offset adjustment is controlled locally or externally using the front panel D-sub connector. Calibration parameters and min/max voltages are used to calibrate the voltage monitor and the offset adjustment. Each PZT driver also supports optional low and high limits; the user chooses which ones to enforce. The hardware readbacks of the power ok and external switch are daisy chained among the 4 channels of a board. Error codes Each PZT implements a scan feature with an option trigger to stop the scan. This can be used to scan an optical resonator and trigger on the transmitted power to find a resonance. Both scan and trigger fuinctionality are supported at a fast update rate. PZT Driver: 0x01 Power supply voltages out-of-range 0x02 External offset adjustment switch 0x04 PZT gain is zero 0x08 PZT monitor gain is zero 0x10 Drive voltage out-of-range 0x20 PZT voltage too low 0x40 PZT voltage too high 0x80 Power limits exceeded (either too low or too high) 0x100 Scan/trigger error PZT Scan: 0x01 Illegal period 0x02 Trigger error Library dependencies Trigger: 0x01 Illegal parameters 0x02 Timeout Error, ReadADC, WriteDAC, SaveRestore 2

3 Hardware Input Type TYPE PztDriverInStruct: Monitor: PowerOk: External: END_ Element Element Element INT; PztDriverInStruct Structure of the hardware inputs that are wired up for the PZT Name: Monitor Type: INT : Monitors the PZT voltage Name: PowerOk : Voltage monitor readback Name: External : Monitors the external switch state Hardware Output Type TYPE PztDriverOutStruct: Offset: PowerOk: External: END_ Element Element Element INT; PztDriverOutStruct Structure of the hardware output that are wired up for the PZT Name: Offset Type: INT : Offset applied to the PZT Name: PowerOk : Voltage monitor readback (daisy chained from input) Name: External : Monitors the external switch state (daisy chained from input) 3

4 User Interface Type TYPE PztDriverEnum : (HVPZT, MVPZT, LVPZT); PztDriverEnum List of available PZT driver configurations ENUM Name: HVPZT : High voltage PZT driver (-120V to +240V) Name: MVPZT : Medium voltage PZT driver (-10V to +200V) Name: LVPZT : Low voltage PZT driver (-10V to +120V) User Interface Type TYPE PztDriverLimitsEnum : (PztLimitsNone, PztLimitsLow, PztLimitsHigh, PztLimitsHiLo); PztDriverLimitsEnum List of optional limit choices ENUM Name: PztLimitsNone : No limit Name: PztLimitsLow : Check low limit Name: PztLimitsHigh : Check high limit Name: PztLimitsHiLo : Check low and high limit 4

5 User Interface Type TYPE PztScanWaveformEnum : (ScanSawtooth, ScanTriangle, ScanSine, ScanSquarewave); PztScanWaveformEnum List of scan waveformt choices ENUM Name: ScanSawtooth : Sawtooth waveform Name: ScanTriangle : Trinagular waveform Name: ScanSine : Sinewave Name: ScanSquarewave : Squarewave User Interface Type TYPE TriggerSelectionEnum : (TrigEdge, TrigLevel); TriggerSelectionEnum List of available trigger selection choices ENUM Name: TrigEdge : Triggers on edges only Name: TrigLevel : Triggers on levele User Interface Type TYPE TriggerSlopeEnum : (TrigPositive, TrigNegative, TrigBoth); TriggerSlopeEnum List of available trigger slope choices ENUM Name: TrigPositive : Triggers on positive edges or upon an exceeded level Name: TrigNegative : Triggers on negative edges or below a level Name: TrigBoth : Triggers on either negative edges (not relevant for level) 5

6 User Interface Type TYPE TriggerStruct : Error: Selection: Slope: Reset: Arm: Event: Timeout: TimeoutError: Value: Level: END_ ErrorStruct; TriggerSelectionEnum; TriggerSlopeEnum; TriggerStruct Structure of the user interface tags that is used to define a trigger Name: Error Type: ErrorStruct : Error handling Name: Selection Type: TriggerSelectionEnum : Type of trigger (Edge or level) Name: Slope Type: TriggerSlopeEnum : Select the slope/level for the trigger Name: Reset : Resets the trigger (Arm, Event and TimeoutError) Name: Arm : Arms the trigger (value is reset when trigger is met) Name: Event : A trigger event has happened Name: Timeout : Timeout for trigger in sec 6

7 Name: TimeoutError : Trigger has timed out Name: Value : Trigger input signal Name: Level : Level to trigger at, above or below 7

8 User Interface Type TYPE PztScanStruct : Error: Enable: UseTrigger: Reset: Waveform: Period: Trigger: Start: Stop: Offset: Previous: END_ ErrorStruct; PztScanWaveformEnum; TriggerStruct; PztScanStruct Structure of the user interface tags that sets up a PZT scan Name: Error Type: ErrorStruct : Error handling Name: Enable : Enables the scanning Name: UseTrigger : Use the trigger to stop the scan Name: Reset : Resets the scan (Enable, Previous, Offset and Trigger) Name: Waveform Type: PztScanWaveformEnum : Selects the scanning waveform Name: Period : Period of the waveform in sec Name: Trigger Type: TriggerStruct : Trigger parameters 8

9 Name: Start : Start offset for the scan waveform Name: Stop : Stop offset for the scan waveform Name: Offset : Current offset of scanning waverform Name: Previous : Offset when last trigger event happened 9

10 User Interface Type TYPE PztDriverStruct: Error: PztDriverType: Volts: Offset: Monitor: Drive: PztLow: PztHigh: PztGain: PztMonGain: PztOffset: Limits: Range: Low: High: Normalized: External: ExternalNom: PowerOk: PztDriverStruct ErrorStruct; PztDriverEnum; PztDriverLimitsEnum; Structure of the user interface tags that are used to control the PZT driver Name: Error Type: ErrorStruct : Error handling Name: PztDriverType Type: PztDriverEnum : PZT driver type Name: Volts : Represents the PZT driver output voltage in V Name: Offset : Offset to the PZT driver output in V Name: Monitor : Monitor readback voltage (used to derive Volts) 10

11 In/Out Tag Name: Drive : Output drive voltage for offset (derived from Offset) Name: PztLow : Low limit of PZT drive Name: PztHigh : High limit of PZT drive Name: PztGain : Gain of the PZT drive Name: PztMonGain : Inverse of the PZT monitor gain Name: PztOffset : Intrinsic offset of the PZT drive (usually 0) Name: Limits Type: PztDriverLimitsEnum : Specifies optional limits Name: Range : True, if limits exceeded Name: Low : Low limit for PZT output voltage Name: High : High limit for PZT output voltage Name: Normalized : Normalized output voltage, 100% is the absolute maximum of the allowed output voltage Name: External : Monitors the external switch state Name: ExternalNom : Nominal setting of the external switch state 11

12 Name: PowerOk : Voltages are ok 12

13 Function Block FUNCTION_BLOCK TriggerFB VAR_INPUT Request: SaveRestoreEnum := NoOp; VAR_IN_OUT Trigger: TriggerStruct; TriggerInit: TriggerStruct; Name In/out argument In/out argument TriggerFB Controls the setup of a trigger and checks for errors, but does not evaluate the trigger condition Name: Request Type: SaveRestoreEnum : Save/restore command Name: Trigger Type: TriggerStruct : Trigger parameters Name: TriggerInit Type: TriggerStruct : Trigger initialization parameters 13

14 Function Block FUNCTION_BLOCK TriggerFastFB VAR_INPUT Value: VAR_IN_OUT Trigger: TriggerStruct; VAR_OUTPUT Event: Name In/out argument Output argument TriggerFastFB Evaluates the trigger condition (called by a fast updating task) Name: Value : Signal to trigger on Name: Trigger Type: TriggerStruct : Trigger parameters Name: Event : Indicates a trigger has happened 14

15 Function Block FUNCTION_BLOCK PztScanFB VAR_INPUT Request: SaveRestoreEnum; PztMin: LREAL := -1E9; PztMax: LREAL := +1E9; VAR_IN_OUT Scan: PztScanStruct; ScanInit: PztScanStruct; Name In/out argument In/out argument PztScanFB Controls the setup of a PZT scan, but does not calculate the waveform Name: Request Type: SaveRestoreEnum : Save/restore command Name: PztMin : Minimum voltage of the PZT output Name: PztMax : Maximum voltage of the PZT output Name: Scan Type: PztScanStruct : PZT scan parameters Name: ScanInit Type: PztScanStruct : PZT scan initialization parameters 15

16 Function Block FUNCTION_BLOCK PztScanFastFB VAR_INPUT Value: Tick: LREAL := 0.001; VAR_IN_OUT Scan: PztScanStruct; Name In/out argument PztScanFastFB Calculates the scan waveform (called by a fast updating task) Name: Value : Signal to trigger on Name: Tick : Tick of update task in sec Name: Scan Type: PztScanStruct : Scan parameters 16

17 Function Block FUNCTION_BLOCK PztDriverFB VAR_INPUT Request: SaveRestoreEnum; PztDriverIn: PztDriverInStruct; VAR_IN_OUT PztDriverInit: PztDriverStruct; PztDriver: PztDriverStruct; Name In/out argument In/out argument PztDriverFB Sets up a channel of the PZT driver and checks for errors, but doesn t apply the offset Name: Request Type: SaveRestoreEnum : Save/restore command Name: PztDriverIn Type: PztDriverInStruct : Input hardware structure Name: PztDriverInit Type: PztDriverStruct : Interface structure for save/restore Name: PztDriver Type: PztDriverStruct : User Interface structure 17

18 Function Block FUNCTION_BLOCK PztDriverFastFB VAR_INPUT PztType: PztDriverEnum := LVPZT; PztMin: LREAL := -1E9; PztMax: LREAL := +1E9; PztGain: LREAL := 0; PztMonGain: LREAL := 0; PztOffset: LREAL := 0; Value: Tick: LREAL := 0.001; VAR_OUTPUT PztDriverOut: PztDriverOutStruct; VAR_IN_OUT PztDriver: PztDriverStruct; Name PztDriverFastFB Outputs the PZT voltage and applies the scan and trigger functions. Called by a fast updating task. The values for min, max, gain, mongain and offset will be initialized according to the selected PZT driver type, if left untouched. Name: PztType Type: PztDriverEnum Default: LVPZT : PZT driver type Name: PztDriverIn Type: PztDriverInStruct : Input hardware structure Name: PztMin : Minimum voltage of the PZT output Name: PztMax : Maximum voltage of the PZT output Name: PztGain : PZT gain 18

19 Output argument In/out argument Name: PztMonGain : Inverse of PZT monitor gain Name: PztOffset : Intrinsic PZT offset (usually 0) Name: Value : Signal to trigger on (used by the scan/trigger feature) Name: Tick : Tick of update task in sec (used by the scan) Name: PztDriverOut Type: PztDriverOutStruct : Output hardware structure Name: PztDriver Type: PztDriverStruct : User Interface structure 19

Broadband Photodetector

Broadband Photodetector LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY LIGO Laboratory / LIGO Scientific Collaboration LIGO-D1002969-v7 LIGO April 24, 2011 Broadband Photodetector Matthew Evans Distribution of this document:

More information

ISC RF Photodetector Design: LSC & WFS

ISC RF Photodetector Design: LSC & WFS LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY LIGO Laboratory / LIGO Scientific Collaboration LIGO 7 August 2014 ISC RF Photodetector Design: LSC & WFS Rich Abbott, Rana Adhikari, Peter Fritschel.

More information

TCS beam shaping: optimum and achievable beam profiles for correcting thermo-refractive lensing (not thermo-elastic surface deformation)

TCS beam shaping: optimum and achievable beam profiles for correcting thermo-refractive lensing (not thermo-elastic surface deformation) LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY Laboratory / Scientific Collaboration -T1200103-v2 Date: 28-Feb-12 TCS beam shaping: optimum and achievable beam profiles for correcting thermo-refractive

More information

Multiply Resonant EOM for the LIGO 40-meter Interferometer

Multiply Resonant EOM for the LIGO 40-meter Interferometer LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY LIGO-XXXXXXX-XX-X Date: 2009/09/25 Multiply Resonant EOM for the LIGO

More information

Arm Cavity Finesse for Advanced LIGO

Arm Cavity Finesse for Advanced LIGO LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Technical Note LIGO-T070303-01-D Date: 2007/12/20 Arm Cavity Finesse

More information

Summary of Cantilever Blade Wire Clamp Testing

Summary of Cantilever Blade Wire Clamp Testing LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY LIGO Laboratory / LIGO Scientific Collaboration ADVANCED LIGO 9th October 2003 Summary of Cantilever Blade Wire Clamp Testing M. Perreur-Lloyd, C. Cantley,

More information

Optical Vernier Technique for Measuring the Lengths of LIGO Fabry-Perot Resonators

Optical Vernier Technique for Measuring the Lengths of LIGO Fabry-Perot Resonators LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY -LIGO- CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Technical Note LIGO-T97074-0- R 0/5/97 Optical Vernier Technique for

More information

LIGO Laboratory / LIGO Scientific Collaboration LIGO. Andrea Lottarini. Distribution of this document: LIGO Scientific Collaboration

LIGO Laboratory / LIGO Scientific Collaboration LIGO. Andrea Lottarini. Distribution of this document: LIGO Scientific Collaboration LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY Laboratory / Scientific Collaboration -T0900477-v4 Date Fast fitting non linear least squares algorithm of 2D gaussian beam images for optical lever

More information

Development of Optical lever system of the 40 meter interferometer

Development of Optical lever system of the 40 meter interferometer LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY -LIGO- CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Technical Note x/xx/99 LIGO-T99xx- - D Development of Optical lever system

More information

TECHNICAL MANUAL UNIVERSAL BOP GPIB VISA INSTRUMENT DRIVER. 1) This manual is valid for the following Model and associated serial numbers:

TECHNICAL MANUAL UNIVERSAL BOP GPIB VISA INSTRUMENT DRIVER. 1) This manual is valid for the following Model and associated serial numbers: TECHNICAL MANUAL UNIVERSAL BOP GPIB VISA INSTRUMENT DRIVER KEPCO INC. An ISO 9001 Company. MODEL UNIVERSAL BOP GPIB VISA INSTRUMENT DRIVER ORDER NO. REV. NO. IMPORTANT NOTES: 1) This manual is valid for

More information

7th Edoardo Amaldi Conference on Gravitational Waves (Amaldi7)

7th Edoardo Amaldi Conference on Gravitational Waves (Amaldi7) Journal of Physics: Conference Series (8) 4 doi:.88/74-6596///4 Lock Acquisition Studies for Advanced Interferometers O Miyakawa, H Yamamoto LIGO Laboratory 8-34, California Institute of Technology, Pasadena,

More information

IVI STEP TYPES. Contents

IVI STEP TYPES. Contents IVI STEP TYPES Contents This document describes the set of IVI step types that TestStand provides. First, the document discusses how to use the IVI step types and how to edit IVI steps. Next, the document

More information

Mode mismatch and sideband imbalance in LIGO I PRM

Mode mismatch and sideband imbalance in LIGO I PRM LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY -LIGO- CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Technical Note LIGO-T04077-00- E Sep/0/04 Mode mismatch and sideband

More information

LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY

LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Technical Report LIGO-T010061-00- D 5/16/01 ISC Electrooptic Shutter:

More information

Q106 Oscillator. Controls and Connectors. Jun 2014

Q106 Oscillator. Controls and Connectors. Jun 2014 The Q106 Oscillator is the foundation of any synthesizer providing the basic waveforms used to construct sounds. With a total range of.05hz to 20kHz+, the Q106 operates as a powerful audio oscillator and

More information

First Time User Manual

First Time User Manual Fiber Fabry-Perot Tunable Filter FFP-TF2 First Time User Manual Micron Optics Inc. 1852 Century Place NE Atlanta, GA 30345 USA phone 404 325 0005 fax 404 325 4082 www.micronoptics.com Copyright 2009 Micron

More information

Advanced LIGO Arm Cavity Baffle ETM Assembly Procedure

Advanced LIGO Arm Cavity Baffle ETM Assembly Procedure LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY LIGO Laboratory / LIGO Scientific Collaboration LIGO 07 August 2013 Advanced LIGO Arm Cavity Baffle ETM Assembly Procedure Lisa Austin, Mike Smith Distribution

More information

TNI mode cleaner/ laser frequency stabilization system

TNI mode cleaner/ laser frequency stabilization system LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY -LIGO- CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Technical Note LIGO-T000077-00- R 8/10/00 TNI mode cleaner/ laser frequency

More information

M2M i-link POINT-TO-MULTIPOINT INSTALLATION INSTRUCTIONS

M2M i-link POINT-TO-MULTIPOINT INSTALLATION INSTRUCTIONS M2M i-link POINT-TO-MULTIPOINT INSTALLATION INSTRUCTIONS 1 TABLE OF CONTENTS 1 TABLE OF CONTENTS... 2 2 GENERAL... 3 3 INSTALLATION... 4 3.1 SUB-STATIONS... 4 3.2 MAIN STATION (PC)... 4 4 CONNECTING THE

More information

1 Functionality 2. 2 Design 2. 3 Understanding the Outputs DC Offset Transmit and Receive Test... 2

1 Functionality 2. 2 Design 2. 3 Understanding the Outputs DC Offset Transmit and Receive Test... 2 Andrea Trevino Rice University June 23, 2006 Contents 1 Functionality 2 2 Design 2 3 Understanding the Outputs 2 3.1 DC Offset.......................................... 2 3.2 Transmit and Receive Test.................................

More information

The Pre Stabilized Laser for the LIGO Caltech 40m Interferometer: Stability Controls and Characterization.

The Pre Stabilized Laser for the LIGO Caltech 40m Interferometer: Stability Controls and Characterization. LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY LIGO CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Document Type LIGO-T010159-00-R 10/15/01 The Pre Stabilized Laser for the

More information

Oscilloscope Calibration Options for 55XX Series Multi-Product Calibrators

Oscilloscope Calibration Options for 55XX Series Multi-Product Calibrators Oscilloscope Calibration Options for 55XX Series Multi-Product Calibrators Extended Specifications These specifications apply to the 5520A-SC1100, 5500A- SC600 and 5500A-SC300 Oscilloscope Calibration

More information

PalmGauss SC PGSC-5G. Instruction Manual

PalmGauss SC PGSC-5G. Instruction Manual PalmGauss SC PGSC-5G Instruction Manual PalmGauss SC PGSC 5G Instruction Manual Thank you very much for purchasing our products. Please, read this instruction manual in order to use our product in safety

More information

About the DSR Dropout, Surge, Ripple Simulator and AC/DC Voltage Source

About the DSR Dropout, Surge, Ripple Simulator and AC/DC Voltage Source About the DSR 100-15 Dropout, Surge, Ripple Simulator and AC/DC Voltage Source Congratulations on your purchase of a DSR 100-15 AE Techron dropout, surge, ripple simulator and AC/DC voltage source. The

More information

Oscilloscope Calibration Options for Fluke 5500A/5520A Multi-Product Calibrators Extended Specifications

Oscilloscope Calibration Options for Fluke 5500A/5520A Multi-Product Calibrators Extended Specifications Oscilloscope Calibration Options for Fluke 5500A/5520A Multi-Product Calibrators Extended Specifications These specifications apply to the 5520A-SC1100, 5500A-SC600 and 5500A-SC300 Oscilloscope Calibration

More information

EMS THOMAS WÜNSCHE. CANwatch. CAN Physical Layer Analyser. User Manual. Documentation for CANwatch version 1.2. Documentation date: November 2004.

EMS THOMAS WÜNSCHE. CANwatch. CAN Physical Layer Analyser. User Manual. Documentation for CANwatch version 1.2. Documentation date: November 2004. Documentation for version 1.2. Documentation date: November 2004. No part of this document or the software described herein may be reproduced in any form without prior written agreement from EMS Dr. Thomas

More information

Multi-channel signals with programmable inter-channel phase ===========================================================

Multi-channel signals with programmable inter-channel phase =========================================================== Multi-channel signals with programmable inter-channel phase =========================================================== This solution requires a C-size VXI cage, a control card, an E1420A counter and,

More information

Model 805 PWM Proportional Valve / Solenoid Driver with Peak and Hold Control Modes

Model 805 PWM Proportional Valve / Solenoid Driver with Peak and Hold Control Modes Applied Processor and Measurement, Inc. FEATURES Model 805 PWM Proportional Valve / Solenoid Driver with Peak and Hold Control Modes Proportional Valve Driver with PWM output 3.5A max proportional control,

More information

Wind Turbine Analysis System - Type 3652 MKII & MKIII

Wind Turbine Analysis System - Type 3652 MKII & MKIII Wind Turbine Analysis System - Type 3652 MKII & MKIII The Wind Turbine Analysis System Type 3652 (WTAS 3652) is designed for remotely acquiring scalar vibration data, process parameters and time series

More information

LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY

LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Document Type LIGO-T950112-00- D 31 Oct 95 ASC Optical Lever Specification

More information

TI 360 System check (1.7 EN) System check function within the d&b D6, D12 and E-PAC amplifiers and remote control via R1

TI 360 System check (1.7 EN) System check function within the d&b D6, D12 and E-PAC amplifiers and remote control via R1 TI 360 System check (1.7 EN) System check function within the d&b D6, D12 and E-PAC amplifiers and remote control via R1 1. Introduction System check is a powerful and convenient tool to check the condition

More information

LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY

LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY - LIGO - CALIFORNIA INSTITUTE OF TECHNOLOGY MASSACHUSETTS INSTITUTE OF TECHNOLOGY Document Type LIGO--T000094-01 - E Sep. 2000 Han2k - End User s Guide

More information

User Manual. Pulse-Delay-Generator TOMBAK

User Manual. Pulse-Delay-Generator TOMBAK Pulse-Delay-Generator TOMBAK User Manual ALPhANOV Optical and Laser Technological Center Phone: +33 (0)5 24 54 52 00 Fax +33 (0)5 40 00 64 07 info@alphanov.com www.alphanov.com Page 1/68 - v1.3 Page 2/68

More information

Oscilloscope Calibration Options for Fluke 5500A/5520A Multi-Product Calibrators

Oscilloscope Calibration Options for Fluke 5500A/5520A Multi-Product Calibrators Oscilloscope Calibration Options for Fluke 5500A/5520A Multi-Product Calibrators Extended Specifications November 1999 General Specifications These specifications apply to the 5520A-SC1100, 5500A-SC600

More information

Configuration Study of Pre-Mode Cleaner and Reference Cavity in the 40m PSL System

Configuration Study of Pre-Mode Cleaner and Reference Cavity in the 40m PSL System ASER INTERFEROMETER GRAVITATIONA WAVE OBSERVATORY -IGO- CAIFORNIA INSTITUTE OF TECHNOOGY MASSACHUSETTS INSTITUTE OF TECHNOOGY Technical Note IGO-T030149-00- R 07/29/03 Configuration Study of Pre-Mode Cleaner

More information

PERFORMANCE OF THE CMS ECAL LASER MONITORING SOURCE IN THE TEST BEAM

PERFORMANCE OF THE CMS ECAL LASER MONITORING SOURCE IN THE TEST BEAM PERFORMANCE OF THE CMS ECAL LASER MONITORING SOURCE IN THE TEST BEAM A. BORNHEIM CALTECH 2 E. California Blvd., Pasadena, CA 925, USA E-mail: bornheim@hep.caltech.edu On behalf of the CMS ECAL Collaboration.

More information

Lab Exercise 9: Stepper and Servo Motors

Lab Exercise 9: Stepper and Servo Motors ME 3200 Mechatronics Laboratory Lab Exercise 9: Stepper and Servo Motors Introduction In this laboratory exercise, you will explore some of the properties of stepper and servomotors. These actuators are

More information

3.0 Operating the MIB* Barrier Gate. 4.0 MLC Controller. Operation Instructions. 4.1 General

3.0 Operating the MIB* Barrier Gate. 4.0 MLC Controller. Operation Instructions. 4.1 General 3.0 Operating the MI* arrier Gate In automatic operation, the MI* arrier gate can be operated using following devices: - Ticket Spitters - Vehicle Detectors - ard Readers - oin and Token acceptors - Radio

More information

FFP-C Fiber Fabry-Perot Controller OPERATING INSTRUCTIONS. Version 1.0 MICRON OPTICS, INC.

FFP-C Fiber Fabry-Perot Controller OPERATING INSTRUCTIONS. Version 1.0 MICRON OPTICS, INC. FFP-C Fiber Fabry-Perot Controller OPERATING INSTRUCTIONS Version 1.0 MICRON OPTICS, INC. 1852 Century Place NE Atlanta, GA 30345 USA Tel (404) 325-0005 Fax (404) 325-4082 www.micronoptics.com Page 2 Table

More information

LabWindows/CVI, VXIpnp driver history for the R&S Radio Tester

LabWindows/CVI, VXIpnp driver history for the R&S Radio Tester Miloslav Macko May 11, 2017 LabWindows/CVI, VXIpnp driver history for the R&S Radio Tester Products: R&S CMA180 Driver history for LabWindows/CVI and VXIplug&play Instrument Driver for C/C++, C#, VEE,

More information

Q106A Oscillator. Aug The Q106A Oscillator module is a combination of the Q106 Oscillator and the Q141 Aid module, all on a single panel.

Q106A Oscillator. Aug The Q106A Oscillator module is a combination of the Q106 Oscillator and the Q141 Aid module, all on a single panel. Aug 2017 The Q106A Oscillator module is a combination of the Q106 Oscillator and the Q141 Aid module, all on a single panel. The Q106A Oscillator is the foundation of any synthesizer providing the basic

More information

Exercise 2-2. Four-Wire Transmitter (Optional) EXERCISE OBJECTIVE DISCUSSION OUTLINE. Ultrasonic level transmitter DISCUSSION

Exercise 2-2. Four-Wire Transmitter (Optional) EXERCISE OBJECTIVE DISCUSSION OUTLINE. Ultrasonic level transmitter DISCUSSION Exercise 2-2 Four-Wire Transmitter (Optional) EXERCISE OBJECTIVE Become familiar with HART point-to-point connection of a four-wire transmitter. DISCUSSION OUTLINE The Discussion of this exercise covers

More information

SCHEDULE WORKSHEET SCHEDULE #

SCHEDULE WORKSHEET SCHEDULE # SCHEDULE WORKSHEET SCHEDULE # SQUEEZE DELAY TIME Cycles SQUEEZE TIME Cycles VALVE MODE Q No Valve Q V1 Q V2 Q V1+V2 Q V3 Q V1+V3 Q V2+V3 Q V1+V2+V3 SQUEEZE PRESSURE/FORCE (PV) PSI / Lb / ma PRESSURE/FORCE

More information

Modular Controller. Key Features. Model Complete system controller for 8 channel applications; EDFA pumping or DWDM signal sources

Modular Controller. Key Features. Model Complete system controller for 8 channel applications; EDFA pumping or DWDM signal sources Model 8008 Modular Controller Key Features Complete system controller for 8 channel applications; EDFA pumping or DWDM signal sources 16 channel controller for 2-D VCSEL arrays The Model 8008 Modular Controller

More information

Velleman Arbitrary Function Generator: Windows 7 by Mr. David Fritz

Velleman Arbitrary Function Generator: Windows 7 by Mr. David Fritz Velleman Arbitrary Function Generator: Windows 7 by Mr. David Fritz You should already have the drivers installed Launch the scope control software. Start > Programs > Velleman > PcLab2000LT What if the

More information

BATTERY MONITOR User Manual

BATTERY MONITOR User Manual BATTERY MONITOR User Manual Manual Version: BM-2016-1 TABLE OF CONTENTS 1 INTRODUCTION... 1 1.1 Product Description... 1 1.2 Key Features... 1 1.3 Versioning... 1 2 PRODUCT OVERVIEW... 2 2.1 Battery Monitor

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

Instruction Manual for the Software of ASSAN V2 Series Receiver

Instruction Manual for the Software of ASSAN V2 Series Receiver Instruction Manual for the Software of ASSAN V2 Series Receiver I. Setup 1. Double click SETUP to enter the welcome interface and click Next. 2. Enter your name and company name and click Next. 3. Select

More information

SCHEDULE WORKSHEET SCHEDULE #

SCHEDULE WORKSHEET SCHEDULE # SCHEDULE WORKSHEET SCHEDULE # CONTACTOR # SQUEEZE TIME Cycles VALVE SELECTION Q V1 Q V2 Q V3 Q V4 Q V5 Q V6 Q V7 Q V8 SQUEEZE PRESSURE/FORCE (PV) PSI / Lb / ma PRESSURE/FORCE SENSE MODE Q Off Q Rising

More information

Model 305 Synchronous Countdown System

Model 305 Synchronous Countdown System Model 305 Synchronous Countdown System Introduction: The Model 305 pre-settable countdown electronics is a high-speed synchronous divider that generates an electronic trigger pulse, locked in time with

More information

Series 70 Servo NXT - Modulating Controller Installation, Operation and Maintenance Manual

Series 70 Servo NXT - Modulating Controller Installation, Operation and Maintenance Manual THE HIGH PERFORMANCE COMPANY Series 70 Hold 1 sec. Hold 1 sec. FOR MORE INFORMATION ON THIS PRODUCT AND OTHER BRAY PRODUCTS PLEASE VISIT OUR WEBSITE www.bray.com Table of Contents 1. Definition of Terms.........................................2

More information

3100LA Broadband Power Amplifier

3100LA Broadband Power Amplifier 3100LA Broadband Power Amplifier HIGH RF VOLTAGES MAY BE PRESENT AT THE OUTPUT OF THIS UNIT. All operating personnel should use extreme caution in handling these voltages and be thoroughly familiar with

More information

High Stability Voltage Source

High Stability Voltage Source Bilt System module - BE2100 High Stability Voltage Source Voltage to ±12V, current to ±200mA High Resolution: 21 bits, 6 ½ digits Ultra Low Noise: down to 6µVp-p Clean output noise spectrum with no spike

More information

INSTRUMENTS, INC. Model 2960AX Disciplined Quartz Frequency Standard 2960AX. Section Page Contents

INSTRUMENTS, INC. Model 2960AX Disciplined Quartz Frequency Standard 2960AX. Section Page Contents INSTRUMENTS, INC. Model 2960AX Disciplined Quartz Frequency Standard 2960AX Section Page Contents 1.0............................. 2......................... Description 2.0.............................

More information

RTD), LM335 Voltage, or AD592 current. c. Constant TE Current (8350 only)

RTD), LM335 Voltage, or AD592 current. c. Constant TE Current (8350 only) Photonics and Instrumentation 309 Model 8000 Modular Controller Comprehensive laser diode protection features Large graphics display, allowing full four-channel visibility Complete laser diode characterization

More information

New Eagle PWM to Analog Converter

New Eagle PWM to Analog Converter New Eagle P.O. Box #272 Ann Arbor, MI 48105-2603 Phone 734.395.2112 Fax 928.395.2114 M E C H A T R O N I C C O N T R O L S O L U T I O N S New Eagle PWM to Analog Converter Revision 0.2 PWM-AN-024-1403

More information

P a g e 1 ST985. TDR Cable Analyzer Instruction Manual. Analog Arts Inc.

P a g e 1 ST985. TDR Cable Analyzer Instruction Manual. Analog Arts Inc. P a g e 1 ST985 TDR Cable Analyzer Instruction Manual Analog Arts Inc. www.analogarts.com P a g e 2 Contents Software Installation... 4 Specifications... 4 Handling Precautions... 4 Operation Instruction...

More information

Servo Switch/Controller Users Manual

Servo Switch/Controller Users Manual Servo Switch/Controller Users Manual March 4, 2005 UK / Europe Office Tel: +44 (0)8700 434040 Fax: +44 (0)8700 434045 info@omniinstruments.co.uk www.omniinstruments.co.uk Australia / Asia Pacific Office

More information

PAM & SAM System User s Manual

PAM & SAM System User s Manual PAM & SAM System User s Manual Part 5 - SAM Drive Technical Information Ordering Number: 9032 011 985 Issue November 14, 2000 This version replaces all previous versions of this document. It also replaces

More information

BMS BMU Vehicle Communications Protocol

BMS BMU Vehicle Communications Protocol BMS Communications Protocol 2013 Tritium Pty Ltd Brisbane, Australia http://www.tritium.com.au 1 of 11 TABLE OF CONTENTS 1 Introduction...3 2 Overview...3 3 allocations...4 4 Data Format...4 5 CAN packet

More information

PROPRIETARY CAN COMMUNICATION DOCUMENT. Proprietary CAN Communication for the PCS Automatic Transmission Controller

PROPRIETARY CAN COMMUNICATION DOCUMENT. Proprietary CAN Communication for the PCS Automatic Transmission Controller Proprietary CAN Communication for the PCS Automatic Transmission Controller 1. Overview The PCS TCU transmits and receives information over a CAN 2.0b Bus. Before implementing CAN communication using the

More information

VB - 4AD 4 Channels Analog Input Module

VB - 4AD 4 Channels Analog Input Module VIGOR ELECTRIC CORP. VB-4AD VB - 4AD 4 Channels Analog Input Module Foreword User Manual This manual contains text, diagrams and explanations which will guide the reader in the correct installation, safe

More information

etatronix PMA-3 Transmitter Tester Manual

etatronix PMA-3 Transmitter Tester Manual etatronix PMA-3 Transmitter Tester Manual TxTester_Manual_rev1.02.docx 1 Version Version Status Changes Date Responsible 1 Release Initial release 01. Apr. 2015 CW 1.01 Release Updated Figure 4 for better

More information

GFT1504 4/8/10 channel Delay Generator

GFT1504 4/8/10 channel Delay Generator Features 4 independent Delay Channels (10 in option) 100 ps resolution (1ps in option) 25 ps RMS jitter (channel to channel) 10 second range Channel Output pulse 6 V/50 Ω, 3 ns rise time Independent control

More information

LadyBug Technologies, LLC LB5926A True-RMS Power Sensor

LadyBug Technologies, LLC LB5926A True-RMS Power Sensor LadyBug Technologies, LLC LB5926A True-RMS Power Sensor LB5926A-Rev-7 LadyBug Technologies www.ladybug-tech.com Telephone: 707-546-1050 Page 1 LB5926A Data Sheet Key PowerSensor+ TM Specifications Frequency

More information

PACSystems* RX3i and Series 90-30

PACSystems* RX3i and Series 90-30 May 2012 PACSystems* RX3i and Series 90-30 Series 90*-30 Analog Output Module, Current/Voltage, 8 Channel, IC693ALG392 RX3i Analog Output Module, Current/Voltage, 8 Channel, IC694ALG392 The PACSystems

More information

CHAPTER 6 DIGITAL INSTRUMENTS

CHAPTER 6 DIGITAL INSTRUMENTS CHAPTER 6 DIGITAL INSTRUMENTS 1 LECTURE CONTENTS 6.1 Logic Gates 6.2 Digital Instruments 6.3 Analog to Digital Converter 6.4 Electronic Counter 6.6 Digital Multimeters 2 6.1 Logic Gates 3 AND Gate The

More information

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

SIMULTANEOUS ABSOLUTE CALIBRATION OF THREE GEODETIC-QUALITY TIMING RECEIVERS

SIMULTANEOUS ABSOLUTE CALIBRATION OF THREE GEODETIC-QUALITY TIMING RECEIVERS 33rd Annual Precise Time and Time nterval (PZT) Meeting SMULTANEOUS ABSOLUTE CALBRATON OF THREE GEODETC-QUALTY TMNG RECEVERS J. F. Plumb', J. White', E. Powers3, K. Larson', and R. Beard2 Department of

More information

Experimental Test of an Alignment Sensing Scheme for a Gravitational-wave Interferometer

Experimental Test of an Alignment Sensing Scheme for a Gravitational-wave Interferometer Experimental Test of an Alignment Sensing Scheme for a Gravitational-wave Interferometer Nergis Mavalvala *, Daniel Sigg and David Shoemaker LIGO Project Department of Physics and Center for Space Research,

More information

PC-based controller for Mechatronics System

PC-based controller for Mechatronics System Course Code: MDP 454, Course Name:, Second Semester 2014 PC-based controller for Mechatronics System Mechanical System PC Controller Controller in the Mechatronics System Configuration Actuators Power

More information

125 Series FTS125-CTV MHz GPS Disciplined Oscillators

125 Series FTS125-CTV MHz GPS Disciplined Oscillators Available at Digi-Key www.digikey.com 125 Series FTS125-CTV-010.0 MHz GPS Disciplined Oscillators 2111 Comprehensive Drive Aurora, Illinois 60505 Phone: 630-851- 4722 Fax: 630-851- 5040 www.conwin.com

More information

Specifications and Interfaces

Specifications and Interfaces Specifications and Interfaces Crimson TNG is a wide band, high gain, direct conversion quadrature transceiver and signal processing platform. Using analogue and digital conversion, it is capable of processing

More information

INSTRUMENTS, INC. Models 2960AR and 2965AR Disciplined Rubidium Frequency Standards. Section Page Contents

INSTRUMENTS, INC. Models 2960AR and 2965AR Disciplined Rubidium Frequency Standards. Section Page Contents INSTRUMENTS, INC. Models 2960AR and 2965AR Disciplined Rubidium Frequency Standards 2960AR 2965AR Section Page Contents 1.0............................. 2......................... Description 2.0.............................

More information

TAPR TICC Timestamping Counter Operation Manual. Introduction

TAPR TICC Timestamping Counter Operation Manual. Introduction TAPR TICC Timestamping Counter Operation Manual Revised: 23 November 2016 2016 Tucson Amateur Packet Radio Corporation Introduction The TAPR TICC is a two-channel timestamping counter ("TSC") implemented

More information

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones 1 Announcements HW8: Due Sunday 10/29 (midnight) Exam 2: In class Thursday 11/9 This object detection lab

More information

This Datasheet is for the IC693ALG391. Analog Current Output - 2 Channel.

This Datasheet is for the IC693ALG391. Analog Current Output - 2 Channel. This Datasheet is for the Analog Current Output - 2 Channel http://www.cimtecautomation.com/parts/p-14575-ic693alg391.aspx Provides the wiring diagrams and installation guidelines for this GE Series 9-3

More information

MAE106 Laboratory Exercises Lab # 1 - Laboratory tools

MAE106 Laboratory Exercises Lab # 1 - Laboratory tools MAE106 Laboratory Exercises Lab # 1 - Laboratory tools University of California, Irvine Department of Mechanical and Aerospace Engineering Goals To learn how to use the oscilloscope, function generator,

More information

PROGRAMMABLE INTRACRANIAL SELF- STIMULATION (ICSS) CURRENT STIMULATOR

PROGRAMMABLE INTRACRANIAL SELF- STIMULATION (ICSS) CURRENT STIMULATOR instrumentation and software for research PROGRAMMABLE INTRACRANIAL SELF- STIMULATION (ICSS) CURRENT STIMULATOR PHM-15X USER S MANUAL DOC-012 Rev. 1.8 Copyright 2012 All Rights Reserved Med Associates

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

8000 SERIES PRECISION MULTIMETER VERIFICATION AND ADJUSTMENT GUIDE

8000 SERIES PRECISION MULTIMETER VERIFICATION AND ADJUSTMENT GUIDE 8000 SERIES PRECISION MULTIMETER VERIFICATION AND ADJUSTMENT GUIDE TRANSMILLE LTD. Version 1.1 : Apr 2015 TABLE OF CONTENTS PREPARING FOR CALIBRATION... 4 INTRODUCTION... 4 CALIBRATION INTERVAL SELECTION...

More information

LC-10 Chipless TagReader v 2.0 August 2006

LC-10 Chipless TagReader v 2.0 August 2006 LC-10 Chipless TagReader v 2.0 August 2006 The LC-10 is a portable instrument that connects to the USB port of any computer. The LC-10 operates in the frequency range of 1-50 MHz, and is designed to detect

More information

FOD Transmitter User s Guide

FOD Transmitter User s Guide FOD Transmitter User s Guide Rev 5, 05/21/2014 AVID Technologies, Inc. FOD Transmitter User s Guide Page 2 General Description The AVID FOD (Foreign Object Detection) Transmitter is a standard WPC Qi V1.1

More information

Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study

Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study Overview When developing and debugging I 2 C based hardware and software, it is extremely helpful

More information

SHIRTS AND SKINS JUNIOR EDITION COASTAL AMUSEMENTS INC SWARTHMORE AVE LAKEWOOD, NJ TEL: FAX:

SHIRTS AND SKINS JUNIOR EDITION COASTAL AMUSEMENTS INC SWARTHMORE AVE LAKEWOOD, NJ TEL: FAX: SHIRTS AND SKINS JUNIOR EDITION COASTAL AMUSEMENTS INC. 1935 SWARTHMORE AVE LAKEWOOD, NJ 08701 TEL: 732-905-6662 FAX: 732-905-6815 W632 SHIRTS AND SKINS FUSE AT MAIN BOARDS F1, 20 mm 2A GATE MOTOR; F2,

More information

Exercise 1. Basic PWM DC Motor Drive EXERCISE OBJECTIVE DISCUSSION OUTLINE. Block diagram of a basic PWM dc motor drive DISCUSSION

Exercise 1. Basic PWM DC Motor Drive EXERCISE OBJECTIVE DISCUSSION OUTLINE. Block diagram of a basic PWM dc motor drive DISCUSSION Exercise 1 Basic PWM DC Motor Drive EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the most basic type of PWM dc motor drive: the buck chopper dc motor drive. You will

More information

DDG-210 Preliminary Manual Version A4

DDG-210 Preliminary Manual Version A4 General Information DDG-210 is a Digital Delay which can control experiments as a master device. Timing is referenced to the leading edge of the START pulse. There are 6 signal outputs available on which

More information

Dual 500ns ADC User Manual

Dual 500ns ADC User Manual 7072 Dual 500ns ADC User Manual copyright FAST ComTec GmbH Grünwalder Weg 28a, D-82041 Oberhaching Germany Version 2.3, May 11, 2009 Copyright Information Copyright Information Copyright 2001-2009 FAST

More information

USER MANUAL SATEL i-link I/O-converter Version 1.6

USER MANUAL SATEL i-link I/O-converter Version 1.6 USER MANUAL SATEL i-link I/O-converter Version 1.6 TABLE OF CONTENTS TABLE OF CONTENTS... 2 IMPORTANT NOTICE... 3 PRODUCT CONFORMITY... 4 WARRANTY AND SAFETY INSTRUCTIONS... 5 1 GENERAL... 6 1.1 SATEL

More information

A New Method for the Calibration of the mv Ranges of an AC Measurement Standard

A New Method for the Calibration of the mv Ranges of an AC Measurement Standard A New Method for the Calibration of the mv Ranges of an AC Measurement Standard Speaker/Author Neil Faulkner Fluke Corporation PO Box 9090, Everett, WA 98206 Phone: (425) 446-5538 FAX: (425) 446-5649 E-mail:

More information

OVEN INDUSTRIES, INC. Model 5C7-362

OVEN INDUSTRIES, INC. Model 5C7-362 OVEN INDUSTRIES, INC. OPERATING MANUAL Model 5C7-362 THERMOELECTRIC MODULE TEMPERATURE CONTROLLER TABLE OF CONTENTS Features... 1 Description... 2 Block Diagram... 3 RS232 Communications Connections...

More information

EECS 318 Electronics Lab Laboratory #2 Electronic Test Equipment

EECS 318 Electronics Lab Laboratory #2 Electronic Test Equipment EECS 318 Electronics Lab Laboratory #2 Electronic Test Equipment Objectives: The purpose of this laboratory is to acquaint you with the electronic sources and measuring equipment you will be using throughout

More information

DI-1100 USB Data Acquisition (DAQ) System Communication Protocol

DI-1100 USB Data Acquisition (DAQ) System Communication Protocol DI-1100 USB Data Acquisition (DAQ) System Communication Protocol DATAQ Instruments Although DATAQ Instruments provides ready-to-run WinDaq software with its DI-1100 Data Acquisition Starter Kits, programmers

More information

NBOSI-CT Operation and Calibration Manual

NBOSI-CT Operation and Calibration Manual NBOSI-CT Operation and Calibration Manual Neil Brown Ocean Sensors, Inc. Bob Petitt/Ray Schmitt 2014 Introduction The CT sensor board is designed to interface to a 4 electrode conductivity cell, and an

More information

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide

LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide LVTX-10 Series Ultrasonic Sensor Installation and Operation Guide M-5578/0516 M-5578/0516 Section TABLE OF CONTENTS 1 Introduction... 1 2 Quick Guide on Getting Started... 2 Mounting the LVTX-10 Series

More information

DT 9818 Waveform-Generator. Hardware Trigger Version. Operating Manual. Version 2.0. May Page 1 of 21

DT 9818 Waveform-Generator. Hardware Trigger Version. Operating Manual. Version 2.0. May Page 1 of 21 DT 9818 Waveform-Generator Hardware Trigger Version Operating Manual Version 2.0 May 2011 Page 1 of 21 Table of Contents 1 Components... 3 1.1 USB DAQ module DT 9818-16SE-BNC... 3 1.2 DT 9818 Waveform-Generator-CD...

More information

5520A. Operators Manual. PQ Option

5520A. Operators Manual. PQ Option 5520A PQ Option Operators Manual PN 1608366 May 2001 2001 Fluke Corporation. All rights reserved. Printed in USA All product names are trademarks of their respective companies. LIMITED WARRANTY AND LIMITATION

More information

A 500 Broadband Power Amplifier

A 500 Broadband Power Amplifier A 500 Broadband Power Amplifier HIGH RF VOLTAGES MAY BE PRESENT AT THE OUTPUT OF THIS UNIT. All operating personnel should use extreme caution in handling these voltages and be thoroughly familiar with

More information

University of California, San Diego Department of Electrical and Computer Engineering

University of California, San Diego Department of Electrical and Computer Engineering University of California, San Diego Department of Electrical and Computer Engineering Part One: Introduction of Lab TAs ECE65, Spring 2007 Lab 0, ECE 65 Lab Orientation 1) James Liao, geniojames@yahoo.com

More information

Model ipm Intelligent Power Monitor

Model ipm Intelligent Power Monitor Model ipm Intelligent Power Monitor Features Monitors Single Phase, Three Phase 4 Wire Wye or Three Phase Delta User Specified Voltage ange, Frequency ange and Configuration Monitors Phase Sequence, Voltage,

More information