Supercam Spectrometer Synchronization at the SMT 7 February 2007 Craig Kulesa

Size: px
Start display at page:

Download "Supercam Spectrometer Synchronization at the SMT 7 February 2007 Craig Kulesa"

Transcription

1 Supercam Spectrometer Synchronization at the SMT 7 February 2007 Craig Kulesa Summary of basic needs: 1. External (hardware) synchronization: We will need to monitor or set numerous TTLlevel digital signals for real time synchronization of the spectrometer where timing is critical. These signals are routed throughout the SMT on a 32-bit digital bus (called the SAMBUS) and connected to the Omnisys spectrometer with standard coaxial cable and BNC connectors. 2. Internal (software) synchronization: For receiver tuning and non-realtime spectrometer needs, we will send commands via 100 Mbit ethernet with a TCP/IP socket interface (e.g. telnet to a network port). This mirrors the current interface for the prototype spectrometer unit, where integration cycles are under software control. Background: All observations made from the ground at submillimeter wavelengths are differential measurements made between signal and reference positions. There are multiple ways of achieving this naturally, each technique has advantages and disadvantages. Thus, Supercam will ultimately have to support all of them. The four principal observing modes of the spectrometer are: 1. Beam switching: the subreflector of the telescope nods back and forth at a full-cycle frequency of 1 to 4 Hz, moving the field of view between signal and reference positions. Thus, the spectrometer must be read out in sync with the subreflector at 2 to 8 Hz. 2. Position Switching: the entire telescope is moved between signal and reference positions; the subreflector remains stationary. Integration times are seconds. 3. On-The-Fly (OTF) Mapping: A variation on position switching, except that the signal position is not a single position the telescope drifts over a large region of sky while the spectrometer is read out at a high rate (~10 Hz). After drifting for seconds, a single reference position is observed for ~20 seconds. 4. Receiver Characterization and Calibration: Single integrations of 1-10 seconds are occasionally made of known (local) objects to establish an intensity (brightness) scale for the spectra and measure the sensitivity of the receiver. The read (R) and write (W) TTL-level signals (LOW=0V, HIGH=5V) that are used for real-time control of the spectrometer are as follows: 1. BLANKING (R): goes LOW when the telescope's subreflector is moving and data should not be taken. Otherwise HIGH. This signal is inverted in the control room for the AOS's. (Beam switching only) 2. SYNC (R): Defines whether we are in the SIGNAL or REFERENCE beams. Very inconsistently defined at the SMT. (Beam-switching only)

2 3. OFF-SOURCE (R): LOW when we are properly tracking the source, HIGH when we are off-source and data should not be taken. (All modes) 4. OTF (W): On-The-Fly bit must be set HIGH by the spectrometer, or some computer synchronized with it, to tell the telescope control system to dump positional data to the data-taking process. (OTF mode only) 5. RECEIVER LOCK (R): This should always be LOW. If it goes HIGH, we must stop taking data and complain! (all modes) 6. FOCUS (R): This should always be LOW. If it goes HIGH, we must stop taking data and complain! (All modes) 7. TRACKER ACKNOWLEDGE (R): After a command to tracker (the process controlling the motion of the telescope), it will acknowledge the command and send this bit HIGH to indicate that the command is being processed, the telescope is about to move, etc. It will be reset once the telescope is on source and the OFF-SOURCE flag drops to LOW. We can use this signal to hint that the telescope is just about ready to observe. Ideally, we would start the spectrometers integrating but not saving data so that the very instant this ACK bit goes LOW, we are already in full swing. Hardware Interface: The figure below describes one possible interface between the Omnisys spectrometer, the SMT and our (to be purchased) data server PC. The aim is for the data server PC to not only accumulate and process the raw spectrometer data files into CLASS and FITS files, but also to insulate the two ARM-based microcontroller boards in the spectrometer chassis from the details of the SMT observing sequence. Thus, the microcontrollers should only get basic start and stop requests. There are seven digital I/O bits to carry between the SAMBUS and the Omnisys spectrometer. We can reduce this to five (4 READ, 1 WRITE) by employing a logical OR operator on three sanity check bits the OFF-SOURCE bit, the FOCUS bit, and the RECEIVER LOCK bit. It may also be possible to include (an inverted) BLANKING in this OR operation. The resultant digital bit amounts to a generalized INVALID bit HIGH if something's bad, LOW if we should be busy integrating.

3 Figure 1: Hardware Installation Configuration Data Bandwidth and Storage: The 32 power combined inputs of the Omnisys spectrometer will serve 1024 channels of 32- bit depth over 550 MHz of total bandwidth. Thus, each of the 64 Supercam beams will dump 2KB of data per scan, or 128 KB for the entire spectrometer. At the 10 Hz rate of OTF scanning, this represents a maximum data bandwidth of 1.3 MB/s or <20 Mbit/s with TCP/IP packet overhead. Given that we are specifying two dedicated 100 Mbit/s ethernet links to the data server PC, this allows for <10% bandwidth utilization. One week's worth of OTF maps at 60% duty cycle is 500 GB of raw spectrometer data. This is readily managed with a modest redundant disk array. We are currently specifying an array of 4 x 500 GB SATA drives in a RAID-5 configuration, for a total of 2 TB of storage. Data Taking Sequence: Common initialization At the SMT, the backend spectrometers are essentially in charge of the entire data taking process, the telescope timing, everything. We can integrate our spectrometer control into the SMT system, or declare independence as a separate backend controller. For the latter, we

4 will have considerably more work to do. However, this will eventually be necessary since Supercam will travel to more than one telescope! Based on the SMT control system source code, for all data modes, the following sequence will take place. #2 and #3 can be ignored if we use some of the existing services in SMTCON. But if we do, we will have to funnel the obtained spectra also through those same network services! 1. The observer will set up their observation sequence and click start. 2. The SMT Executive will send an observation header telling us what has been requested. But that's all it will do. It is up to us to parse this header and determine what needs to be done make sure the observations are scheduled correctly and that all subsystems are started. If beam-switching is requested, now is when we start the subreflector moving... etc. 3. We will now tell TRACKER to move the telescope to the reference position to start the sequence. 4. TRACKER will send the acknowledge bit HIGH. The spectrometer is commanded to begin an observation subject to the digital I/O bit states. The bit states will tell us that we're NOT READY YET. If beam-switching or OTF mapping, the spectrometer should (ideally) start the integration cycles NOW, but not save any spectra to disk until we are actually on-source. 5. Once the telescope is on source the OFF-SOURCE (INVALID) bit goes LOW and we start immediately saving data. A brief guide with pseudo-timing-diagrams for each mode follows: Beam-switching: First, a software command will prompt the spectrometer to begin integrating subject to the state of the BLANKING and INVALID (RECEIVER LOCK FOCUS OFF SOURCE) signals. To start integration, we want BLANKING to be HIGH and INVALID to be LOW. Any deviation from this will stop the integration and cause readout. For BLANKING, LOW lasts for milliseconds before it goes HIGH and the next integration can begin. The SYNC signal is read and passed along to the data archiving process to identify whether it is a signal or reference spectrum. Sadly, the polarity of SYNC is ill-defined at the SMT, and we will likely have to change it in software upon installation (in some parts of the building, HIGH=signal... in others, HIGH=reference). See the figure below for details.

5 Figure 2: Beam Switched Data Sequence Position-switching: Here, the subreflector is fixed and the telescope itself slews between SIGNAL and REFERENCE scans. We will look at the OFF-SOURCE (INVALID) bit to synchronize; it is LOW when the telescope is properly tracking the source. We stop when the INVALID bit goes HIGH or when an integration timer expires. Here, the integration times are long (at least 10 seconds), so timing is not critical we only need to synchronize when to start the integration.

6 Figure 3: Position Switched Data Sequence On-the-Fly Mapping: In OTF mode, we alternate between long (~20 sec) integrations at a REFERENCE position and rapidly dumping spectrometer data at ~10 Hz during the SIGNAL period... as the telescope is drifting across the sky. We will use the OFF-SOURCE (INVALID) bit for long integrations at the reference position just like Position Switching. Once the telescope is commanded to move to the mapping source, we SET the OTF bit HIGH to tell the telescope to generate positional data at a high frequency (~20 Hz) so that each spectrum can be stamped with an accurate time and a telescope position for subsequent data processing. At the same time, a software signal will be sent to the spectrometer to signal to start reading out at 10 Hz but until INVALID goes LOW, data should not be stored. Alternately, we simply start the 10 Hz dumps as soon as INVALID goes LOW. The spectrometer microcontrollers must provide the timestamp for the 10 Hz data dumps so that they can be correlated to the positional data that the telescope generates. A figure showing the OTF data sequence is shown below.

7 Figure 2: On-The-Fly Mapping Sequence Receiver Calibration and Characterization: These measurements need be performed even in the absence of the telescope; they are useful for laboratory measurements too! Here, we need to software-control the spectrometer to perform basic integrations of a specified duration, typically less than 10 seconds. No external synchronization is needed this will be performed by software that is upstream of the spectrometer. This is similar to the interface provided by the prototype spectrometer, where all synchronization was set in software.

GFT channel Time Interval Meter

GFT channel Time Interval Meter Key Features Five-channel Time-Interval Meter: One Start and four Stops - 13 picosecond resolution - < 50 picosecond RMS jitter - > 100 second range - 10 MHz sample rate per channel Common GATE input Input

More information

DX-10 tm Digital Interface User s Guide

DX-10 tm Digital Interface User s Guide DX-10 tm Digital Interface User s Guide GPIO Communications Revision B Copyright Component Engineering, All Rights Reserved Table of Contents Foreword... 2 Introduction... 3 What s in the Box... 3 What

More information

013-RD

013-RD Engineering Note Topic: Product Affected: JAZ-PX Lamp Module Jaz Date Issued: 08/27/2010 Description The Jaz PX lamp is a pulsed, short arc xenon lamp for UV-VIS applications such as absorbance, bioreflectance,

More information

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM.

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM. VideoJet 8000 8-Channel, MPEG-2 Encoder ARCHITECTURAL AND ENGINEERING SPECIFICATION Section 282313 Closed Circuit Video Surveillance Systems PART 2 PRODUCTS 2.01 MANUFACTURER A. Bosch Security Systems

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

EdgeConnect Module Quick Start Guide ITERIS INNOVATION FOR BETTER MOBILITY

EdgeConnect Module Quick Start Guide ITERIS INNOVATION FOR BETTER MOBILITY EdgeConnect Module Quick Start Guide ITERIS INNOVATION FOR BETTER MOBILITY 493456301 Rev B April 2009 Table of Contents Installation... 1 Setup... 2 Operation... 4 Live Video... 4 Video Settings... 5 Network

More information

Design and Use of a DTV Monitoring System consisting of DVQ(M), DVMD/DVRM and DVRG

Design and Use of a DTV Monitoring System consisting of DVQ(M), DVMD/DVRM and DVRG Design and Use of a DTV Monitoring System consisting of DVQ(M), DVMD/DVRM and DVRG When monitoring transmission systems it is often necessary to control the monitoring equipment and to check the measurement

More information

TransitHound Cellphone Detector User Manual Version 1.3

TransitHound Cellphone Detector User Manual Version 1.3 TransitHound Cellphone Detector User Manual Version 1.3 RF3 RF2 Table of Contents Introduction...3 PC Requirements...3 Unit Description...3 Electrical Interfaces...4 Interface Cable...5 USB to Serial Interface

More information

CBF500 High resolution Streak camera

CBF500 High resolution Streak camera High resolution Streak camera Features 400 900 nm spectral sensitivity 5 ps impulse response 10 ps trigger jitter Trigger external or command 5 to 50 ns analysis duration 1024 x 1024, 12-bit readout camera

More information

AC182A 8 Input x 8 Output S-Video Matrix Switch with Audio

AC182A 8 Input x 8 Output S-Video Matrix Switch with Audio Heading AC180A 8 Input x 8 Output Composite Video Matrix Switch with Audio MARCH 2005 AC180A AC182A AC182A 8 Input x 8 Output S-Video Matrix Switch with Audio CUSTOMER SUPPORT INFORMATION Order toll-free

More information

SCART COMMANDER. Channels 2 audio channels 4 video channels 2 digital channels 2 control channels (pin 8 & 16)

SCART COMMANDER. Channels 2 audio channels 4 video channels 2 digital channels 2 control channels (pin 8 & 16) SCART COMMANDER PRODUCT OVERVIEW The Keene Scart Switch Box is a high quality audio/video switcher designed to allow the connection of multiple sources to one display. Particular attention has been given

More information

VIDEO GRABBER. DisplayPort. User Manual

VIDEO GRABBER. DisplayPort. User Manual VIDEO GRABBER DisplayPort User Manual Version Date Description Author 1.0 2016.03.02 New document MM 1.1 2016.11.02 Revised to match 1.5 device firmware version MM 1.2 2019.11.28 Drawings changes MM 2

More information

Solutions to Embedded System Design Challenges Part II

Solutions to Embedded System Design Challenges Part II Solutions to Embedded System Design Challenges Part II Time-Saving Tips to Improve Productivity In Embedded System Design, Validation and Debug Hi, my name is Mike Juliana. Welcome to today s elearning.

More information

GFT Channel Slave Generator

GFT Channel Slave Generator GFT1018 8 Channel Slave Generator Features 8 independent delay channels 1 ps time resolution < 100 ps rms jitter for optical triggered delays 1 second range Electrical or optical output Three trigger modes

More information

Advanced Synchronization Techniques for Data Acquisition

Advanced Synchronization Techniques for Data Acquisition Application Note 128 Advanced Synchronization Techniques for Data Acquisition Introduction Brad Turpin Many of today s instrumentation solutions require sophisticated timing of a variety of I/O functions

More information

DXD-8 Universal Clock

DXD-8 Universal Clock DXD-8 Universal Clock Owner s manual Version 1.00 October 2018 All materials herein Brainstorm Electronics, Inc. Brainstorm Electronics reserves the right to change or modify the contents of this manual

More information

VBOX III 100Hz GPS Speed Sensor. User Guide. Page 1 of 21. VBOX III SPS User Guide

VBOX III 100Hz GPS Speed Sensor. User Guide. Page 1 of 21. VBOX III SPS User Guide VBOX III 100Hz GPS Speed Sensor User Guide Page 1 of 21 VBOX III OVERVIEW... 3 INTRODUCTION... 4 FEATURES... 4 STANDARD INVENTORY... 5 OPTIONAL ACCESSORIES... 5 OPERATION... 6 GETTING STARTED... 12 VBOX.EXE

More information

Manual Version Ver 1.0

Manual Version Ver 1.0 The BG-3 & The BG-7 Multiple Test Pattern Generator with Field Programmable ID Option Manual Version Ver 1.0 BURST ELECTRONICS INC CORRALES, NM 87048 USA (505) 898-1455 VOICE (505) 890-8926 Tech Support

More information

XC-77 (EIA), XC-77CE (CCIR)

XC-77 (EIA), XC-77CE (CCIR) XC-77 (EIA), XC-77CE (CCIR) Monochrome machine vision video camera modules. 1. Outline The XC-77/77CE is a monochrome video camera module designed for the industrial market. The camera is equipped with

More information

DT3162. Ideal Applications Machine Vision Medical Imaging/Diagnostics Scientific Imaging

DT3162. Ideal Applications Machine Vision Medical Imaging/Diagnostics Scientific Imaging Compatible Windows Software GLOBAL LAB Image/2 DT Vision Foundry DT3162 Variable-Scan Monochrome Frame Grabber for the PCI Bus Key Features High-speed acquisition up to 40 MHz pixel acquire rate allows

More information

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline EECS150 - Digital Design Lecture 12 - Video Interfacing Oct. 8, 2013 Prof. Ronald Fearing Electrical Engineering and Computer Sciences University of California, Berkeley (slides courtesy of Prof. John

More information

MODEL 2873 Chassis with RS422 CLOCK RECOVERY Module, IOCRM4

MODEL 2873 Chassis with RS422 CLOCK RECOVERY Module, IOCRM4 MODEL 2873 Chassis with RS422 CLOCK RECOVERY Module, IOCRM4 FEATURES o Clock Recovery from Data Only o RS422 Nominal Input o RS422 Data and Clock outputs o Bit Rate from 1 kbps to 20 Mbps NRZ 1 kbps to

More information

PYROPTIX TM IMAGE PROCESSING SOFTWARE

PYROPTIX TM IMAGE PROCESSING SOFTWARE Innovative Technologies for Maximum Efficiency PYROPTIX TM IMAGE PROCESSING SOFTWARE V1.0 SOFTWARE GUIDE 2017 Enertechnix Inc. PyrOptix Image Processing Software v1.0 Section Index 1. Software Overview...

More information

SLD100/120/200/220. Solid State Drive based long time delay unit with optional second output and bug inserter ALL RIGHTS RESERVED

SLD100/120/200/220. Solid State Drive based long time delay unit with optional second output and bug inserter ALL RIGHTS RESERVED SLD100/120/200/220 Solid State Drive based long time delay unit with optional second output and bug inserter A Synapse product COPYRIGHT 2013 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS

More information

Quick Reference Manual

Quick Reference Manual Quick Reference Manual V1.0 1 Contents 1.0 PRODUCT INTRODUCTION...3 2.0 SYSTEM REQUIREMENTS...5 3.0 INSTALLING PDF-D FLEXRAY PROTOCOL ANALYSIS SOFTWARE...5 4.0 CONNECTING TO AN OSCILLOSCOPE...6 5.0 CONFIGURE

More information

FCPM-6000RC. Mini-Circuits P.O. Box , Brooklyn, NY (718)

FCPM-6000RC. Mini-Circuits  P.O. Box , Brooklyn, NY (718) USB / Ethernet Integrated Frequency Counter & Power Meter 50Ω -30 dbm to +20 dbm, 1 MHz to 6000 MHz The Big Deal Automatically synchronized power & frequency measurements USB and Ethernet control Includes

More information

DT8837. High Performance Ethernet Instrument Module for Sound & Vibration. Overview. Key Features

DT8837. High Performance Ethernet Instrument Module for Sound & Vibration. Overview. Key Features DT8837 High Performance Ethernet Instrument Module for Sound & Vibration Overview The DT8837 is a high-accuracy, multi-channel module that is ideal for sound and vibration measurements. All the I/O channels

More information

CONTENTS. Troubleshooting 1

CONTENTS. Troubleshooting 1 CONTENTS Introduction...3 Troubleshooting Techniques...3 Preparation...3 Knowledge...3 Tools...4 Spare Parts...4 Backups...4 Troubleshooting Steps...5 Step 1: Identify the Specific Symptoms:...5 Step 2:

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

S op o e p C on o t n rol o s L arni n n i g n g O bj b e j ctiv i e v s

S op o e p C on o t n rol o s L arni n n i g n g O bj b e j ctiv i e v s ET 150 Scope Controls Learning Objectives In this lesson you will: learn the location and function of oscilloscope controls. see block diagrams of analog and digital oscilloscopes. see how different input

More information

Globalmediapro SMR-650

Globalmediapro SMR-650 Globalmediapro SMR-650 16 x 16 Modularized Hybrid 3G-SDI Matrix Operation Manual CONTENTS 1. Introduction... 1 2. Applications... 1 3. Package Contents... 1 4. System Requirements... 1 5. Features... 2

More information

Design and Implementation of an AHB VGA Peripheral

Design and Implementation of an AHB VGA Peripheral Design and Implementation of an AHB VGA Peripheral 1 Module Overview Learn about VGA interface; Design and implement an AHB VGA peripheral; Program the peripheral using assembly; Lab Demonstration. System

More information

INSTALLATION AND OPERATION INSTRUCTIONS EVOLUTION VIDEO DISTRIBUTION SYSTEM

INSTALLATION AND OPERATION INSTRUCTIONS EVOLUTION VIDEO DISTRIBUTION SYSTEM INSTALLATION AND OPERATION INSTRUCTIONS EVOLUTION VIDEO DISTRIBUTION SYSTEM ATTENTION: READ THE ENTIRE INSTRUCTION SHEET BEFORE STARTING THE INSTALLATION PROCESS. WARNING! Do not begin to install your

More information

C Module Description

C Module Description ASI Distribution Amplifier with Signal Inversion C Module Description The is an ASI distribution amplifier with up to 8 outputs in double width or 4 outputs in single width. The input is transformer coupled

More information

FEATURES MPEG4/MJPEG DVR

FEATURES MPEG4/MJPEG DVR FEATURES MPEG4/MJPEG DVR Technology Compression format providing crystal clear images with real time performance. Multiplex Allow live display, record, playback, backup and network operation at the same

More information

Agilent Technologies. N5106A PXB MIMO Receiver Tester. Error Messages. Agilent Technologies

Agilent Technologies. N5106A PXB MIMO Receiver Tester. Error Messages. Agilent Technologies Agilent Technologies N5106A PXB MIMO Receiver Tester Messages Agilent Technologies Notices Agilent Technologies, Inc. 2008 2009 No part of this manual may be reproduced in any form or by any means (including

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

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment

Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment Artisan Technology Group is your source for quality new and certified-used/pre-owned equipment FAST SHIPPING AND DELIVERY TENS OF THOUSANDS OF IN-STOCK ITEMS EQUIPMENT DEMOS HUNDREDS OF MANUFACTURERS SUPPORTED

More information

HIgh speed Photo-POlarimeter (HIPPO) User's manual Version November 2008 Stephen Potter

HIgh speed Photo-POlarimeter (HIPPO) User's manual Version November 2008 Stephen Potter 1 of 8 2013/06/01 01:13 PM HIgh speed Photo-POlarimeter (HIPPO) User's manual Version 0.1 25 November 2008 Stephen Potter How to use this manual Arriving at the telescope Observing Knowing your way around

More information

Users Manual FWI HiDef Sync Stripper

Users Manual FWI HiDef Sync Stripper Users Manual FWI HiDef Sync Stripper Allows "legacy" motion control and film synchronizing equipment to work with modern HDTV cameras and monitors providing Tri-Level sync signals. Generates a film-camera

More information

Using a Photron FASTCAM APX RS High-Speed Camera with MiDAS DA

Using a Photron FASTCAM APX RS High-Speed Camera with MiDAS DA Using a Photron FASTCAM APX RS High-Speed Camera with MiDAS DA Date Published: March 2010 Revised: December 2012 Abstract This application note describes the hardware connections and software settings

More information

Set-Top Box Video Quality Test Solution

Set-Top Box Video Quality Test Solution Specification Set-Top Box Video Quality Test Solution An Integrated Test Solution for IPTV Set-Top Boxes (over DSL) In the highly competitive telecom market, providing a high-quality video service is crucial

More information

Features of the 745T-20C: Applications of the 745T-20C: Model 745T-20C 20 Channel Digital Delay Generator

Features of the 745T-20C: Applications of the 745T-20C: Model 745T-20C 20 Channel Digital Delay Generator 20 Channel Digital Delay Generator Features of the 745T-20C: 20 Independent delay channels - 100 ps resolution - 25 ps rms jitter - 10 second range Output pulse up to 6 V/50 Ω Independent trigger for every

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

Data Acquisition System for Segmented Reactor Antineutrino Detector

Data Acquisition System for Segmented Reactor Antineutrino Detector Data Acquisition System for Segmented Reactor Antineutrino Detector Z. Hons a,b,*, J. Vlášek a,c,d a Joint Institute for Nuclear Research, Moscow Region, Dubna, Russian Federation b NPI Nuclear Physics

More information

NOTICE: This document is for use only at UNSW. No copies can be made of this document without the permission of the authors.

NOTICE: This document is for use only at UNSW. No copies can be made of this document without the permission of the authors. Brüel & Kjær Pulse Primer University of New South Wales School of Mechanical and Manufacturing Engineering September 2005 Prepared by Michael Skeen and Geoff Lucas NOTICE: This document is for use only

More information

1 Cable Connections. Trouble Shooting Agile from the Observing Specialist s Point of View

1 Cable Connections. Trouble Shooting Agile from the Observing Specialist s Point of View Trouble Shooting Agile from the Observing Specialist s Point of View This document describes relatively simple things to do or check if Agile becomes inoperable, or if you face software problems. If Agile

More information

R5 RIC Quickstart R5 RIC. R5 RIC Quickstart. Saab TransponderTech AB. Appendices. Project designation. Document title. Page 1 (25)

R5 RIC Quickstart R5 RIC. R5 RIC Quickstart. Saab TransponderTech AB. Appendices. Project designation. Document title. Page 1 (25) Appendices 1 (25) Project designation R5 RIC Document title CONTENTS 2 (25) 1 References... 4 2 Dimensions... 5 3 Connectors... 6 3.1 Power input... 6 3.2 Video I... 6 3.3 Video Q... 6 3.4 Sync... 6 3.5

More information

MULTIMEDIA TECHNOLOGIES

MULTIMEDIA TECHNOLOGIES MULTIMEDIA TECHNOLOGIES LECTURE 08 VIDEO IMRAN IHSAN ASSISTANT PROFESSOR VIDEO Video streams are made up of a series of still images (frames) played one after another at high speed This fools the eye into

More information

SignalTap Plus System Analyzer

SignalTap Plus System Analyzer SignalTap Plus System Analyzer June 2000, ver. 1 Data Sheet Features Simultaneous internal programmable logic device (PLD) and external (board-level) logic analysis 32-channel external logic analyzer 166

More information

Technovision DV-66B User Guide (HW V1.3, FW V1.6) Latest Version Sept. 2004

Technovision DV-66B User Guide (HW V1.3, FW V1.6) Latest Version Sept. 2004 Product Description The DV-66B is the PC Board used in the DV-66 player. It enables the DV-66 series to play multi-format media files with High-speed CompactFlash memory cards (CF). The DV-66B is specifically

More information

Spec Sheet R&S SpycerBox Cell

Spec Sheet R&S SpycerBox Cell SpycerBox Cell is the new and distinctive storage solution from Rohde & Schwarz DVS, standing out for its high-density layout and redundant setup. Cascadable thanks to its unique SAS interconnection, the

More information

BABAR IFR TDC Board (ITB): requirements and system description

BABAR IFR TDC Board (ITB): requirements and system description BABAR IFR TDC Board (ITB): requirements and system description Version 1.1 November 1997 G. Crosetti, S. Minutoli, E. Robutti I.N.F.N. Genova 1. Timing measurement with the IFR Accurate track reconstruction

More information

Sensor Development for the imote2 Smart Sensor Platform

Sensor Development for the imote2 Smart Sensor Platform Sensor Development for the imote2 Smart Sensor Platform March 7, 2008 2008 Introduction Aging infrastructure requires cost effective and timely inspection and maintenance practices The condition of a structure

More information

Flexible High Speed Recording. Wideband recording of IF & RF signals

Flexible High Speed Recording. Wideband recording of IF & RF signals Flexible High Speed Recording Wideband recording of IF & RF signals Recording Wideband Signals Recording signals is important in many application areas, both in the lab and in the field. By recording data

More information

SPECIFICATION NO Model 207 Automatic GTAW Welding System

SPECIFICATION NO Model 207 Automatic GTAW Welding System 1.0 Introduction The Model 207 is a completely self-contained Gas Tungsten Arc Welding (GTAW) System requiring only input power, inert gas and AMI Welding Head (or manual torch) for operation. Its small

More information

Striking Clarity, Unparalleled Flexibility, Precision Control

Striking Clarity, Unparalleled Flexibility, Precision Control Striking Clarity, Unparalleled Flexibility, Precision Control Product Brochures English 460XW 460C 460C 800 ieditor The - tents and processed camera inputs to provide the monitoring by supporting camera

More information

SISTORE CX highest quality IP video with recording and analysis

SISTORE CX highest quality IP video with recording and analysis CCTV SISTORE CX highest quality IP video with recording and analysis Building Technologies SISTORE CX intelligent digital video codec SISTORE CX is an intelligent digital video Codec capable of performing

More information

Installation & Operational Manual

Installation & Operational Manual Radiant Communications Corporation 5001 Hadley Road South Plainfield NJ 07080 Tel (908) 757-7444 Fax (908) 757-8666 WWW.RCCFIBER.COM QRF5000M MDU ENCODER Installation & Operational Manual Rev.A2 1. Introduction

More information

15 Inch CGA EGA VGA to XGA LCD Wide Viewing Angle Panel ID# 833

15 Inch CGA EGA VGA to XGA LCD Wide Viewing Angle Panel ID# 833 15 Inch CGA EGA VGA to XGA LCD Wide Viewing Angle Panel ID# 833 Operation Manual Introduction This monitor is an open frame LCD Panel monitor. It features the VESA plug & play system which allows the monitor

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

Salient Systems June, N Mopac Expy, Bldg 3, Ste 700 Austin, Texas FAX

Salient Systems June, N Mopac Expy, Bldg 3, Ste 700 Austin, Texas FAX Salient Systems June, 2014 10801 N Mopac Expy, Bldg 3, Ste 700 Austin, Texas 78759 512-617-4800 512-617-4801 FAX www.salientsys.com Product Guide Specification Specifier Notes: This product guide specification

More information

BrightEye NXT 410-H Clean HDMI Router with HDCP

BrightEye NXT 410-H Clean HDMI Router with HDCP BrightEye NXT 410-H Clean HDMI Router with HDCP Cleanly Switch HDCP Content The BrightEye NXT 410-H Clean HDMI + HDCP Router provides clean and quiet switching of HDCP encrypted content to its HDMI output

More information

ASNT_PRBS20B_1 18Gbps PRBS7/15 Generator Featuring Jitter Insertion, Selectable Sync, and Output Amplitude Control

ASNT_PRBS20B_1 18Gbps PRBS7/15 Generator Featuring Jitter Insertion, Selectable Sync, and Output Amplitude Control ASNT_PRBS20B_1 18Gbps PRBS7/15 Generator Featuring Jitter Insertion, Selectable Sync, and Output Amplitude Control Broadband frequency range from 20Mbps 18.0Gbps Minimal insertion jitter Fast rise and

More information

C Module Description

C Module Description IQMMX -Input Router & ASI Distribution Amplifier C Module Description The IQMMX is an ASI to 1 switch, distribution amplifier and transport stream switcher with up to 8 outputs in double width form or

More information

Special Applications Modules

Special Applications Modules (IC697HSC700) datasheet Features 59 1 IC697HSC700 a45425 Single slot module Five selectable counter types 12 single-ended or differential inputs TTL, Non-TTL and Magnetic Pickup input thresholds Four positive

More information

GFT Channel Digital Delay Generator

GFT Channel Digital Delay Generator Features 20 independent delay Channels 100 ps resolution 25 ps rms jitter 10 second range Output pulse up to 6 V/50 Ω Independent trigger for every channel Fours Triggers Three are repetitive from three

More information

Hello and welcome to this presentation of the STM32L4 Analog-to-Digital Converter block. It will cover the main features of this block, which is used

Hello and welcome to this presentation of the STM32L4 Analog-to-Digital Converter block. It will cover the main features of this block, which is used Hello and welcome to this presentation of the STM32L4 Analog-to-Digital Converter block. It will cover the main features of this block, which is used to convert the external analog voltage-like sensor

More information

HIGH SPEED ASYNCHRONOUS DATA MULTIPLEXER/ DEMULTIPLEXER FOR HIGH DENSITY DIGITAL RECORDERS

HIGH SPEED ASYNCHRONOUS DATA MULTIPLEXER/ DEMULTIPLEXER FOR HIGH DENSITY DIGITAL RECORDERS HIGH SPEED ASYNCHRONOUS DATA MULTIPLEXER/ DEMULTIPLEXER FOR HIGH DENSITY DIGITAL RECORDERS Mr. Albert Berdugo Mr. Martin Small Aydin Vector Division Calculex, Inc. 47 Friends Lane P.O. Box 339 Newtown,

More information

C ch optical MADI & AoIP I/O. MASTER mode: A C8000 frame may be clocked via MADI input or AES67 network. AoIP Dante Brooklin II OEM module

C ch optical MADI & AoIP I/O. MASTER mode: A C8000 frame may be clocked via MADI input or AES67 network. AoIP Dante Brooklin II OEM module features Interface for AoIP (AES67 or DANTE) Two AoIP network ports for redundant or switch operation MADI I/O connection Optical SFP module / LC connectors (multi mode or single mode fiber) BNC parallel

More information

MTL Software. Overview

MTL Software. Overview MTL Software Overview MTL Windows Control software requires a 2350 controller and together - offer a highly integrated solution to the needs of mechanical tensile, compression and fatigue testing. MTL

More information

NI-DAQmx Device Considerations

NI-DAQmx Device Considerations NI-DAQmx Device Considerations January 2008, 370738M-01 This help file contains information specific to analog output (AO) Series devices, C Series, B Series, E Series devices, digital I/O (DIO) devices,

More information

Matrix Switcher. Users Guide ANI-VGA ANI-V ANI-RGB

Matrix Switcher. Users Guide ANI-VGA ANI-V ANI-RGB Matrix Switcher Users Guide ANI-VGA ANI-V ANI-RGB Document version: 052012 For use of the device and safety of users, please follow the instructions when installing, using and maintaining: The system must

More information

Boonton 4540 Remote Operation Modes

Boonton 4540 Remote Operation Modes Application Note Boonton 4540 Remote Operation Modes Mazumder Alam Product Marketing Manager, Boonton Electronics Abstract Boonton 4540 series power meters are among the leading edge instruments for most

More information

High Speed Data Acquisition Cards

High Speed Data Acquisition Cards High Speed Data Acquisition Cards TPCE TPCE-LE TPCE-I TPCX 2016 Elsys AG www.elsys-instruments.com 1 Product Overview Elsys Data Acquisition Cards are high speed high precision digitizer modules. Based

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

EECS145M 2000 Midterm #1 Page 1 Derenzo

EECS145M 2000 Midterm #1 Page 1 Derenzo UNIVERSITY OF CALIFORNIA College of Engineering Electrical Engineering and Computer Sciences Department EECS 145M: Microcomputer Interfacing Laboratory Spring Midterm #1 (Closed book- calculators OK) Wednesday,

More information

Simple Media Platform Quick Installation Guide V1.0-N. Simple Media Platform. Quick Installation Guide

Simple Media Platform Quick Installation Guide V1.0-N. Simple Media Platform. Quick Installation Guide Simple Media Platform Quick Installation Guide 1. Installation Instruction 1.1 Mounting unit to a 19 rack When selecting the installation site, try to comply with the following: Protective Ground - The

More information

GNS600 SCTE104 VANC inserter, Ethernet data-bridge for 3G, HD and SD SDI Inputs and X31 Cue encoder/decoder

GNS600 SCTE104 VANC inserter, Ethernet data-bridge for 3G, HD and SD SDI Inputs and X31 Cue encoder/decoder VANC inserter, Ethernet data-bridge for 3G, HD and SD SDI Inputs and X31 Cue encoder/decoder A Synapse product COPYRIGHT 2018 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS DOCUMENT MAY BE

More information

Overview. Know Your Oscilloscope. Front Panel. Rear Panel. Sharing Agilent s Resources with Engineering Educators

Overview. Know Your Oscilloscope. Front Panel. Rear Panel. Sharing Agilent s Resources with Engineering Educators Know Your Oscilloscope Overview Front Panel Sharing Agilent s Resources with Engineering Educators www.educatorscorner.com Horizontal (time) controls Run control Special purpose menus/controls Trigger

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

Quick Operation Guide of LTN7700/7600 Series NVR

Quick Operation Guide of LTN7700/7600 Series NVR Quick Operation Guide of LTN7700/7600 Series NVR UD.6L0202B0042A02 Thank you for purchasing our product. If there is any question or request, please do not hesitate to contact dealer. This manual is applicable

More information

Auxiliary states devices

Auxiliary states devices 22 Auxiliary states devices When sampling using multiple frame states, Signal can control external devices such as stimulators in addition to switching the 1401 outputs. This is achieved by using auxiliary

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

Cable Modem. A necessity for tomorrow

Cable Modem. A necessity for tomorrow Cable Modem A necessity for tomorrow Content About Cable-Modem? How Technolgy Works? Methodolgy? Inside cable modem? Difference from ordinary Modem? Present Market sceniro and future? Gallery- Cable Modem

More information

You will be first asked to demonstrate regular operation with default values. You will be asked to reprogram your time values and continue operation

You will be first asked to demonstrate regular operation with default values. You will be asked to reprogram your time values and continue operation Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.111 - Introductory Digital Systems Laboratory (Spring 2006) Laboratory 2 (Traffic Light Controller) Check

More information

Laboratory stand description. Investigation of DVB-T/C/IPTV technologies

Laboratory stand description. Investigation of DVB-T/C/IPTV technologies 1 Laboratory stand description Investigation of DVB-T/C/IPTV technologies Table of Contents 1. Hardware prerequisites... 3 1.1 Hardware parts... 3 1.2 Cables required for system interconnection... 5 1.3

More information

Model 5240 Digital to Analog Key Converter Data Pack

Model 5240 Digital to Analog Key Converter Data Pack Model 5240 Digital to Analog Key Converter Data Pack E NSEMBLE D E S I G N S Revision 2.1 SW v2.0 This data pack provides detailed installation, configuration and operation information for the 5240 Digital

More information

CDMA2000 1xRTT / 1xEV-DO Measurement of time relationship between CDMA RF signal and PP2S clock

CDMA2000 1xRTT / 1xEV-DO Measurement of time relationship between CDMA RF signal and PP2S clock Products: CMU200 CDMA2000 1xRTT / 1xEV-DO Measurement of time relationship between CDMA RF signal and PP2S clock This application explains the setup and procedure to measure the exact time relationship

More information

VERINT EDGEVR 200 INTELLIGENT DIGITAL VIDEO RECORDER (Rev A)

VERINT EDGEVR 200 INTELLIGENT DIGITAL VIDEO RECORDER (Rev A) VERINT EDGEVR 200 INTELLIGENT DIGITAL VIDEO RECORDER (Rev A) TECHNICAL SPECIFICATIONS SECURITY SYSTEM DIVISION 28 ELECTRONIC SAFETY AND SECURITY LEVEL 1 28 20 00 ELECTRONIC SURVEILLANCE LEVEL 2 28 23 00

More information

Remote Application Update for the RCM33xx

Remote Application Update for the RCM33xx Remote Application Update for the RCM33xx AN418 The common method of remotely updating an embedded application is to write directly to parallel flash. This is a potentially dangerous operation because

More information

19 Testing HDCP on HDMI and DisplayPort

19 Testing HDCP on HDMI and DisplayPort 19 Testing HDCP on HDMI and DisplayPort Topics in this chapter: Overview Testing DVI displays with HDCP Testing HDMI displays with HDCP Running an HDMI HDCP self-test Understanding the HDCP test Running

More information

BecauseRFL andhubbel haveapolicyofcontinuousproductimprovement,wereservetherighttochangedesignsandspecificationswithoutnotice.

BecauseRFL andhubbel haveapolicyofcontinuousproductimprovement,wereservetherighttochangedesignsandspecificationswithoutnotice. 1. Introduction 1.1 Overview The RFL VS800 CODEC enables high quality video transmission combined with voice and data over E1 (2.048Mbit/s), T1 (1.55Mbit/s) or Ethernet links. This provides an alternative

More information

IRIG-B PTP Clock Converter Output Module Hardware Installation Manual

IRIG-B PTP Clock Converter Output Module Hardware Installation Manual IRIG-B PTP Clock Converter Output Module Hardware Installation Manual Kyland Technology Co., LTD. Publication Date: May 2012 Version: V1.2 Customer Service Hotline: (+8610) 88796676 FAX: (+8610) 88796678

More information

DE2-115/FGPA README. 1. Running the DE2-115 for basic operation. 2. The code/project files. Project Files

DE2-115/FGPA README. 1. Running the DE2-115 for basic operation. 2. The code/project files. Project Files DE2-115/FGPA README For questions email: jeff.nicholls.63@gmail.com (do not hesitate!) This document serves the purpose of providing additional information to anyone interested in operating the DE2-115

More information

VM-100R. 1 RU HEIGHT PROGRAMMABLE 70 AND 140 MHz HIGH-PERFORMANCE VIDEO/AUDIO MODULATOR

VM-100R. 1 RU HEIGHT PROGRAMMABLE 70 AND 140 MHz HIGH-PERFORMANCE VIDEO/AUDIO MODULATOR VM-100R 1 RU HEIGHT PROGRAMMABLE 70 AND 140 MHz HIGH-PERFORMANCE VIDEO/AUDIO MODULATOR OPTIONS Up to four internal programmable audio subcarrier modulators Support full I:N redundant multiformat configurations,

More information

TEST REPORT. Test Report No. : UL-RPT-RP JD18L V2.0. Manufacturer : Neeo AG. Model No. : 6336-BRAIN FCC ID : 2AKK7-BR633601

TEST REPORT. Test Report No. : UL-RPT-RP JD18L V2.0. Manufacturer : Neeo AG. Model No. : 6336-BRAIN FCC ID : 2AKK7-BR633601 TEST REPORT Test Report No. : UL-RPT-RP11456397JD18L V2.0 Manufacturer : Neeo AG Model No. : 6336-BRAIN FCC ID : 2AKK7-BR633601 Test Standard(s) : FCC Part 15.207 1. This test report shall not be reproduced

More information

INSTRUCTION MANUAL FOR MODEL IOC534 LOW LATENCY FIBER OPTIC TRANSMIT / RECEIVE MODULE

INSTRUCTION MANUAL FOR MODEL IOC534 LOW LATENCY FIBER OPTIC TRANSMIT / RECEIVE MODULE 210 South Third Street North Wales, PA USA 19454 (T) 215-699-2060 (F) 215-699-2061 INSTRUCTION MANUAL FOR LOW LATENCY FIBER OPTIC TRANSMIT / RECEIVE MODULE i TO THE CUSTOMER Thank you for purchasing this

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

Marshall Electronics. Pro A/V Communications VMV-402-SH. 3G/HD/SD-SDI Quad-viewer/Switcher with Audio Meter Display. User Manual.

Marshall Electronics. Pro A/V Communications VMV-402-SH. 3G/HD/SD-SDI Quad-viewer/Switcher with Audio Meter Display. User Manual. Marshall Electronics Pro A/V Communications VMV-402-SH 3G/HD/SD-SDI Quad-viewer/Switcher with Audio Meter Display User Manual Table of Contents 1. Introduction... 3 2. Features... 3 3. Package Contents...

More information