Real Time Control for KAGRA covered by EPICS

Size: px
Start display at page:

Download "Real Time Control for KAGRA covered by EPICS"

Transcription

1 Real Time for KAGRA covered by EPICS May 17, 2017 Spring 2017 EPICS Collaboration Meeting Osamu Miyakawa (ICRR, UTokyo) on behalf of KAGRA collaboration EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 1

2 Gravitational waves detected by LIGO Credit: LIGO Scientific Collaboration 2

3 Network of GW detectors KAGRA GEO-HF 600m LIGO-India in proposal 3km, underground LIGO Hanford Advanced-Virgo 4km LIGO Livingston 3km LIGO-Australia in proposal 3 4km

4 Kamioka Tokyo KAGRA is located in Kamioka mine underground - 220km away from Tokyo - 360m altitude - Big laboratory area XMASS (dark matter) XMASS CLIO (GW) CLIO KAMLAND (neutrino) Kamland Suprer Kamiokande Super Kamiokande (neutrino) Office/ room KAGRA KAGRA (GW) KAGRA entrance EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 4

5 KAGRA Project Host: ICRR Utokyo, Co-host: KEK, NAOJ 300+ collaborators from 90+ institutes Constructed in Kamioka mine Underground and cryogenic EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 5

6 Detection of gravitational wave using laser interferometer GWs move mirrors differentially. We measure the distance between mirrors using fringe of light. Expected length change by GW : ~1x10-19 m Mirror Mirror Beam Splitter Lens Fringe Laser Screen EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 6

7 How to get More sensitivity with control? Needs to keep dark at detection port Bright port Dark port feedback EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 7

8 Development of optical configurations Michelson interferometer (MI) Keep dark condition at detection port to reduce shot noise Fabry-Perot MI (FPMI) Longer light path using Fabry-Perot cavities CLIO Power recycling (PRFPMI) Higher laser power by a power recycling mirror at laser port Dual recycling (DRFPMI) Enhance the GW signals by a signal recycling mirror at the dark port TAMA, LIGO, VIRGO KAGRA, 8 aligo, avirgo

9 Concept of digital system IFO Sensors Real time PC whitening AA ADC LSC/ASC Monitor/Data acquisition Slow control: EPICS switch, gain... 16kHz RT control loop filtering Actuators dewhitening AI DAC signal Fast monitor Real time data Real time control IFO is a multiple DOF plant which has many sensors and actuators Produces control signal using computers Data access without breaking control Data acquisition(daq) Slow control by using EPICS Flexible human interface PC PC 16Hz PC Network 16kHz PC Data storage 16kHz full data 16Hz EPICS data 1 second data 1 minute data

10 KAGRA control network design Outside Computer center Data storage Front room Remote room Client workstations GPS antenna Timing master 3km Y arm cavity Metal cable Fiber cable Mine Laser 3km X arm Cavity Severs Circuit General network DAQ network TCP/IP: EPICS, NFS, network boot GW data: huge amount, low latency Circuit Long RFM network RT control signal: very low latency Short RFM network Timing network RT control signal: very low latency X end Real-time PCs Center room 3km Y end EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 10

11 system Remote control room DC power supplies for remote electronics Computer room in KAGRA mine 11

12 DAQ network 1 network switch concentrator distributor frame writer frame writer sender sender 3 Real time PCs rack timing network RT PC RT PC RT PC... 2 Mine 200TB storage Outside timing network circuits ADC/DAC 4 20TB storage 20TB storage UPS ~7km 12

13 System layer map Built on RTPCs Epics IOC Epics IOC EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 13

14 Source codes by GUI: Libraries for Real time model on Matlab, Simulink 6DOF input signals Sensors Input Matrix Feedback filters Output Matrix Actuators 6DOF output signals Global controls Whitening/dew hitening Switches EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 14

15 Generated C source of Real Time code from GUI Actual control signals(filter bank, matrix, trigger, linearization etc.)will be generated automatically when building real time modules... //Start of subsystem LSC ************************************************** // FILTER MODULE lsc_pox = filtermoduled(dsp_ptr,dspcoeff,lsc_pox,dword[0][0],0); // FILTER MODULE lsc_poxfb = filtermoduled(dsp_ptr,dspcoeff,lsc_poxfb,dword[0][1],0);.. for(ii=0;ii<1;ii++) { lsc_nxmtrx[1][ii] = plocalepics->ctr.lsc_nxmtrx[ii][0] * lsc_trx + plocalepics->ctr.lsc_nxmtrx[ii][1] * lsc_poxdc; } // Relational Operator lsc_operator = ((plocalepics->ctr.lsc_xthresh) <= (lsc_trx)); // DIVIDE if(lsc_nxmtrx[1][0]!= 0.0) { lsc_divide = lsc_pox / lsc_nxmtrx[1][0]; } else{ lsc_divide = 0.0; } Running as kernel modules of Linux EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa

16 Produced channels Test Point channel: Anchor point of data stream, not to break control loop. Fast real time data (16kHz), limited number to access up to 24/RTPC at a time. ~10000ch. DAQ channel: selected channels from Test Point. To be stored into disks. Decimated from 16Hz to 16kHz. Available to see the past data. ~1000ch. Epics channel: Automatically produced when RT code built, named with similar name as Test Point. Slow (16Hz), stored all the data, accessible to the past data. ~100000ch. No need to write/edit EPICS channel database manually. EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 16

17 MEDM --Length sensing and control system mixer A/D Demodulated signal from PD Feedback filters Output to suspensions D/A EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa 17

18 EPICS covers realtime signals Software for real time access: Dataviewer: osciloscope, DTT: FFT analyzer Foton: digital filter composer Foton: GUI digital filter composer Some MEDM screens are produced automatically when built. Signal excitation 10 filter banks 3 monitor point IN1/IN2/OUT EPICS meeting at KURRI, 2017/5/16, Osamu Miyakawa

19 Guardian Guardian is an application covering on EPICS to manage states of interferometer. Automatic lock acquisition: down -> locked -> operation by looking EPICS channel info. Review of Scientific Instruments 87, (2016) 19

20 EPICS on Web UI using php-epics EPICS gateway provides external accesses to channel data from outside network of the laboratory. However users need MEDM installation on their local PCs. The php-epics can call some channel access method. (ca_get, ca_put, etc.) We developed Web UI for accessing channels using php-epics, but all the adl files needs to be manually converted.

21 EPICS on Web UI using HTML5 + javascript Automatic conversion of ADL is done using HTML5 + javascript, but without channel access. We need a little more time to merge php and HTML5 + javascript for an automatic conversion with channel access.

22 Overall plan Initial KAGRA Michelson at room temp. Phase 1 Michelson with two cryogenic mirrors. Phase 2 Four cryogenic mirrors. Phase 3 DRFPMI with four cryogenic mirrors. Observation run

External review for digital system

External review for digital system External review for digital system JGW-T1100359 3/4/2011 Digital system subgroup member Chief: Osamu Miyakawa Yoichi Aso Kiwamu Izumi Yuta Michimura Shinji Miyoki Naoko Ohishi Takanori Saito External review

More information

Arm Cavity Finesse of Advanced Virgo

Arm Cavity Finesse of Advanced Virgo Arm Cavity Finesse of Advanced Virgo Stefan Hild for OSD OSD internal review, March 2009 Executive summary: Arm Cavity Finesse Current value for the Advanced Virgo arm cavity finesse is 880. Advanced LIGO

More information

Cavity Optics Suspension Subsystem Design Requirements Document

Cavity Optics Suspension Subsystem Design Requirements Document LASER INTERFEROMETER GRAVITATIONAL WAVE OBSERVATORY LIGO Laboratory / LIGO Scientific Collaboration LIGO-T000053-01-D ADVANCED LIGO 13 Feb 2001 Cavity Optics Suspension Subsystem Design Requirements Document

More information

Zynq platform and related instruments

Zynq platform and related instruments Libera Single Pass E / Matjaž Žnidarčič, 12.10.2012 Zynq platform and related instruments Peter Leban, DEELS, June 2017, Paris Content Peter's project Company's projects (continuation) (continuation) LAST

More information

40-Meter Subsystems: As LIGO-Like as Possible

40-Meter Subsystems: As LIGO-Like as Possible 40-Meter Subsystems: As LIGO-Like as Possible PSL» Commissioning» Noise performance Vacuum» Operating pressure goal» EPICS control system PEM» Weather, seismic monitoring» Cable flexibility testing» STACIS

More information

THE DIAGNOSTICS BACK END SYSTEM BASED ON THE IN HOUSE DEVELOPED A DA AND A D O BOARDS

THE DIAGNOSTICS BACK END SYSTEM BASED ON THE IN HOUSE DEVELOPED A DA AND A D O BOARDS THE DIAGNOSTICS BACK END SYSTEM BASED ON THE IN HOUSE DEVELOPED A DA AND A D O BOARDS A. O. Borga #, R. De Monte, M. Ferianis, L. Pavlovic, M. Predonzani, ELETTRA, Trieste, Italy Abstract Several diagnostic

More information

DT9857E. Key Features: Dynamic Signal Analyzer for Sound and Vibration Analysis Expandable to 64 Channels

DT9857E. Key Features: Dynamic Signal Analyzer for Sound and Vibration Analysis Expandable to 64 Channels DT9857E Dynamic Signal Analyzer for Sound and Vibration Analysis Expandable to 64 Channels The DT9857E is a high accuracy dynamic signal acquisition module for noise, vibration, and acoustic measurements

More information

2 MHz Lock-In Amplifier

2 MHz Lock-In Amplifier 2 MHz Lock-In Amplifier SR865 2 MHz dual phase lock-in amplifier SR865 2 MHz Lock-In Amplifier 1 mhz to 2 MHz frequency range Low-noise current and voltage inputs Touchscreen data display - large numeric

More information

Ensemble QLAB. Stand-Alone, 1-4 Axes Piezo Motion Controller. Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation

Ensemble QLAB. Stand-Alone, 1-4 Axes Piezo Motion Controller. Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation Ensemble QLAB Motion Controllers Ensemble QLAB Stand-Alone, 1-4 Axes Piezo Motion Controller Control 1 to 4 axes of piezo nanopositioning stages in open- or closed-loop operation Configurable open-loop

More information

MTI-2100 FOTONIC SENSOR. High resolution, non-contact. measurement of vibration. and displacement

MTI-2100 FOTONIC SENSOR. High resolution, non-contact. measurement of vibration. and displacement A worldwide leader in precision measurement solutions MTI-2100 FOTONIC SENSOR High resolution, non-contact measurement of vibration and displacement MTI-2100 Fotonic TM Sensor Unmatched Resolution and

More information

PITZ Introduction to the Video System

PITZ Introduction to the Video System PITZ Introduction to the Video System Stefan Weiße DESY Zeuthen June 10, 2003 Agenda 1. Introduction to PITZ 2. Why a video system? 3. Schematic structure 4. Client/Server architecture 5. Hardware 6. Software

More information

Polarized Source Development Run Results

Polarized Source Development Run Results Polarized Source Development Run Results Riad Suleiman Injector Group November 18, 2008 Outline Injector Parity DAQ and Helicity Board Pockels Cell Alignment Fast Helicity Reversal Studies: o 30 Hz, 250

More information

LIGO Inspiral Veto Studies

LIGO Inspiral Veto Studies LIGO-G030694-00-Z LIGO Inspiral Veto Studies Peter Shawhan (LIGO Lab / Caltech) Nelson Christensen (Carleton College) Gabriela Gonzalez (L.S.U.) For the LSC Inspiral Analysis Group Thanks to Laura Cadonati

More information

2 MHz Lock-In Amplifier

2 MHz Lock-In Amplifier 2 MHz Lock-In Amplifier SR865 2 MHz dual phase lock-in amplifier SR865 2 MHz Lock-In Amplifier 1 mhz to 2 MHz frequency range Dual reference mode Low-noise current and voltage inputs Touchscreen data display

More information

COPYRIGHT 2011 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED

COPYRIGHT 2011 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED GFS-HFS-SFS100/110 3Gb/s, HD, SD frame synchronizer with optional audio shuffler A Synapse product COPYRIGHT 2011 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS DOCUMENT MAY BE REPRODUCED IN

More information

Session 1 Introduction to Data Acquisition and Real-Time Control

Session 1 Introduction to Data Acquisition and Real-Time Control EE-371 CONTROL SYSTEMS LABORATORY Session 1 Introduction to Data Acquisition and Real-Time Control Purpose The objectives of this session are To gain familiarity with the MultiQ3 board and WinCon software.

More information

Live events staging. Media centers

Live events staging. Media centers Christie Spyder X80 80 megapixel, true 4K@60Hz performance across multiple displays Auditoriums Control rooms Live events staging Post-production Broadcast studios Corporate lobbies Media centers Sports

More information

PEP-II longitudinal feedback and the low groupdelay. Dmitry Teytelman

PEP-II longitudinal feedback and the low groupdelay. Dmitry Teytelman PEP-II longitudinal feedback and the low groupdelay woofer Dmitry Teytelman 1 Outline I. PEP-II longitudinal feedback and the woofer channel II. Low group-delay woofer topology III. Why do we need a separate

More information

Nutaq. PicoDigitizer-125. Up to 64 Channels, 125 MSPS ADCs, FPGA-based DAQ Solution With Up to 32 Channels, 1000 MSPS DACs PRODUCT SHEET. nutaq.

Nutaq. PicoDigitizer-125. Up to 64 Channels, 125 MSPS ADCs, FPGA-based DAQ Solution With Up to 32 Channels, 1000 MSPS DACs PRODUCT SHEET. nutaq. Nutaq Up to 64 Channels, 125 MSPS ADCs, FPGA-based DAQ Solution With Up to 32 Channels, 1000 MSPS DACs PRODUCT SHEET QUEBEC I MONTREAL I N E W YO R K I nutaq.com Nutaq The PicoDigitizer 125-Series is a

More information

SRV02-Series. Ball & Beam. User Manual

SRV02-Series. Ball & Beam. User Manual SRV02-Series Ball & Beam User Manual Table of Contents 1. Description...3 1.1 Modular Options...4 2. System Nomenclature and Components...5 3. System Setup and Assembly...6 3.1 Typical Connections for

More information

PRELIMINARY INFORMATION. Professional Signal Generation and Monitoring Options for RIFEforLIFE Research Equipment

PRELIMINARY INFORMATION. Professional Signal Generation and Monitoring Options for RIFEforLIFE Research Equipment Integrated Component Options Professional Signal Generation and Monitoring Options for RIFEforLIFE Research Equipment PRELIMINARY INFORMATION SquareGENpro is the latest and most versatile of the frequency

More information

Coincidence Detection using the Broadcom AFBR-S4N44P163 4 x 4 SiPM Array and the Vertilon SIB916 Sensor Interface Board Application Note

Coincidence Detection using the Broadcom AFBR-S4N44P163 4 x 4 SiPM Array and the Vertilon SIB916 Sensor Interface Board Application Note Overview The Broadcom AFBR-S4N44P163 4 x 4 element silicon photomultiplier array and Vertilon SIB916 sensor interface board are an ideal combination for use in coincidence detection applications such as

More information

AR SWORD Digital Receiver EXciter (DREX)

AR SWORD Digital Receiver EXciter (DREX) Typical Applications Applied Radar, Inc. Radar Pulse-Doppler processing General purpose waveform generation and collection Multi-channel digital beamforming Military applications SIGINT/ELINT MIMO and

More information

DT9837 Series. High Performance, USB Powered Modules for Sound & Vibration Analysis. Key Features:

DT9837 Series. High Performance, USB Powered Modules for Sound & Vibration Analysis. Key Features: DT9837 Series High Performance, Powered Modules for Sound & Vibration Analysis The DT9837 Series high accuracy dynamic signal acquisition modules are ideal for portable noise, vibration, and acoustic measurements.

More information

Video & Audio Transmission

Video & Audio Transmission CCTV Video, Audio Distribution Amplifier, Video & Power over one Coax AA001 In Line Audio Pickup Box Audio pick up works individually without any other equipment. One add-on mini audio box for all cameras

More information

Vibration-Free Pulse Tube Cryocooler Systems for Gravitational Wave Detectors II II

Vibration-Free Pulse Tube Cryocooler Systems for Gravitational Wave Detectors II II Vibration-Free Pulse Tube Cryocooler Systems for Gravitational Wave Detectors II II --Cooling Performance and Vibration -- Rui Li A, Y. Ikushima A, T. Koyama A, T. Tomaru B, T. Suzuki B, T. Haruyama B,T.

More information

VBOX 3i Dual Antenna Measures Slip and Pitch/Roll (RLVB3iSL)

VBOX 3i Dual Antenna Measures Slip and Pitch/Roll (RLVB3iSL) A VBOX 3i Dual Antenna (VB3iSL) uses a GPS/GLONASS receiver to achieve high level accuracy has the ability to measure slip and pitch/roll angles at 100 Hz. Enabling users to intuitively measure set parameters

More information

VBOX 3i Dual Antenna RTK

VBOX 3i Dual Antenna RTK The VBOX 3i RTK, RACELOGIC s most powerful GPS data logging system, is an RTK enabled version of the VBOX 3i Dual Antenna which can be used in conjunction with an RTK differential Base Station to obtain

More information

Trigger synchronization and phase coherent in high speed multi-channels data acquisition system

Trigger synchronization and phase coherent in high speed multi-channels data acquisition system White Paper Trigger synchronization and phase coherent in high speed multi-channels data acquisition system Synopsis Trigger synchronization and phase coherent acquisition over multiple Data Acquisition

More information

ex 800 Series ematrix System

ex 800 Series ematrix System Protecting Your Human Assets During Emergency ex 800 Series ematrix System The ex 800 Series ematrix System is a fully integrated and versatile public address system which is designed distinctively to

More information

VBOX 3i Single Antenna

VBOX 3i Single Antenna VBOX 3i is one of the best known and highly valued test instruments for non-contact speed and distance measurement. Using a powerful GPS/GLONASS engine, VBOX 3i V4G logs data at 100 times a second and

More information

An Overview of Beam Diagnostic and Control Systems for AREAL Linac

An Overview of Beam Diagnostic and Control Systems for AREAL Linac An Overview of Beam Diagnostic and Control Systems for AREAL Linac Presenter G. Amatuni Ultrafast Beams and Applications 04-07 July 2017, CANDLE, Armenia Contents: 1. Current status of existing diagnostic

More information

UCR 2008, Change 3, Section 5.3.7, Video Distribution System Requirements

UCR 2008, Change 3, Section 5.3.7, Video Distribution System Requirements DoD UCR 2008, Change 3 Errata Sheet UCR 2008, Change 3, Section 5.3.7, Video Distribution System Requirements SECTION 5.3.7.2.2 CORRECTION IPv6 Profile requirements were changed to a conditional clause

More information

SCode V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System

SCode V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System Core Technologies Image Compression MPEG4. It supports high compression rate with good image quality and reduces the requirement of

More information

Agilent 83437A Broadband Light Source Agilent 83438A Erbium ASE Source

Agilent 83437A Broadband Light Source Agilent 83438A Erbium ASE Source Agilent 83437A Agilent 83438A Erbium ASE Source Product Overview H Incoherent light sources for single-mode component and sub-system characterization The Technology 2 The Agilent Technologies 83437A (BBLS)

More information

Seamless Matrix MULTI-ROOM AUDIO AND VIDEO DISTRIBUTION ORDER NO. EL-4KM-VW44

Seamless Matrix MULTI-ROOM AUDIO AND VIDEO DISTRIBUTION ORDER NO. EL-4KM-VW44 ORDER NO. EL-KM-VW The ELAN x Seamless HDMI Matrix allows you to watch up to HDMI inputs on a single TV! Use the Video Wall feature to easily turn multiple video monitors into a single large scale image.

More information

National Park Service Photo. Utah 400 Series 1. Digital Routing Switcher.

National Park Service Photo. Utah 400 Series 1. Digital Routing Switcher. National Park Service Photo Utah 400 Series 1 Digital Routing Switcher Utah Scientific has been involved in the design and manufacture of routing switchers for audio and video signals for over thirty years.

More information

DT9834 Series High-Performance Multifunction USB Data Acquisition Modules

DT9834 Series High-Performance Multifunction USB Data Acquisition Modules DT9834 Series High-Performance Multifunction USB Data Acquisition Modules DT9834 Series High Performance, Multifunction USB DAQ Key Features: Simultaneous subsystem operation on up to 32 analog input channels,

More information

Ponderosa is expandable by 8 input and/or 8 output increments up to 64x64 in a 4RU frame. Typical Configurations:

Ponderosa is expandable by 8 input and/or 8 output increments up to 64x64 in a 4RU frame. Typical Configurations: Ponderosa Now G! in 3 64 x 64 multi-format HD-SDI/SDI video routing switcher Ponderosa 6464HD3G 64 x 64 multi-format HD-SDI/SDI video routing switcher Ponderosa is expandable by 8 input and/or 8 output

More information

VBOX 3i. 100Hz GPS Data Logger (VB3i-V3) Features

VBOX 3i. 100Hz GPS Data Logger (VB3i-V3) Features VBOX 3i (VB3i-V3) is one of the best known and highly valued test instruments for non-contact speed and distance measurement. Using a powerful GPS engine, VBOX 3ilogs data at 100 times a second and features

More information

Getting Started with the LabVIEW Sound and Vibration Toolkit

Getting Started with the LabVIEW Sound and Vibration Toolkit 1 Getting Started with the LabVIEW Sound and Vibration Toolkit This tutorial is designed to introduce you to some of the sound and vibration analysis capabilities in the industry-leading software tool

More information

Low Level RF for PIP-II. Jonathan Edelen LLRF 2017 Workshop (Barcelona) 16 Oct 2017

Low Level RF for PIP-II. Jonathan Edelen LLRF 2017 Workshop (Barcelona) 16 Oct 2017 Low Level RF for PIP-II Jonathan Edelen LLRF 2017 Workshop (Barcelona) 16 Oct 2017 PIP-II LLRF Team Fermilab Brian Chase, Edward Cullerton, Joshua Einstein, Jeremiah Holzbauer, Dan Klepec, Yuriy Pischalnikov,

More information

Noise Detector ND-1 Operating Manual

Noise Detector ND-1 Operating Manual Noise Detector ND-1 Operating Manual SPECTRADYNAMICS, INC 1849 Cherry St. Unit 2 Louisville, CO 80027 Phone: (303) 665-1852 Fax: (303) 604-6088 Table of Contents ND-1 Description...... 3 Safety and Preparation

More information

VBOX 3i. 100Hz GPS Data Logger. Features

VBOX 3i. 100Hz GPS Data Logger. Features VBOX 3i is one of the best known and highly valued test instruments for non-contact speed and distance measurement. Using a powerful GPS engine, VBOX 3i logs data at 100 times a second and features a 400MHz

More information

Digital Lock-In Amplifiers SR850 DSP lock-in amplifier with graphical display

Digital Lock-In Amplifiers SR850 DSP lock-in amplifier with graphical display Digital Lock-In Amplifiers SR850 DSP lock-in amplifier with graphical display SR850 DSP Lock-In Amplifier 1 mhz to 102.4 khz frequency range >100 db dynamic reserve 0.001 degree phase resolution Time constants

More information

Brilliance. Electron Beam Position Processor

Brilliance. Electron Beam Position Processor Brilliance Electron Beam Position Processor Many instruments. Many people. Working together. Stability means knowing your machine has innovative solutions. For users, stability means a machine achieving

More information

Lab 2: A/D, D/A, and Sampling Theorem

Lab 2: A/D, D/A, and Sampling Theorem Lab 2: A/D, D/A, and Sampling Theorem Introduction The purpose of this lab is to explore the principles of analog-to-digital conversion, digital-to-analog conversion, and the sampling theorem. It will

More information

Product Information. EIB 700 Series External Interface Box

Product Information. EIB 700 Series External Interface Box Product Information EIB 700 Series External Interface Box June 2013 EIB 700 Series The EIB 700 units are external interface boxes for precise position measurement. They are ideal for inspection stations

More information

LAB NAME: ELECTRONICS LABORATORY. Ammeters (0-1mA, 0-10mA, 0-15mA, 0-30mA, 0-50mA, 0-100mA,0-50µA,0-

LAB NAME: ELECTRONICS LABORATORY. Ammeters (0-1mA, 0-10mA, 0-15mA, 0-30mA, 0-50mA, 0-100mA,0-50µA,0- LAB NAME: ELECTRONICS LABORATORY 1 Ammeters (0-1mA, 0-10mA, 0-15mA, 0-30mA, 0-50mA, 0-100mA,0-50µA,0-100µA,0-500µA) 2 Cathode Ray Oscilloscope (20MHZ, 30MHZ,) 3 Decade Inductance Box 4 Decade Resistance

More information

Service Manual: Connection Guide Integrated Digital Surgical Suite

Service Manual: Connection Guide Integrated Digital Surgical Suite Service Manual: Connection Guide Integrated Digital Surgical Suite Prepared by: Matthew Gonsalves Client: Massachusetts General Hospital GI Rev: 1.0 February 2012 1 P a g e Service Manual: Connection Guide

More information

MAURICE TE PLATE EUROPEAN SPACE AGENCY ESA-ESTEC

MAURICE TE PLATE EUROPEAN SPACE AGENCY ESA-ESTEC MAURICE TE PLATE EUROPEAN SPACE AGENCY ESA-ESTEC ESA s SMART-2 now renamed LISA Pathfinder Technology demonstrator mission in preparation for LISA. Payload: ESA supplied LISA Technology Package NASA supplied

More information

SC26 Magnetic Field Cancelling System

SC26 Magnetic Field Cancelling System SPICER CONSULTING SYSTEM SC26 SC26 Magnetic Field Cancelling System Makes the ambient magnetic field OK for electron beam tools in 300 mm wafer fabs Real time, wideband cancelling from DC to > 9 khz fields

More information

Fast Orbit Feedback at the SLS. Outline

Fast Orbit Feedback at the SLS. Outline Fast Orbit Feedback at the SLS 2nd Workshop on Beam Orbit Stabilisation (December4-6, 2002, SPring-8) T. Schilcher Outline Noise Sources at SLS Stability / System Requirements Fast Orbit Feedback Implementation

More information

Major Differences Between the DT9847 Series Modules

Major Differences Between the DT9847 Series Modules DT9847 Series Dynamic Signal Analyzer for USB With Low THD and Wide Dynamic Range The DT9847 Series are high-accuracy, dynamic signal acquisition modules designed for sound and vibration applications.

More information

4 MHz Lock-In Amplifier

4 MHz Lock-In Amplifier 4 MHz Lock-In Amplifier SR865A 4 MHz dual phase lock-in amplifier SR865A 4 MHz Lock-In Amplifier 1 mhz to 4 MHz frequency range Low-noise current and voltage inputs Touchscreen data display - large numeric

More information

Agilent 8153A Lightwave Multimeter Technical Specifications

Agilent 8153A Lightwave Multimeter Technical Specifications Agilent 8153A Lightwave Multimeter Technical Specifications The Agilent 8153A is produced to the ISO 9001 international quality system standard as part of Agilent's commitment to continually increasing

More information

ME EN 363 ELEMENTARY INSTRUMENTATION Lab: Basic Lab Instruments and Data Acquisition

ME EN 363 ELEMENTARY INSTRUMENTATION Lab: Basic Lab Instruments and Data Acquisition ME EN 363 ELEMENTARY INSTRUMENTATION Lab: Basic Lab Instruments and Data Acquisition INTRODUCTION Many sensors produce continuous voltage signals. In this lab, you will learn about some common methods

More information

O-to-E and E-to-O Converters

O-to-E and E-to-O Converters O-to-E and E-to-O Converters Our line of Optical-to-Electrical and Electrical-to- Optical converters is ideal for bench research applications where low-cost, high-speed interface for a scope is desired.

More information

GALILEO Timing Receiver

GALILEO Timing Receiver GALILEO Timing Receiver The Space Technology GALILEO Timing Receiver is a triple carrier single channel high tracking performances Navigation receiver, specialized for Time and Frequency transfer application.

More information

Digital BPMs and Orbit Feedback Systems

Digital BPMs and Orbit Feedback Systems Digital BPMs and Orbit Feedback Systems, M. Böge, M. Dehler, B. Keil, P. Pollet, V. Schlott Outline stability requirements at SLS storage ring digital beam position monitors (DBPM) SLS global fast orbit

More information

SCode V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System

SCode V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System Core Technologies Image Compression MPEG4. It supports high compression rate with good image quality and reduces the requirement of

More information

VBOX3i Dual Antenna. Measures Slip and Pitch/Roll (RLVB3iSL) Features

VBOX3i Dual Antenna. Measures Slip and Pitch/Roll (RLVB3iSL) Features VBOX3i dual antenna (VB3iSL) is Racelogic s most powerful GPS data logging system. By utilising two GPS engines configured in a Fixed Baseline RTK setup, the VB3iSL combines high level accuracy and test

More information

INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE. On Industrial Automation and Control

INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE. On Industrial Automation and Control INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE On Industrial Automation and Control By Prof. S. Mukhopadhyay Department of Electrical Engineering IIT Kharagpur Topic Lecture

More information

Installation of a DAQ System in Hall C

Installation of a DAQ System in Hall C Installation of a DAQ System in Hall C Cuore Collaboration Meeting Como, February 21 st - 23 rd 2007 S. Di Domizio A. Giachero M. Pallavicini S. Di Domizio Summary slide CUORE-like DAQ system installed

More information

X820S Seismic / accelerometric digitizer channels - 24 bit

X820S Seismic / accelerometric digitizer channels - 24 bit Seismic / accelerometric digitizer 24-96 channels - 24 bit DESCRIPTION Seismic/accelerometric digitizer equipped with 24-48-72-96 embedded channels for active and passive seismic surveys, dynamic investigations

More information

MULTIDYNE INNOVATIONS IN TELEVISION TESTING & DISTRIBUTION DIGITAL VIDEO, AUDIO & DATA FIBER OPTIC MULTIPLEXER TRANSPORT SYSTEM

MULTIDYNE INNOVATIONS IN TELEVISION TESTING & DISTRIBUTION DIGITAL VIDEO, AUDIO & DATA FIBER OPTIC MULTIPLEXER TRANSPORT SYSTEM MULTIDYNE INNOVATIONS IN TELEVISION TESTING & DISTRIBUTION INSTRUCTION MANUAL DVM-1000 DIGITAL VIDEO, AUDIO & DATA FIBER OPTIC MULTIPLEXER TRANSPORT SYSTEM MULTIDYNE Electronics, Inc. Innovations in Television

More information

4-channel HDMI Network Extender

4-channel HDMI Network Extender RoHS 4-channel HDMI Network Extender Ver..3. (80608) The are a 4-channel HDMI network transmitter and receiver set having a built-in scan converter and scaler. This extender transmits 4-channel HDMI signal

More information

Agilent E5500 Series Phase Noise Measurement Solutions Product Overview

Agilent E5500 Series Phase Noise Measurement Solutions Product Overview Agilent E5500 Series Phase Noise Measurement Solutions Product Overview E5501A/B E5502A/B E5503A/B E5504A/B 50 khz to 1.6 GHz 50 khz to 6 GHz 50 khz to 18 GHz 50 khz to 26.5 GHz The Agilent E5500 series

More information

Video Digital Optical Converter

Video Digital Optical Converter Video Digital Optical Converter Model : W-VD1 AD Model : W-VD2 AD Model : W-VD4 AD Model : W-VD8 AD Video Digital Optical Converter adopt the advanced international digital video and optical fiber transmission

More information

Synthesized Clock Generator

Synthesized Clock Generator Synthesized Clock Generator CG635 DC to 2.05 GHz low-jitter clock generator Clocks from DC to 2.05 GHz Random jitter

More information

Easy HD Expressway! HV-100E/HV-100J/HV-100EH Full HD Digital TV Modulator. HDMI/Composite(CVBS) to DVB-T/ISDB-T/ISDB-Tb

Easy HD Expressway! HV-100E/HV-100J/HV-100EH Full HD Digital TV Modulator. HDMI/Composite(CVBS) to DVB-T/ISDB-T/ISDB-Tb Easy HD Expressway! HV-100E//HV-100EH Full HD Digital TV Modulator HDMI/Composite(CVBS) to DVB-T/ISDB-T/ISDB-Tb HV-100 is the most cost-effective solution to distribute HDMI or composite (CVBS) video to

More information

L-Band Fiber Optic Links

L-Band Fiber Optic Links L-Band Fiber Optic Links Features & Benefits L-Band: 950 3000MHz Up to 10Km distance Wide input power suitable for both Uplink and Downlink applications Powerful management capabilities via a front panel

More information

DPD80 Visible Datasheet

DPD80 Visible Datasheet Data Sheet v1.3 Datasheet Resolved Inc. www.resolvedinstruments.com info@resolvedinstruments.com 217 Resolved Inc. All rights reserved. General Description The DPD8 is a low noise digital photodetector

More information

A Versatile Multichannel Digital Signal Processing Module for Microcalorimeter Arrays

A Versatile Multichannel Digital Signal Processing Module for Microcalorimeter Arrays A Versatile Multichannel Digital Signal Processing Module for Microcalorimeter Arrays H. Tan, J. W. Collins, M. Walby, W. Hennig, W. K. Warburton, P. Grudberg XIA LLC, 3157 Genstar Rd, Hayward, CA 94544,

More information

1Chapter INTRODUCTION. This chapter describes the CST-5000 C-Band satellite terminal, referred to in this manual as the CST-5000 (Figure 1-1).

1Chapter INTRODUCTION. This chapter describes the CST-5000 C-Band satellite terminal, referred to in this manual as the CST-5000 (Figure 1-1). 1Chapter 1. INTRODUCTION This chapter describes the CST-5000 C-Band satellite terminal, referred to in this manual as the CST-5000 (Figure 1-1). Figure 1-1. CST-5000 Single Thread System Rev. 9 1 1 1.1

More information

RF Record & Playback MATTHIAS CHARRIOT APPLICATION ENGINEER

RF Record & Playback MATTHIAS CHARRIOT APPLICATION ENGINEER RF Record & Playback MATTHIAS CHARRIOT APPLICATION ENGINEER Introduction Recording RF Signals WHAT DO WE USE TO RECORD THE RF? Where do we start? Swept spectrum analyzer Real-time spectrum analyzer Oscilloscope

More information

DPD80 Infrared Datasheet

DPD80 Infrared Datasheet Data Sheet v1.4 DPD8 Infrared DPD8 Infrared Datasheet Resolved Inc. www.resolvedinstruments.com info@resolvedinstruments.com 217 Resolved Inc. All rights reserved. DPD8 Infrared General Description The

More information

FS3. Quick Start Guide. Overview. FS3 Control

FS3. Quick Start Guide. Overview. FS3 Control FS3 Quick Start Guide Overview The new FS3 combines AJA's industry-proven frame synchronization with high-quality 4K up-conversion technology to seamlessly integrate SD and HD signals into 4K workflows.

More information

Introduction to QScan

Introduction to QScan Introduction to QScan Shourov K. Chatterji SciMon Camp LIGO Livingston Observatory 2006 August 18 QScan web page Much of this talk is taken from the QScan web page http://www.ligo.caltech.edu/~shourov/q/qscan/

More information

THE DESIGN OF CSNS INSTRUMENT CONTROL

THE DESIGN OF CSNS INSTRUMENT CONTROL THE DESIGN OF CSNS INSTRUMENT CONTROL Jian Zhuang,1,2,3 2,3 2,3 2,3 2,3 2,3, Jiajie Li, Lei HU, Yongxiang Qiu, Lijiang Liao, Ke Zhou 1State Key Laboratory of Particle Detection and Electronics, Beijing,

More information

DATA SHEET. 32 x 32 DVI / HDMI /SDI Matrix, OMM Contents. OMM-2500 (Ver. 1.0)

DATA SHEET. 32 x 32 DVI / HDMI /SDI Matrix, OMM Contents. OMM-2500 (Ver. 1.0) DATA SHEET 32 x 32 DVI / HDMI /SDI Matrix, OMM-2500 Contents 1. Description 2. Key Features 3. Technical Specifications 4. Applications 5. Mechanical Drawing 6. Pin Description OPTICIS HQ Opticis Co.,

More information

2GS100/110-2HS100/110 / Dual channel 3Gb/s, HD down-converter with color corrector and optional cross input audio shuffler

2GS100/110-2HS100/110 / Dual channel 3Gb/s, HD down-converter with color corrector and optional cross input audio shuffler 2GS100/110-2HS100/110 / Dual channel 3Gb/s, HD down-converter with color corrector and optional cross input audio shuffler A Synapse product COPYRIGHT 2018 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO

More information

F M1SDI 1 Ch Tx & Rx. HD SDI Fiber Optic Link with RS 485. User Manual

F M1SDI 1 Ch Tx & Rx. HD SDI Fiber Optic Link with RS 485. User Manual User Manual F M1SDI 1 Ch Tx & Rx HD SDI Fiber Optic Link with RS 485 User Manual 1Introduction 1.1Overview 1.2Features 1.3Application 2 Panel 2.1 Front Panel 2.2 Rear Panel 3Technical Specification Contents

More information

IMAGING GROUP. * With dual port readout at 16MHz/port Detector shown with a C-mount nose and lens, sold separately

IMAGING GROUP. * With dual port readout at 16MHz/port Detector shown with a C-mount nose and lens, sold separately The from Princeton Instruments is the ultimate scientific, intensified CCD camera (ICCD) system, featuring a 1k x 1k interline CCD fiberoptically coupled to Gen III filmless intensifiers. These intensifiers

More information

Part 1 Basic Operation

Part 1 Basic Operation This product is a designed for video surveillance video encode and record, it include H.264 video Compression, large HDD storage, network, embedded Linux operate system and other advanced electronic technology,

More information

Single mode 9/125µm, duplex

Single mode 9/125µm, duplex Fiber Converter Module RS-232 MICROSENS General For the connection of devices, control units and machine controls with standard serial interfaces MICROSENS is offering special fiber converters for the

More information

COPYRIGHT 2018 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS DOCUMENT MAY BE REPRODUCED IN ANY FORM WITHOUT THE PERMISSION OF

COPYRIGHT 2018 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS DOCUMENT MAY BE REPRODUCED IN ANY FORM WITHOUT THE PERMISSION OF 3Gb/s, HD and SD preset based dual logo inserter/generator A Synapse product COPYRIGHT 2018 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS DOCUMENT MAY BE REPRODUCED IN ANY FORM WITHOUT THE

More information

Digital TV Transmitter

Digital TV Transmitter Model: is Digital Horizon s most amazing achievement, as it combines a complete transmitter with output power up to 130W rms and multiple input interfaces in a single 1U 19 rack chassis. This astonishing

More information

Long Distance L-Band Fiber Optic Links

Long Distance L-Band Fiber Optic Links Long Distance L-Band Fiber Optic Links Product Description Features & Benefits L-Band: 950 3000MHz Transmission distance up to 100Km Optimized version for Uplink and Downlink applications Powerful management

More information

Instruction Manual RT-91600D-SL RR-91600D-SL Sixteen Channel Video Multiplexer With Remote Diagnostic Interface

Instruction Manual RT-91600D-SL RR-91600D-SL Sixteen Channel Video Multiplexer With Remote Diagnostic Interface Instruction Manual RT-91600D-SL RR-91600D-SL Sixteen Channel Video Multiplexer With Remote Diagnostic Interface Copyright 2005, American Fibertek, Inc. 0804JD Table of Contents Functional Description...

More information

MX/HD-SDI-3G. Transmit HD-SDI-3G signals over Fiber

MX/HD-SDI-3G. Transmit HD-SDI-3G signals over Fiber MX/HD-SDI-3G Transmit HD-SDI-3G signals over Fiber Key Features Transmit ASI or SDI signal over one single-mode Fiber Support data rate from 19.4Mb/s to 3Gb/s SMPTE 424M, SMPTE 292M, SMPTE 344M and SMPTE

More information

Cryostat Instrumentation Cabling Grounding and Shielding. Eric Hazen Boston University 12/15/08 1

Cryostat Instrumentation Cabling Grounding and Shielding. Eric Hazen Boston University 12/15/08 1 Cryostat Instrumentation Cabling Grounding and Shielding Eric Hazen Boston University 12/15/08 1 Electromagnetic Compatibility We need to classify our instrumentation in terms of Emission and Susceptibility

More information

Beamline improvement during g2p experiment. Pengjia Zhu

Beamline improvement during g2p experiment. Pengjia Zhu Beamline improvement during g2p experiment Pengjia Zhu Review for g2p Q2 0.02 0.20 GeV2 o 6 forward angle detection Review for g2p Polarized NH3 target 1K Refrigerator 2.5/5T Transverse target field Polarization

More information

CTP10 KEY FEATURES SPEC SHEET COMPONENT TEST PLATFORM

CTP10 KEY FEATURES SPEC SHEET COMPONENT TEST PLATFORM COMPONENT TEST PLATFORM Efficiently test passive components in 24/7 operation. Perform single sweep insertion loss and return loss measurements with unprecedented dynamic range, speed and resolution. SPEC

More information

Model 4700 Photodiode Characterizer

Model 4700 Photodiode Characterizer Model 4700 Photodiode Characterizer Complete PD Measurement system The 4700 Photodiode Characterizer is a complete photodiode test system. It will characterize PDs or APDs (upcoming) without the need for

More information

Savant. Savant. SignalCalc. Power in Numbers input channels. Networked chassis with 1 Gigabit Ethernet to host

Savant. Savant. SignalCalc. Power in Numbers input channels. Networked chassis with 1 Gigabit Ethernet to host Power in Numbers Savant SignalCalc 40-1024 input channels Networked chassis with 1 Gigabit Ethernet to host 49 khz analysis bandwidth, all channels with simultaneous storage to disk SignalCalc Dynamic

More information

Ultra-Wideband Scanning Receiver with Signal Activity Detection, Real-Time Recording, IF Playback & Data Analysis Capabilities

Ultra-Wideband Scanning Receiver with Signal Activity Detection, Real-Time Recording, IF Playback & Data Analysis Capabilities Ultra-Wideband Scanning Receiver RFvision-2 (DTA-95) Ultra-Wideband Scanning Receiver with Signal Activity Detection, Real-Time Recording, IF Playback & Data Analysis Capabilities www.d-ta.com RFvision-2

More information

DVM-3000 Series 12 Bit DIGITAL VIDEO, AUDIO and 8 CHANNEL BI-DIRECTIONAL DATA FIBER OPTIC MULTIPLEXER for SURVEILLANCE and TRANSPORTATION

DVM-3000 Series 12 Bit DIGITAL VIDEO, AUDIO and 8 CHANNEL BI-DIRECTIONAL DATA FIBER OPTIC MULTIPLEXER for SURVEILLANCE and TRANSPORTATION DVM-3000 Series 12 Bit DIGITAL VIDEO, AUDIO and 8 CHANNEL BI-DIRECTIONAL FIBER OPTIC MULTIPLEXER for SURVEILLANCE and TRANSPORTATION Exceeds RS-250C Short-haul and Broadcast Video specifications. 12 Bit

More information

OPTICAL POWER METER WITH SMART DETECTOR HEAD

OPTICAL POWER METER WITH SMART DETECTOR HEAD OPTICAL POWER METER WITH SMART DETECTOR HEAD Features Fast response (over 1000 readouts/s) Wavelengths: 440 to 900 nm for visible (VIS) and 800 to 1700 nm for infrared (IR) NIST traceable Built-in attenuator

More information

KRAMER ELECTRONICS LTD. USER MANUAL MODELS: 613T 3G HD-SDI Mini Optical Transmitter. 613R 3G HD-SDI Mini Optical Receiver. P/N: Rev 4

KRAMER ELECTRONICS LTD. USER MANUAL MODELS: 613T 3G HD-SDI Mini Optical Transmitter. 613R 3G HD-SDI Mini Optical Receiver. P/N: Rev 4 KRAMER ELECTRONICS LTD. USER MANUAL MODELS: 613T 3G HD-SDI Mini Optical Transmitter 613R 3G HD-SDI Mini Optical Receiver P/N: 2900-000721 Rev 4 Contents 1 Introduction 1 2 Getting Started 2 2.1 Achieving

More information