Assignment 2 Line Coding Lab

Size: px
Start display at page:

Download "Assignment 2 Line Coding Lab"

Transcription

1 Version 2 March 22, Assignment 2 Line Coding Lab By: Year 2: Hamilton Milligan ID:

2 Assignment 2 Line Coding Lab 1 OBJECTIVE The Objective of this lab / assignment 2 is to investigate and gain a better understanding of line coding schemes, produce appropriate digital signal waveforms and observe their spectra through the use of MATLAB. 2 SETUP Create a data sequence 1. MATLAB: 2. Num_bits=5 3. data=randint(1,num_bits) 1 UNIPOLAR NRZ SCHEME START UP 1. Map data to voltage levels 1,0,+1 Unipolar_NRZ=data 2. Use script digiwave to plot digiwave(unipolar_nrz,1) 3. Title Plot title('unipolar NZR') 4. To save time, reuse code and ensure we have the same random data to compare later on. The follow script was created: MATLAB code Initialiser Script Results from above Start Up (before initaliser script) Assignment 2 Line Coding Lab 1

3 2.1 UNIPOLAR NRZ Setup data sequence 10 bits and generate Unipolar NZR waveform. The following script was created and run after the initialiser script (see above) 2 POLAR SCHEMES: NRZ L AND NRZ I Generate the polar NRZ L and NRZ I waveforms and compare with unipolar NRZ 2.2 NRZ L POLAR SCHEME Assignment 2 Line Coding Lab 2

4 2.3 NRZ I POLAR SCHEME 2.4 COMPARE NZR L AND NZR I WITH UNIPLOAR Comparision: NRZ L looks like the inverse of Unipolar, but twice the height. NRZ I is harder to understand Assignment 2 Line Coding Lab 3

5 3 POLAR SCHEME: RZ 3.1 GENERATE A POLAR RZ WAVEFORM AND Polar RZ waveform is represented by two different levels with each level lasting half of the bit duration. 0=> 1 then 0, 1 => +1 then COMPARE RZ WITH NRZ, NRZ L AND NRZ I Although the markers may seem confusing they do help. I find Polar RZ easier to interpret than NRZ I Assignment 2 Line Coding Lab 4

6 4 POLAR BIPHASE 4.1 MANCHESTER POLAR BIPHASE In Manchester: Each data bit is represented by two different levels with each level lasting half of the bit duration: 0=>+1 then 1 1 => 1 then +1 As a reminder the data used throughout this document (unless stated otherwise) is data = MATLAB code MANCHESTER POLAR BIPHASE Results from data = Comments / Observations: The encoding I have been instructed to do does NOT include a start of ½ cycle of 0 Appears to be Manchester as per IEE standards. 4.2 DIFFERENTIAL MANCHESTER POLAR BIPHASE In Differential Manchester: Each data bit is represented by two different levels with each level lasting half of the bit duration: 0=> Invert previous level then previous level 1 => previous level, then inversion of previous level Assignment 2 Line Coding Lab 5

7 MATLAB code: Differential Manchester Polar Biphase Results from data = BIPOLAR SCHEMES: AMI AND PSEUDOTERNARY 5.1 AMI BIPOLAR 0=>0, 1=> +1 if previous 1 value is 1, otherwise 1 MATLAB code: Bipolar AMI Results from data = NOTE: Following the rule provided, the first 1 value is 1 as it is "otherwise". If there are long runs of 1's there may be syncing problems Assignment 2 Line Coding Lab 6

8 5.2 PSEUDOTERNARY 1=>0, 0=> +1 if previous 0 value is 1, otherwise 1 MATLAB code: PSEUDOTERNARY Results from data = NOTE: Very similar to AMI. Major change is that 0 takes on what 1 does in AMI and 1 takes on the role of 0 in AMI. For Pseudoternary if there are long runs of 1's there may be syncing problems. 5.3 TASK 5 1 Find suitable length of the data sequence that we can give meaningful spectrum plot. 2 Write M file that generates a random data sequence of the desired length, 3 performs mapping of various line coding schemes, and plots the spectra of generated digital signals. 4 Compare the spectrum plots with those discussed in the lecture notes Find Suitable Length of the data sequence Sampling needs to be at least twice the frequency (Nyquist Criteria).,, 2, is max frequency and is sampling rate. PSD metrics are Power and Frequency. digipsd has set at 2 and sampling. T is basically the length of the data sequence. In the lecture notes there seemed to be no information on best data sequence length. pwelsh in MATLAB does not appear to have the ideal sample size based on excep to say it is an integer multiple of T. So Assuming MATLAB is generating radomly, a population of 120 randomly generated 1 and zeros would produce a sampling rate of 2 Hz and a total number of samples of 120*2 = 240 samples. This should be ample and ensure that the welsh PSD shows a good representation of the actual signal Trying different options, I quite liked 120 for the data sequence. 90 and 60 also worked well. under 50 seemed to become more variable with a wider standard deviation. When sampling the general rule is that the size should be 30 or over Write M file see M File in zip file. It is called Lab2Task5.m. to change log y or not, comment out appropriate line in this file within the function digipsdc Assignment 2 Line Coding Lab 7

9 5.3.3 Perform Various mapping of schemes and plot and compare See Lab2Task5.m file. Following is the comparison for the plots with data sequence length of 90. All have the same data. NRZ I is not visible as compared to others as the PSD quickly tends to zero as it has two values, 1 or 1 and the long term average of random generated numbers tends to 0. When changing to log for the y axis, we get the following: Assignment 2 Line Coding Lab 8

10 5.3.4 Compare spectrum with lecture notes Please, I attended all lectures and wrote notes on slides presented. I was not able to compare my results to those in the lecture notes for PSD. As there were no graphs to compare in the notes. The graphs are as I expect on a longer average. Following are all the notes from the lectures concerning sampling and PSD Assignment 2 Line Coding Lab 9

11 6 SUMMARY Attached files with this document in a zip are: Lab2Task1to4.m Lab2Task5.m. To run with log in y axis, go to function digipsdc and follow comments. Overall a good assignment to action. Step 5 was the most difficult especially with interpretation, as there was nothing in our lectures or notes about this. I suspect my sample size could be reduced form 90 to around 50 to still get a reasonably good plot from random numbers, however I decided to keep with 90 as increasing sample size was with very little expense of computing power and speed. This lab overall to a lot of time to perform and write up. Examples and code provided did help. However showing comparisons in MATLAB did take quite a bit of time to write up Assignment 2 Line Coding Lab 10

CS311: Data Communication. Transmission of Digital Signal - I

CS311: Data Communication. Transmission of Digital Signal - I CS311: Data Communication Transmission of Digital Signal - I by Dr. Manas Khatua Assistant Professor Dept. of CSE IIT Jodhpur E-mail: manaskhatua@iitj.ac.in Web: http://home.iitj.ac.in/~manaskhatua http://manaskhatua.github.io/

More information

CAP240 First semester 1430/1431. Sheet 4

CAP240 First semester 1430/1431. Sheet 4 King Saud University College of Computer and Information Sciences Department of Information Technology CAP240 First semester 1430/1431 Sheet 4 Multiple choice Questions 1-Unipolar, bipolar, and polar encoding

More information

UNIVERSITY OF BAHRAIN COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING

UNIVERSITY OF BAHRAIN COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING UNIVERSITY OF BAHRAIN COLLEGE OF ENGINEERING DEPARTMENT OF ELECTRICAL AND ELECTRONIC ENGINEERING EENG 373: DIGITAL COMMUNICATIONS EXPERIMENT NO. 3 BASEBAND DIGITAL TRANSMISSION Objective This experiment

More information

DIGITAL COMMUNICATION

DIGITAL COMMUNICATION 10EC61 DIGITAL COMMUNICATION UNIT 3 OUTLINE Waveform coding techniques (continued), DPCM, DM, applications. Base-Band Shaping for Data Transmission Discrete PAM signals, power spectra of discrete PAM signals.

More information

Communication Lab. Assignment On. Bi-Phase Code and Integrate-and-Dump (DC 7) MSc Telecommunications and Computer Networks Engineering

Communication Lab. Assignment On. Bi-Phase Code and Integrate-and-Dump (DC 7) MSc Telecommunications and Computer Networks Engineering Faculty of Engineering, Science and the Built Environment Department of Electrical, Computer and Communications Engineering Communication Lab Assignment On Bi-Phase Code and Integrate-and-Dump (DC 7) MSc

More information

EC 6501 DIGITAL COMMUNICATION

EC 6501 DIGITAL COMMUNICATION EC 6501 DIGITAL COMMUNICATION UNIT - III PART A 1. Define correlative level coding. [N/D-16] Correlative level coding is used to transmit a baseband signal with the signaling rate of 2Bo over the channel

More information

CPE 400L Computer Communication Laboratory. Laboratory Exercise #9 Baseband Digital Communication

CPE 400L Computer Communication Laboratory. Laboratory Exercise #9 Baseband Digital Communication CPE 400L Computer Communication Laboratory Laboratory Exercise #9 Baseband Digital Communication Department of Electrical and Computer Engineering University of Nevada, at Las Vegas PREPARATION 1- Digital

More information

BASE-LINE WANDER & LINE CODING

BASE-LINE WANDER & LINE CODING BASE-LINE WANDER & LINE CODING PREPARATION... 28 what is base-line wander?... 28 to do before the lab... 29 what we will do... 29 EXPERIMENT... 30 overview... 30 observing base-line wander... 30 waveform

More information

German Jordanian University. Department of Communication Engineering. Digital Communication Systems Lab. CME 313-Lab. Experiment 3.

German Jordanian University. Department of Communication Engineering. Digital Communication Systems Lab. CME 313-Lab. Experiment 3. German Jordanian University Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab Experiment 3 Line Coding Eng. Anas Alashqar Dr. Ala' Khalifeh 1 Experiment3Experiment Line

More information

Experiment 13 Sampling and reconstruction

Experiment 13 Sampling and reconstruction Experiment 13 Sampling and reconstruction Preliminary discussion So far, the experiments in this manual have concentrated on communications systems that transmit analog signals. However, digital transmission

More information

ISCEV SINGLE CHANNEL ERG PROTOCOL DESIGN

ISCEV SINGLE CHANNEL ERG PROTOCOL DESIGN ISCEV SINGLE CHANNEL ERG PROTOCOL DESIGN This spreadsheet has been created to help design a protocol before actually entering the parameters into the Espion software. It details all the protocol parameters

More information

3rd Slide Set Computer Networks

3rd Slide Set Computer Networks Prof. Dr. Christian Baun 3rd Slide Set Computer Networks Frankfurt University of Applied Sciences WS1718 1/41 3rd Slide Set Computer Networks Prof. Dr. Christian Baun Frankfurt University of Applied Sciences

More information

R3B Si TRACKER CABLE TEST REPORT

R3B Si TRACKER CABLE TEST REPORT R3B Si TRACKER CABLE TEST REPORT Author: Mos Kogimtzis Date: 22/05/2012 Department: NPG, Technology Project: R3B Si Tracker Detector Customer: Internal 1. Scope The aim of the test described below is to

More information

NENS 230 Assignment #2 Data Import, Manipulation, and Basic Plotting

NENS 230 Assignment #2 Data Import, Manipulation, and Basic Plotting NENS 230 Assignment #2 Data Import, Manipulation, and Basic Plotting Compound Action Potential Due: Tuesday, October 6th, 2015 Goals Become comfortable reading data into Matlab from several common formats

More information

MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003

MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003 MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003 OBJECTIVE To become familiar with state-of-the-art digital data acquisition hardware and software. To explore common data acquisition

More information

Digital Signal. Continuous. Continuous. amplitude. amplitude. Discrete-time Signal. Analog Signal. Discrete. Continuous. time. time.

Digital Signal. Continuous. Continuous. amplitude. amplitude. Discrete-time Signal. Analog Signal. Discrete. Continuous. time. time. Discrete amplitude Continuous amplitude Continuous amplitude Digital Signal Analog Signal Discrete-time Signal Continuous time Discrete time Digital Signal Discrete time 1 Digital Signal contd. Analog

More information

Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab

Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab German Jordanian University Department of Communication Engineering Digital Communication Systems Lab CME 313-Lab Experiment 3 Pulse Code Modulation Eng. Anas Alashqar Dr. Ala' Khalifeh 1 Experiment 2Experiment

More information

Experiment 7: Bit Error Rate (BER) Measurement in the Noisy Channel

Experiment 7: Bit Error Rate (BER) Measurement in the Noisy Channel Experiment 7: Bit Error Rate (BER) Measurement in the Noisy Channel Modified Dr Peter Vial March 2011 from Emona TIMS experiment ACHIEVEMENTS: ability to set up a digital communications system over a noisy,

More information

Spectral Decomposition in HRS

Spectral Decomposition in HRS Spectral Decomposition in HRS Kevin Gerlitz This PowerPoint presentation illustrates a method of implementing spectral decomposition within HRS by utilizing the Trace Maths utility. What is Spectral Decomposition?

More information

Lab P-6: Synthesis of Sinusoidal Signals A Music Illusion. A k cos.! k t C k / (1)

Lab P-6: Synthesis of Sinusoidal Signals A Music Illusion. A k cos.! k t C k / (1) DSP First, 2e Signal Processing First Lab P-6: Synthesis of Sinusoidal Signals A Music Illusion Pre-Lab: Read the Pre-Lab and do all the exercises in the Pre-Lab section prior to attending lab. Verification:

More information

COSC3213W04 Exercise Set 2 - Solutions

COSC3213W04 Exercise Set 2 - Solutions COSC313W04 Exercise Set - Solutions Encoding 1. Encode the bit-pattern 1010000101 using the following digital encoding schemes. Be sure to write down any assumptions you need to make: a. NRZ-I Need to

More information

BER MEASUREMENT IN THE NOISY CHANNEL

BER MEASUREMENT IN THE NOISY CHANNEL BER MEASUREMENT IN THE NOISY CHANNEL PREPARATION... 2 overview... 2 the basic system... 3 a more detailed description... 4 theoretical predictions... 5 EXPERIMENT... 6 the ERROR COUNTING UTILITIES module...

More information

Dektak Step by Step Instructions:

Dektak Step by Step Instructions: Dektak Step by Step Instructions: Before Using the Equipment SIGN IN THE LOG BOOK Part 1: Setup 1. Turn on the switch at the back of the dektak machine. Then start up the computer. 2. Place the sample

More information

HYBRID CONCATENATED CONVOLUTIONAL CODES FOR DEEP SPACE MISSION

HYBRID CONCATENATED CONVOLUTIONAL CODES FOR DEEP SPACE MISSION HYBRID CONCATENATED CONVOLUTIONAL CODES FOR DEEP SPACE MISSION Presented by Dr.DEEPAK MISHRA OSPD/ODCG/SNPA Objective :To find out suitable channel codec for future deep space mission. Outline: Interleaver

More information

BTV Tuesday 21 November 2006

BTV Tuesday 21 November 2006 Test Review Test from last Thursday. Biggest sellers of converters are HD to composite. All of these monitors in the studio are composite.. Identify the only portion of the vertical blanking interval waveform

More information

PCM ENCODING PREPARATION... 2 PCM the PCM ENCODER module... 4

PCM ENCODING PREPARATION... 2 PCM the PCM ENCODER module... 4 PCM ENCODING PREPARATION... 2 PCM... 2 PCM encoding... 2 the PCM ENCODER module... 4 front panel features... 4 the TIMS PCM time frame... 5 pre-calculations... 5 EXPERIMENT... 5 patching up... 6 quantizing

More information

Lab experience 1: Introduction to LabView

Lab experience 1: Introduction to LabView Lab experience 1: Introduction to LabView LabView is software for the real-time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because

More information

Analysis of local and global timing and pitch change in ordinary

Analysis of local and global timing and pitch change in ordinary Alma Mater Studiorum University of Bologna, August -6 6 Analysis of local and global timing and pitch change in ordinary melodies Roger Watt Dept. of Psychology, University of Stirling, Scotland r.j.watt@stirling.ac.uk

More information

BBN ANG 141 Foundations of phonology Phonetics 3: Acoustic phonetics 1

BBN ANG 141 Foundations of phonology Phonetics 3: Acoustic phonetics 1 BBN ANG 141 Foundations of phonology Phonetics 3: Acoustic phonetics 1 Zoltán Kiss Dept. of English Linguistics, ELTE z. kiss (elte/delg) intro phono 3/acoustics 1 / 49 Introduction z. kiss (elte/delg)

More information

Test Report: Gamma Vibration & Shock

Test Report: Gamma Vibration & Shock SUBJECT: PRODUCT: GAMMA SHOCK, VIBRATION, AND THERMAL PERFORMANCE TOLTEQ RUGGEDIZED GAMMA DATE: JUNE 4, 2014 AUTHOR: PRODUCT DEVELOPMENT DEP SCOPE The purpose of this test is to establish a baseline of

More information

LAB 1: Plotting a GM Plateau and Introduction to Statistical Distribution. A. Plotting a GM Plateau. This lab will have two sections, A and B.

LAB 1: Plotting a GM Plateau and Introduction to Statistical Distribution. A. Plotting a GM Plateau. This lab will have two sections, A and B. LAB 1: Plotting a GM Plateau and Introduction to Statistical Distribution This lab will have two sections, A and B. Students are supposed to write separate lab reports on section A and B, and submit the

More information

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division Objectives In this lab, you will see two types of sequential circuits: latches and flip-flops. Latches and flip-flops can be used

More information

Supplementary Course Notes: Continuous vs. Discrete (Analog vs. Digital) Representation of Information

Supplementary Course Notes: Continuous vs. Discrete (Analog vs. Digital) Representation of Information Supplementary Course Notes: Continuous vs. Discrete (Analog vs. Digital) Representation of Information Introduction to Engineering in Medicine and Biology ECEN 1001 Richard Mihran In the first supplementary

More information

Analog Circuits Prof. Nagendra Krishnapura Department of Electrical Engineering Indian Institute of Technology, Madras. Module - 04 Lecture 12

Analog Circuits Prof. Nagendra Krishnapura Department of Electrical Engineering Indian Institute of Technology, Madras. Module - 04 Lecture 12 Analog Circuits Prof. Nagendra Krishnapura Department of Electrical Engineering Indian Institute of Technology, Madras Module - 04 Lecture 12 So, far we have discussed common source amplifier using an

More information

Tutorial on Technical and Performance Benefits of AD719x Family

Tutorial on Technical and Performance Benefits of AD719x Family The World Leader in High Performance Signal Processing Solutions Tutorial on Technical and Performance Benefits of AD719x Family AD7190, AD7191, AD7192, AD7193, AD7194, AD7195 This slide set focuses on

More information

An Introduction to the Spectral Dynamics Rotating Machinery Analysis (RMA) package For PUMA and COUGAR

An Introduction to the Spectral Dynamics Rotating Machinery Analysis (RMA) package For PUMA and COUGAR An Introduction to the Spectral Dynamics Rotating Machinery Analysis (RMA) package For PUMA and COUGAR Introduction: The RMA package is a PC-based system which operates with PUMA and COUGAR hardware to

More information

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division Objectives In this lab, we will see the sequential circuits latches and flip-flops. Latches and flip-flops can be used to build

More information

Realizing Waveform Characteristics up to a Digitizer s Full Bandwidth Increasing the effective sampling rate when measuring repetitive signals

Realizing Waveform Characteristics up to a Digitizer s Full Bandwidth Increasing the effective sampling rate when measuring repetitive signals Realizing Waveform Characteristics up to a Digitizer s Full Bandwidth Increasing the effective sampling rate when measuring repetitive signals By Jean Dassonville Agilent Technologies Introduction The

More information

Supervised Learning in Genre Classification

Supervised Learning in Genre Classification Supervised Learning in Genre Classification Introduction & Motivation Mohit Rajani and Luke Ekkizogloy {i.mohit,luke.ekkizogloy}@gmail.com Stanford University, CS229: Machine Learning, 2009 Now that music

More information

Activity P32: Variation of Light Intensity (Light Sensor)

Activity P32: Variation of Light Intensity (Light Sensor) Activity P32: Variation of Light Intensity (Light Sensor) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) Illuminance P32 Vary Light.DS P54 Light Bulb Intensity P54_BULB.SWS Equipment Needed

More information

Logic Design ( Part 3) Sequential Logic- Finite State Machines (Chapter 3)

Logic Design ( Part 3) Sequential Logic- Finite State Machines (Chapter 3) Logic esign ( Part ) Sequential Logic- Finite State Machines (Chapter ) Based on slides McGraw-Hill Additional material 00/00/006 Lewis/Martin Additional material 008 Roth Additional material 00 Taylor

More information

400GbE AMs and PAM4 test pattern characteristics

400GbE AMs and PAM4 test pattern characteristics 400GbE AMs and PAM4 test pattern characteristics Pete Anslow, Ciena IEEE P802.3bs Task Force, Logic Ad Hoc, December 205 Introduction A PRBS3Q short test pattern was added to P802.3bs D. and there has

More information

Using Manchester and NRZ Configurable Protocol Decoders

Using Manchester and NRZ Configurable Protocol Decoders Using Manchester and NRZ Configurable Protocol Decoders TECHNICAL BRIEF March 14, 2013 Summary Manchester and NRZ encoding schemes serve as building blocks for industrystandard and custom protocols. Here

More information

Psychoacoustic Evaluation of Fan Noise

Psychoacoustic Evaluation of Fan Noise Psychoacoustic Evaluation of Fan Noise Dr. Marc Schneider Team Leader R&D - Acoustics ebm-papst Mulfingen GmbH & Co.KG Carolin Feldmann, University Siegen Outline Motivation Psychoacoustic Parameters Psychoacoustic

More information

LeCroy Digital Oscilloscopes

LeCroy Digital Oscilloscopes LeCroy Digital Oscilloscopes Get the Complete Picture Quick Reference Guide QUICKSTART TO SIGNAL VIEWING Quickly display a signal View with Analog Persistence 1. Connect your signal. When you use a probe,

More information

ECE438 - Laboratory 4: Sampling and Reconstruction of Continuous-Time Signals

ECE438 - Laboratory 4: Sampling and Reconstruction of Continuous-Time Signals Purdue University: ECE438 - Digital Signal Processing with Applications 1 ECE438 - Laboratory 4: Sampling and Reconstruction of Continuous-Time Signals October 6, 2010 1 Introduction It is often desired

More information

HDBMn: A Novel Line Coding Scheme with Re-encoding Detection Assistance

HDBMn: A Novel Line Coding Scheme with Re-encoding Detection Assistance JOURNAL OF TLCOMMUNICATIONS, OLUM 5, ISSU 2, AUGUST 202 HDMn: A Novel Line Coding Scheme with Re-encoding Detection Assistance Christos S. Koukourlis Abstract In this paper an alternative Line Coding technique

More information

Revision History. SDG2000X Firmware Revision History and Update Instructions

Revision History. SDG2000X Firmware Revision History and Update Instructions Revision History Date Version Revision 2/28/2018 2.01.01.23R8 Optimized calibration and PV process on the production line. 8/29/2017 2.01.01.23R7 1. Supported system recovery from U-disk. 2. Fixed a bug

More information

ECE438 - Laboratory 1: Discrete and Continuous-Time Signals

ECE438 - Laboratory 1: Discrete and Continuous-Time Signals Purdue University: ECE438 - Digital Signal Processing with Applications 1 ECE438 - Laboratory 1: Discrete and Continuous-Time Signals By Prof. Charles Bouman and Prof. Mireille Boutin Fall 2015 1 Introduction

More information

Exercise 1-2. Digital Trunk Interface EXERCISE OBJECTIVE

Exercise 1-2. Digital Trunk Interface EXERCISE OBJECTIVE Exercise 1-2 Digital Trunk Interface EXERCISE OBJECTIVE When you have completed this exercise, you will be able to explain the role of the digital trunk interface in a central office. You will be familiar

More information

SNG-2150C User s Guide

SNG-2150C User s Guide SNG-2150C User s Guide Avcom of Virginia SNG-2150C User s Guide 7730 Whitepine Road Revision 001 Richmond, VA 23237 USA GENERAL SAFETY If one or more components of your earth station are connected to 120

More information

Test time metrics for TP2 waveforms

Test time metrics for TP2 waveforms Test time metrics for TP2 waveforms Two possible methods to examine pattern waveforms instead of eyes Factors that control test times Accuracy issues Post processing/making measurements Page 1 TP2 waveform

More information

Project Summary EPRI Program 1: Power Quality

Project Summary EPRI Program 1: Power Quality Project Summary EPRI Program 1: Power Quality April 2015 PQ Monitoring Evolving from Single-Site Investigations. to Wide-Area PQ Monitoring Applications DME w/pq 2 Equating to large amounts of PQ data

More information

technical note flicker measurement display & lighting measurement

technical note flicker measurement display & lighting measurement technical note flicker measurement display & lighting measurement Contents 1 Introduction... 3 1.1 Flicker... 3 1.2 Flicker images for LCD displays... 3 1.3 Causes of flicker... 3 2 Measuring high and

More information

The Measurement Tools and What They Do

The Measurement Tools and What They Do 2 The Measurement Tools The Measurement Tools and What They Do JITTERWIZARD The JitterWizard is a unique capability of the JitterPro package that performs the requisite scope setup chores while simplifying

More information

E X P E R I M E N T 1

E X P E R I M E N T 1 E X P E R I M E N T 1 Getting to Know Data Studio Produced by the Physics Staff at Collin College Copyright Collin College Physics Department. All Rights Reserved. University Physics, Exp 1: Getting to

More information

HBI Database. Version 2 (User Manual)

HBI Database. Version 2 (User Manual) HBI Database Version 2 (User Manual) St-Petersburg, Russia 2007 2 1. INTRODUCTION...3 2. RECORDING CONDITIONS...6 2.1. EYE OPENED AND EYE CLOSED CONDITION....6 2.2. VISUAL CONTINUOUS PERFORMANCE TASK...6

More information

Instruction Manual. Universal Flow Controller Model 261 / 261-EC-01

Instruction Manual. Universal Flow Controller Model 261 / 261-EC-01 Universal Flow Controller Model 261 / 261-EC-01 Instruction Manual Type ARS 261-EC 01 Art.-no: 82212264 Table of Contents 1. Safety Instructions 2. Product ID - Dimensions 3. Function Description 4. Installation

More information

Course Web site:

Course Web site: The University of Texas at Austin Spring 2018 EE 445S Real- Time Digital Signal Processing Laboratory Prof. Evans Solutions for Homework #1 on Sinusoids, Transforms and Transfer Functions 1. Transfer Functions.

More information

Electrical and Electronic Laboratory Faculty of Engineering Chulalongkorn University. Cathode-Ray Oscilloscope (CRO)

Electrical and Electronic Laboratory Faculty of Engineering Chulalongkorn University. Cathode-Ray Oscilloscope (CRO) 2141274 Electrical and Electronic Laboratory Faculty of Engineering Chulalongkorn University Cathode-Ray Oscilloscope (CRO) Objectives You will be able to use an oscilloscope to measure voltage, frequency

More information

Digital Image and Fourier Transform

Digital Image and Fourier Transform Lab 5 Numerical Methods TNCG17 Digital Image and Fourier Transform Sasan Gooran (Autumn 2009) Before starting this lab you are supposed to do the preparation assignments of this lab. All functions and

More information

Agilent PN Time-Capture Capabilities of the Agilent Series Vector Signal Analyzers Product Note

Agilent PN Time-Capture Capabilities of the Agilent Series Vector Signal Analyzers Product Note Agilent PN 89400-10 Time-Capture Capabilities of the Agilent 89400 Series Vector Signal Analyzers Product Note Figure 1. Simplified block diagram showing basic signal flow in the Agilent 89400 Series VSAs

More information

Application Note. Serial Line Coding Converters AN-CM-264

Application Note. Serial Line Coding Converters AN-CM-264 Application Note AN-CM-264 Abstract Because of its efficiency, serial communication is common in many industries. Usually, standard protocols like UART, I2C or SPI are used for serial interfaces. However,

More information

Pre-Processing of ERP Data. Peter J. Molfese, Ph.D. Yale University

Pre-Processing of ERP Data. Peter J. Molfese, Ph.D. Yale University Pre-Processing of ERP Data Peter J. Molfese, Ph.D. Yale University Before Statistical Analyses, Pre-Process the ERP data Planning Analyses Waveform Tools Types of Tools Filter Segmentation Visual Review

More information

Experiment 9 Analog/Digital Conversion

Experiment 9 Analog/Digital Conversion Experiment 9 Analog/Digital Conversion Introduction Most digital signal processing systems are interfaced to the analog world through analogto-digital converters (A/D) and digital-to-analog converters

More information

ASK THE EXPERTS: Procedure for Verifying Magnetic Pickup Signal Integrity Using a Windrock Portable Analyzer

ASK THE EXPERTS: Procedure for Verifying Magnetic Pickup Signal Integrity Using a Windrock Portable Analyzer December 2016 ASK THE EXPERTS: Procedure for Verifying Magnetic Pickup Signal Integrity Using a Windrock Portable Analyzer QUESTION: Does Windrock have some standard procedures for verifying magnetic pickup

More information

Getting Started. Connect green audio output of SpikerBox/SpikerShield using green cable to your headphones input on iphone/ipad.

Getting Started. Connect green audio output of SpikerBox/SpikerShield using green cable to your headphones input on iphone/ipad. Getting Started First thing you should do is to connect your iphone or ipad to SpikerBox with a green smartphone cable. Green cable comes with designators on each end of the cable ( Smartphone and SpikerBox

More information

Specification of interfaces for 625 line digital PAL signals CONTENTS

Specification of interfaces for 625 line digital PAL signals CONTENTS Specification of interfaces for 625 line digital PAL signals Tech. 328 E April 995 CONTENTS Introduction................................................... 3 Scope........................................................

More information

Part No. ENC-LAB01 Users Manual Introduction EncoderLAB

Part No. ENC-LAB01 Users Manual Introduction EncoderLAB PCA Incremental Encoder Laboratory For Testing and Simulating Incremental Encoder signals Part No. ENC-LAB01 Users Manual The Encoder Laboratory combines into the one housing and updates two separate encoder

More information

Collecting Data Name:

Collecting Data Name: Collecting Data Name: Gary tried out for the college baseball team and had received information about his performance. In a letter mailed to his home, he found these recordings. Pitch speeds: 83, 84, 88,

More information

Physics 105. Spring Handbook of Instructions. M.J. Madsen Wabash College, Crawfordsville, Indiana

Physics 105. Spring Handbook of Instructions. M.J. Madsen Wabash College, Crawfordsville, Indiana Physics 105 Handbook of Instructions Spring 2010 M.J. Madsen Wabash College, Crawfordsville, Indiana 1 During the Middle Ages there were all kinds of crazy ideas, such as that a piece of rhinoceros horn

More information

Lecture 2 Video Formation and Representation

Lecture 2 Video Formation and Representation 2013 Spring Term 1 Lecture 2 Video Formation and Representation Wen-Hsiao Peng ( 彭文孝 ) Multimedia Architecture and Processing Lab (MAPL) Department of Computer Science National Chiao Tung University 1

More information

The EMC, Signal And Power Integrity Institute Presents

The EMC, Signal And Power Integrity Institute Presents The EMC, Signal And Power Integrity Institute Presents Module 12 Pre-emphasis And Its Impact On The Eye Pattern And Bit-Error-Rate For High-Speed Signaling By Dr. David Norte Copyright 2005 by Dr. David

More information

A Matlab toolbox for. Characterisation Of Recorded Underwater Sound (CHORUS) USER S GUIDE

A Matlab toolbox for. Characterisation Of Recorded Underwater Sound (CHORUS) USER S GUIDE Centre for Marine Science and Technology A Matlab toolbox for Characterisation Of Recorded Underwater Sound (CHORUS) USER S GUIDE Version 5.0b Prepared for: Centre for Marine Science and Technology Prepared

More information

Implementation of a turbo codes test bed in the Simulink environment

Implementation of a turbo codes test bed in the Simulink environment University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2005 Implementation of a turbo codes test bed in the Simulink environment

More information

ENGIN 100: Music Signal Processing. PROJECT #1: Tone Synthesizer/Transcriber

ENGIN 100: Music Signal Processing. PROJECT #1: Tone Synthesizer/Transcriber ENGIN 100: Music Signal Processing 1 PROJECT #1: Tone Synthesizer/Transcriber Professor Andrew E. Yagle Dept. of EECS, The University of Michigan, Ann Arbor, MI 48109-2122 I. ABSTRACT This project teaches

More information

ECE-320 Lab 5: Modeling and Controlling a Pendulum

ECE-320 Lab 5: Modeling and Controlling a Pendulum ECE-320 Lab 5: Modeling and Controlling a Pendulum Overview: In this lab we will model a pendulum using frequency response (Bode plot) methods, plus some intuition about the form of the transfer function.

More information

EECS 373 Design of Microprocessor-Based Systems

EECS 373 Design of Microprocessor-Based Systems EECS 373 Design of Microprocessor-Based Systems A day of Misc. Topics Mark Brehob University of Michigan Lecture 12: Finish up Analog and Digital converters Finish design rules Quick discussion of MMIO

More information

Virtual Vibration Analyzer

Virtual Vibration Analyzer Virtual Vibration Analyzer Vibration/industrial systems LabVIEW DAQ by Ricardo Jaramillo, Manager, Ricardo Jaramillo y Cía; Daniel Jaramillo, Engineering Assistant, Ricardo Jaramillo y Cía The Challenge:

More information

MP212 Principles of Audio Technology II

MP212 Principles of Audio Technology II MP212 Principles of Audio Technology II Black Box Analysis Workstations Version 2.0, 11/20/06 revised JMC Copyright 2006 Berklee College of Music. All rights reserved. Acrobat Reader 6.0 or higher required

More information

On Figure of Merit in PAM4 Optical Transmitter Evaluation, Particularly TDECQ

On Figure of Merit in PAM4 Optical Transmitter Evaluation, Particularly TDECQ On Figure of Merit in PAM4 Optical Transmitter Evaluation, Particularly TDECQ Pavel Zivny, Tektronix V1.0 On Figure of Merit in PAM4 Optical Transmitter Evaluation, Particularly TDECQ A brief presentation

More information

Draft 100G SR4 TxVEC - TDP Update. John Petrilla: Avago Technologies February 2014

Draft 100G SR4 TxVEC - TDP Update. John Petrilla: Avago Technologies February 2014 Draft 100G SR4 TxVEC - TDP Update John Petrilla: Avago Technologies February 2014 Supporters David Cunningham Jonathan King Patrick Decker Avago Technologies Finisar Oracle MMF ad hoc February 2014 Avago

More information

AP Statistics Sec 5.1: An Exercise in Sampling: The Corn Field

AP Statistics Sec 5.1: An Exercise in Sampling: The Corn Field AP Statistics Sec.: An Exercise in Sampling: The Corn Field Name: A farmer has planted a new field for corn. It is a rectangular plot of land with a river that runs along the right side of the field. The

More information

MICROLINK 304x A-D Converter User Manual

MICROLINK 304x A-D Converter User Manual MICROLINK 304x A-D Converter User Manual Biodata Limited Manual Code: M3000-3.2 Issue Date: December 1998 Information in this document is subject to change without notice. Updates are listed on our web

More information

PulseCounter Neutron & Gamma Spectrometry Software Manual

PulseCounter Neutron & Gamma Spectrometry Software Manual PulseCounter Neutron & Gamma Spectrometry Software Manual MAXIMUS ENERGY CORPORATION Written by Dr. Max I. Fomitchev-Zamilov Web: maximus.energy TABLE OF CONTENTS 0. GENERAL INFORMATION 1. DEFAULT SCREEN

More information

EDL8 Race Dash Manual Engine Management Systems

EDL8 Race Dash Manual Engine Management Systems Engine Management Systems EDL8 Race Dash Manual Engine Management Systems Page 1 EDL8 Race Dash Page 2 EMS Computers Pty Ltd Unit 9 / 171 Power St Glendenning NSW, 2761 Australia Phone.: +612 9675 1414

More information

Outline. CPE/EE 422/522 Advanced Logic Design L03. Review: Clocked D Flip-Flop with Rising-edge Trigger. Sequential Networks

Outline. CPE/EE 422/522 Advanced Logic Design L03. Review: Clocked D Flip-Flop with Rising-edge Trigger. Sequential Networks Outline PE/EE 422/522 Advanced Logic Design L3 Electrical and omputer Engineering University of Alabama in Huntsville What we know ombinational Networks Analysis, Synthesis, Simplification, Buiing Blocks,

More information

Sensoray. Model 819. Tests Conducted by: ElectroMagnetic Investigations, LLC. May 10, 2013

Sensoray. Model 819. Tests Conducted by: ElectroMagnetic Investigations, LLC. May 10, 2013 European Union (EU) Council Directive 2004/108/EC Electromagnetic Compatibility (EMC) and FCC Part 15 Subpart B Class B Test Report for Information Technology Equipment Sensoray Model 819 May 10, 2013

More information

MachineryMate 800 operating guide Handheld vibration meter

MachineryMate 800 operating guide Handheld vibration meter MachineryMate 800 operating guide Handheld vibration meter Wilcoxon Sensing Technologies 20511 Seneca Meadows Parkway, Germantown MD 20876, USA Amphenol (Maryland), Inc d/b/a Wilcoxon Sensing Technologies

More information

Version : 1.0: klm. General Certificate of Secondary Education November Higher Unit 1. Final. Mark Scheme

Version : 1.0: klm. General Certificate of Secondary Education November Higher Unit 1. Final. Mark Scheme Version : 1.0: 11.10 klm General Certificate of Secondary Education November 2010 Mathematics Higher Unit 1 43601H Final Mark Scheme Mark schemes are prepared by the Principal Examiner and considered,

More information

Instructions for Carrying Out Generic Spectral Analysis Measurements with the HP-3562A Dynamic Signal Analyzer

Instructions for Carrying Out Generic Spectral Analysis Measurements with the HP-3562A Dynamic Signal Analyzer Instructions for Carrying Out Generic Spectral Analysis Measurements with the HP-3562A Dynamic Signal Analyzer Last Updated: 01/16/2014 12:50 hr {SME} The following instructions are for carrying out generic

More information

Operating Instructions (ed. 5.97) Electronic Preset Counter Type Series 904

Operating Instructions (ed. 5.97) Electronic Preset Counter Type Series 904 Operating Instructions 3.96.3 (ed. 5.97) Electronic Preset Counter Type Series 904 1. Description 6 digit preset counter, 2 presets, add./subtr. bright 2-line LCD display with symbols for activated outputs

More information

Release Notes. Multi-Band EPI C2P. Release February 2013

Release Notes. Multi-Band EPI C2P. Release February 2013 Release Notes Multi-Band EPI C2P Release 008 13 February 2013 Installation 1. Restart the system (reboot host and MRIR) 2. Extract the.zip file to a temporary directory 3. Run the installer.bat file 4.

More information

WaveDriver 20 Potentiostat/Galvanostat System

WaveDriver 20 Potentiostat/Galvanostat System WaveDriver 20 Potentiostat / Galvanostat WaveDriver 20 Potentiostat/Galvanostat System Electrode Connections Cell Port Reference Electrode Counter Electrode First Working Electrode Second Working Electrode

More information

Calibrating the timecode signal input

Calibrating the timecode signal input Chapter 5 Calibrating the timecode signal input Computer hardware can introduce an offset between the timecode signal and the video signal, which causes the timecode and video to be offset when they are

More information

T sors, such that when the bias of a flip-flop circuit is

T sors, such that when the bias of a flip-flop circuit is EEE TRANSACTONS ON NSTRUMENTATON AND MEASUREMENT, VOL. 39, NO. 4, AUGUST 1990 653 Array of Sensors with A/D Conversion Based on Flip-Flops WEJAN LAN AND SETSE E. WOUTERS Abstruct-A silicon array of light

More information

100Gb/s Single-lane SERDES Discussion. Phil Sun, Credo Semiconductor IEEE New Ethernet Applications Ad Hoc May 24, 2017

100Gb/s Single-lane SERDES Discussion. Phil Sun, Credo Semiconductor IEEE New Ethernet Applications Ad Hoc May 24, 2017 100Gb/s Single-lane SERDES Discussion Phil Sun, Credo Semiconductor IEEE 802.3 New Ethernet Applications Ad Hoc May 24, 2017 Introduction This contribution tries to share thoughts on 100Gb/s single-lane

More information

CZT vs FFT: Flexibility vs Speed. Abstract

CZT vs FFT: Flexibility vs Speed. Abstract CZT vs FFT: Flexibility vs Speed Abstract Bluestein s Fast Fourier Transform (FFT), commonly called the Chirp-Z Transform (CZT), is a little-known algorithm that offers engineers a high-resolution FFT

More information

Boosting Performance Oscilloscope Versatility, Scalability

Boosting Performance Oscilloscope Versatility, Scalability Boosting Performance Oscilloscope Versatility, Scalability Rising data communication rates are driving the need for very high-bandwidth real-time oscilloscopes in the range of 60-70 GHz. These instruments

More information

Normalization Methods for Two-Color Microarray Data

Normalization Methods for Two-Color Microarray Data Normalization Methods for Two-Color Microarray Data 1/13/2009 Copyright 2009 Dan Nettleton What is Normalization? Normalization describes the process of removing (or minimizing) non-biological variation

More information