Tee (Not a Coupler) Open Circuit Line. Z Z Z jz d

Size: px
Start display at page:

Download "Tee (Not a Coupler) Open Circuit Line. Z Z Z jz d"

Transcription

1 ECSE-2 Spring 22 Analysis Using Matlab Cable System R2 T2 Tee (Nt a Cupler) T TV Set Input R V T3 Open Circuit Line The basic principle f this signal blcker is relatively simple. The CATV cable (T2 in the figure abve) is interrupted with a Tee cupler t which is cnnected a shrt piece f cable (T3 abve) with nthing cnnected t it (pen circuited line). The input impedance f this extra piece f cable adds in parallel t the input impedance f the cable that runs frm the Tee t the TV set (T abve). Assuming that the cable is prperly matched t the TV, the input impedance f the cable cnnected t the TV (T) will be equal t the characteristic impedance f the cable. In this case, the impedance f the cable and the TV is 75 hms. Since the input impedance f any cable (Z in ) is a functin f the electrical length f the cable (thrugh the terms like tanβd where d is the length), the Z in f the pen-circuited cable (T3) will change with frequency. If the length f this cable is prperly selected, the signal frm ne CATV channel will be reflected frm the Tee while the signals frm ther channels will nt be reflected. A crude explanatin f hw this can wrk can be made by lking just at tw frequencies where Z in is either very small r very large. Fr example, assume that the extra piece f cable has a length = d. Als, assume that it is insulated with plyethylene ε r = Then the velcity f prpagatin n the line is v = 2 x 8 m/s. In the simulatin f this line, ne can either reduce the expressin fr Z in fr an pen circuit r just use a very large value fr Z L. T be as general as pssible, chse the latter apprach. Then Z Z Z jz d L + tan β in = jz ct β d. When this is Z + jz tan βd very large (ctβd ), adding it in parallel t the cable will have n effect. When this is very small (ctβd ), adding it in parallel t the cable will lk like a shrt circuit and which is as large an impedance mismatch as can be btained. The input impedance f an pen circuited cable is Z Z Z jz d L + tan β in = jz ct βd while the input impedance f a matched cable is Z + jzl tan βd Zin = Z. Ideally, at the lcatin f the Tee, these tw impedances will add in parallel. Since this is a parallel cmbinatin, it is easier t add them as admittances. Y in =/Z in and Y in =/Z, respectively. K. A. Cnnr Revised: 2/5/22 L

2 ECSE-2 Spring 22 Infrmatin n the Standard Cable-TV Frequencies can be fund at Cable TV frequencies run frm abut 5MHz t 65MHz, accrding t the reference abve. The fllwing Matlab m-file was written t analyze the blcker design. In this prgram, the frequency f is specified as a vectr cvering the entire range f CATV frequencies. Then Z and Z L (called Zl in the prgram) are given and β is determined fr each frequency frm the prpagatin velcity v. Next, the input impedance f the pen circuit line is determined at each f the frequencies. S far we have three vectrs f equal length f, β, and Z in. Next, the parallel cmbinatin f the tw impedances is determined. This cmbinatin (Zttal) is nw the lad seen by the riginal CATV cable. Zttal Z The reflectin cefficient n the riginal cable is then determined frm Γ =, Zttal + Z where we have used Ref instead f Γ due t Matlab limitatins. The transmissin cefficient is then determined frm τ = +Γ r Trans = +Ref in Matlab. The transmissin cefficient tells us what transmits past the Tee int the TV set. We then plt the real and imaginary parts f each f these terms alng with their magnitude. It is the magnitude that is f the mst interest. The utput plts frm this prgram fr d=.25m are shwn after the prgram listing. % Prgram fr mdeling a CATV channel blcker % K. A. Cnnr Nvember 999 f=[5:.:65]*e7; Z=75; d=.224; beta=2*pi*f/2e8;zl=e8; % Input impedance f the pen circuit line Zin=Z.*(Zl+j.*Z.*tan(beta.*d))./(Z+j.*Zl.*tan(beta.*d)); % Cmbinatin f Zin and Z Zttal=./(./Zin+./Z); % Reflectin Cefficient Ref=(Zttal-Z)./(Zttal+Z); % Transmissin Cefficient Trans=+Ref; %Pltting Results plt(f,real(zin),f,imag(zin),f,abs(zin)); title('input Impedance f Open Line');xlabel('');grid;figure; plt(f,real(ref),f,imag(ref),f,abs(ref)); title('reflectin Cefficient');xlabel('');grid;figure; plt(f,real(trans),f,imag(trans),f,abs(trans)); K. A. Cnnr 2 Revised: 2/5/22

3 ECSE-2 Spring 22 title('transmissin Cefficient');xlabel('');grid; Output Plts x 7 Input Impedance f Open Line x 8 Reflectin Cefficient x 8 K. A. Cnnr 3 Revised: 2/5/22

4 ECSE-2 Spring 22 Transmissin Cefficient x 8 Nte that, fr this chice f length, the blcked frequencies are at 2MHz and 6MHz. 4 x 5 Input Impedance f Open Line x 8 K. A. Cnnr 4 Revised: 2/5/22

5 ECSE-2 Spring 22 Reflectin Cefficient x 8 Transmissin Cefficient x 8 which blcks the particular frequency f 223.2MHz. K. A. Cnnr 5 Revised: 2/5/22

6 ECSE-2 Spring 22 The equipment in the studi differs frm the CATV test in frequency range (-5 MHz is pssible using the functin generatr) and cable characteristic impedance (Z =5hms). Set up the cnfiguratin shwn belw using three pieces f cax frm the cable bx. Cnnect t Tees as shwn. Measure the length f the pen circuit cable. If it is nt at least 4 meters lng, add anther piece f cable using a Tee t increase the ttal length. Measure the length f this cable cmbinatin. Input this length int the equatins used t mdel the blcker, using 5 hms fr Z. The mdified cde and the results f such analysis fllw. Functin Generatr R2 Tee T2 Tee T Tee 5 Ohm Terminatr R V 5 5 R4 Meg 'Scpe Channel Open Circuit Cax T3 R3 Meg 'Scpe Channel 2 % K. A. Cnnr Nvember 999 f=[.5:.:5]*e6; Z=5% Prgram fr mdeling a CATV channel blcker ; d=5; beta=2*pi*f/2e8;zl=e8; % Input impedance f the pen circuit line Zin=Z.*(Zl+j.*Z.*tan(beta.*d))./(Z+j.*Zl.*tan(beta.*d)); % Cmbinatin f Zin and Z Zttal=./(./Zin+./Z); % Reflectin Cefficient Ref=(Zttal-Z)./(Zttal+Z); % Transmissin Cefficient Trans=+Ref; %Pltting Results plt(f,real(zin),f,imag(zin),f,abs(zin)); title('input Impedance f Open Line');xlabel('');grid;figure; plt(f,real(ref),f,imag(ref),f,abs(ref)); title('reflectin Cefficient');xlabel('');grid;figure; K. A. Cnnr 6 Revised: 2/5/22

7 ECSE-2 Spring 22 plt(f,real(trans),f,imag(trans),f,abs(trans)); title('transmissin Cefficient');xlabel('');grid; 25 Input Impedance f Open Line x 6 Reflectin Cefficient x 6 K. A. Cnnr 7 Revised: 2/5/22

8 ECSE-2 Spring 22 Transmissin Cefficient x 6 Nte that this cmbinatin f cables (d=5meters) blcks frequencies arund MHz. Manually change the frequency f the functin generatr while bserving bth the input and utput t the cables as indicated. A very small utput vltage (relative t the input) shuld be bserved arund MHz, if the experiment is set up crrectly. K. A. Cnnr 8 Revised: 2/5/22

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Prf. Mntek Singh Fall 2016 Lab Prject (PART A): Attaching a Display t the Prcessr

More information

Experiment 4 Op-Amp Circuits

Experiment 4 Op-Amp Circuits Experiment 4 Op-Amp Circuits Purpse: In this experiment, yu will learn abut peratinal amplifiers (r p-amps). Simple circuits cntaining peratinal amplifiers can be used t perfrm mathematical peratins, such

More information

ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6. Operational Amplifiers II

ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6. Operational Amplifiers II ADANA SCIENCE AND TECHNOLOGY UNIVERSITY ELECTRICAL ELECTRONICS ENGINEERING DEPARTMENT ELECTRICAL CIRCUITS LABORATORY II EEE 209 EXPERIMENT-6 Operatinal Amplifiers II OPERATIONAL AMPLIFIERS Objectives The

More information

Acceptance and verification PCI tests according to MIL-STD

Acceptance and verification PCI tests according to MIL-STD Acceptance and verificatin PCI tests accrding t MIL-STD-188-125 Bertrand Daut, mntena technlgy V1 - August 2013 CONTENTS 1. INTRODUCTION... 1 2. DEFINITIONS... 1 3. SCHEMATIC OF THE TEST SETUP WITH USE

More information

Lab2 Digital Weighing Scale (Sep 18)

Lab2 Digital Weighing Scale (Sep 18) GOAL Lab2 Digital Weighing Scale (Sep 18) The gal f Lab 2 is t demnstrate a digital weighing scale. INTRODUCTION The electrnic measurement f mass has many applicatins. A digital weighing scale typically

More information

Experiment 4 Op-Amp Circuits

Experiment 4 Op-Amp Circuits Experiment 4 Op-Amp Circuits Purpse: In this experiment, yu will learn abut peratinal amplifiers (r p-amps). Simple circuits cntaining peratinal amplifiers can be used t perfrm mathematical peratins, such

More information

Lab3 Audio Amplifier (Sep 25)

Lab3 Audio Amplifier (Sep 25) GOAL Lab3 Audi Amplifier (Sep 25) The gal f Lab 3 is t demnstrate an audi amplifier based n an p amp and ttem-ple stage. OBJECTIVES 1) Observe crssver distrtin in a Class B ttem-ple stage. 2) Measure frequency

More information

Experiment 2 Complex Impedance, Steady State Analysis, and Filters

Experiment 2 Complex Impedance, Steady State Analysis, and Filters Experiment 2 Cmplex Impedance, Steady State Analysis, and Filters Purpse: The bjective f this experiment is t learn abut steady state analysis and basic filters. Backgrund: Befre ding this experiment,

More information

ENGR-2300 ELCTRONIC INSTRUMENTATION Experiment 8. Experiment 8 Diodes

ENGR-2300 ELCTRONIC INSTRUMENTATION Experiment 8. Experiment 8 Diodes Experiment 8 Dides Purpse: The bjective f this experiment is t becme familiar with the prperties and uses f dides. We will first cnsider the i-v characteristic curve f a standard dide that we can use in

More information

Experiment 7 Digital Logic Devices and the 555-Timer

Experiment 7 Digital Logic Devices and the 555-Timer Experiment 7 Digital Lgic Devices and the 555-Timer Purpse: In this experiment we address the cncepts f digital electrnics and lk at the 555-timer, a device that uses digital devices and ther electrnic

More information

EE 3323 Electromagnetics Laboratory

EE 3323 Electromagnetics Laboratory EE 3323 Electrmagnetics Labratry Experiment #1 Waveguides and Waveguide Measurements 1. Objective The bjective f Experiment #1 is t investigate waveguides and their use in micrwave systems. Yu will use

More information

PAPER SPACE AND LAYOUTS

PAPER SPACE AND LAYOUTS PAPER SPACE AND LAYOUTS There are tw distinct wrking envirnments in AutCAD namely: Mdel Space and Paper space. Prjects can be develped by either wrking in the mdel space thrugh the use f MVSETUP r PAPER

More information

Experiment 6 Electronic Switching

Experiment 6 Electronic Switching Experiment 6 Electrnic Switching Purpse: In this experiment we will discuss ways in which analg devices can be used t create binary signals. Binary signals can take n nly tw states: high and lw. The activities

More information

PreLab5 Temperature-Controlled Fan (Due Oct 16)

PreLab5 Temperature-Controlled Fan (Due Oct 16) PreLab5 Temperature-Cntrlled Fan (Due Oct 16) GOAL The gal f Lab 5 is t demnstrate a temperature-cntrlled fan. INTRODUCTION The electrnic measurement f temperature has many applicatins. A temperature-cntrlled

More information

Lab 5 Blood Pressure Measurement System (Feb 13/14)

Lab 5 Blood Pressure Measurement System (Feb 13/14) GOAL Lab 5 Bld Pressure Measurement System (Feb 3/4) Demnstrate a system that measures mean arterial pressure (MAP). OBJECTIVES ) Build the electrnics t measure the air pressure frm a pressure cuff. 2)

More information

NATF CIP Requirement R1 Guideline

NATF CIP Requirement R1 Guideline Open Distributin NATF CIP 014-2 Requirement R1 Guideline Disclaimer This dcument was created by the Nrth American Transmissin Frum (NATF) t facilitate industry wrk t imprve physical security. NATF reserves

More information

Fourier Series LABVIEW GUI Documentation

Fourier Series LABVIEW GUI Documentation Furier Series LABVIEW GUI Dcumentatin INTRODUCTION The Furier Series GUI is meant t be used as a learning tl t better understand the Furier Series. The user is able t input the amplitude and frequency

More information

Security Exercise 12

Security Exercise 12 Security Exercise 12 Asynchrnus Serial Digital Baseband Transmissin Discussin: In this chapter, yu learned that bits are transmitted ver a cpper wire as a series f vltage pulses (a prcess referred t as

More information

ELECTRICAL MEASUREMENTS

ELECTRICAL MEASUREMENTS Physics Department Electricity and Magnetism Labratry ELECTRICAL MEASUREMENTS 1. Aim. Learn t use measuring instruments: Digital multimeter. Analg scillscpe. Assembly f simple elementary circuit. Cllectin

More information

Experiment 7 Digital Logic Devices and the 555-Timer

Experiment 7 Digital Logic Devices and the 555-Timer Experiment 7 Digital Lgic Devices and the 555-Timer Purpse: In this experiment we address the cncepts f digital electrnics and lk at the 555-timer, a device that uses digital devices and ther electrnic

More information

PHYS 102 Quiz Problems Chapter 17 : Sound Waves Dr. M. F. Al-Kuhaili 1. (TERM 001) 2. (TERM 001) 3. (TERM 002) 4. (TERM 002) 5.

PHYS 102 Quiz Problems Chapter 17 : Sound Waves Dr. M. F. Al-Kuhaili 1. (TERM 001) 2. (TERM 001) 3. (TERM 002) 4. (TERM 002) 5. PHYS 102 Quiz Prblems Chapter 17 : Sund Waves Dr. M. F. Al-Kuhaili 1. (TERM 001) A mving train is blwing a whistle at 500 Hz. An bserver at rest hears the sund at 480 Hz. What is the speed f the train,

More information

LINE POWER SUPPLIES Low-Loss Supplies for Line Powered EnOcean Modules

LINE POWER SUPPLIES Low-Loss Supplies for Line Powered EnOcean Modules Lw-Lss Supplies fr Line Pwered EnOcean Mdules A line pwer supply has t ffer the required energy t supply the actuatr electrnic and t supply the EnOcean TCM/RCM radi cntrl mdule. This paper cntains sme

More information

The Mathematics of the Rubik s Cube

The Mathematics of the Rubik s Cube In this lessn, students will explre the pssible number ways the pieces f a Rubik's Cube can be arranged, and still fit the criteria fr a Rubik's Cube. Clrs are riented in a set way, s sme pieces (such

More information

Maxon Motor & Motor Controller Manual

Maxon Motor & Motor Controller Manual Maxn Mtr & Mtr Cntrller Manual Nte: This manual is nly fr use fr the Maxn mtr and cntrller utlined belw. This infrmatin is based upn the tutrial vides fund nline and thrugh testing. NOTE: Maximum Permitted

More information

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE Cadence Virtus Schematic editing prvides a design envirnment cmprising tls t create schematics, symbls and run simulatins. This tutrial will

More information

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 Lab 2- VGA display and Light Sensr interface Reprt due at start f class Friday September 15 th Use the prvided Ambient Light Sensr mdule

More information

Lab 1 Load Cell Measurement System

Lab 1 Load Cell Measurement System BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System 1) Build and test a lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b. Cmpute

More information

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732 Prgram Infrmatin 1 DXF2DAT 3.0 Prfessinal Designed Cmputing Systems 848 W. Brtn Rad Essexville, Michigan 48732 Cntact: (989) 892-4376 website: http://www.famwrk.net General Infrmatin: inf@famwrk.net Technical

More information

Lab 1 Load Cell Measurement System (Jan 09/10)

Lab 1 Load Cell Measurement System (Jan 09/10) BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System (Jan 09/10) 1) Test the lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b.

More information

Process Gain and Loop Gain

Process Gain and Loop Gain Prcess Gain and Lp Gain By nw, it is evident that ne can calculate the sensitivity fr each cmpnent in a cntrlled prcess. Smetimes, this sensitivity is referred t as a gain. The cnfusin is understandable

More information

Pulse Width Modulation (PWM) Cornerstone Electronics Technology and Robotics II

Pulse Width Modulation (PWM) Cornerstone Electronics Technology and Robotics II Pulse Width Mdulatin (PWM) Crnerstne Electrnics Technlgy and Rbtics II Administratin: Prayer PicBasic Pr Prgrams Used in This Lessn: General PicBasic Pr Prgram Listing: http://www.crnerstnerbtics.rg/picbasic.php

More information

EE 311: Electrical Engineering Junior Lab Phase Locked Loop

EE 311: Electrical Engineering Junior Lab Phase Locked Loop Backgrund Thery EE 311: Electrical Engineering Junir Lab Phase Lcked Lp A phase lcked lp is a cntrlled scillatr whse instantaneus frequency is dynamically adjusted thrugh multiplicative feedback and lw

More information

Lab 1 Fun with Diodes

Lab 1 Fun with Diodes GOAL Lab 1 Fun with Dides The verall gal f this lab is t gain sme experience building and simulating sme useful dide circuits. OBJECTIVES T build, test, simulate, and understand the fllwing circuits: 1)

More information

Application for Drive Technology

Application for Drive Technology Applicatin fr Drive Technlgy MICROMASTER 4 Applicatin Descriptin Warranty, Liability and Supprt 1 Warranty, Liability and Supprt We d nt accept any liability fr the infrmatin cntained in this dcument.

More information

Puget Sound Company Overview. Purpose of the Project. Solution Overview

Puget Sound Company Overview. Purpose of the Project. Solution Overview Puget Sund Cmpany Overview Puget Sund Energy is Washingtn State s largest and ldest energy utility, serving nearly 1 millin electric custmers and mre than 650,000 natural gas custmers, primarily within

More information

Dry Contact Sensor

Dry Contact Sensor www.akcp.cm Dry Cntact Sensr Intrductin The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable

More information

AIR CONDITIONER REMOTE CONTROLLER ILLUSTRATION CS406-R51E

AIR CONDITIONER REMOTE CONTROLLER ILLUSTRATION CS406-R51E AIR CONDITER REMOTE CONTROLLER ILLUSTRAT CS406-R5E 00550905 0009 Thank yu very much fr purchasing ur air cnditiner. Please read this wner's manual carefully befre using yur air cnditiner. CONTENTS Handling

More information

Ten-Tec Model RX-366 Subreceiver 565/566 Subreceiver Installation and Operation Manual-74467

Ten-Tec Model RX-366 Subreceiver 565/566 Subreceiver Installation and Operation Manual-74467 Ten-Tec Mdel RX-366 Subreceiver 565/566 Subreceiver Installatin and Operatin Manual-74467 Tls required: Sldering irn r heat gun (fr shrinking heat shrink tubing) Number 1 Phillips screw driver Number 2

More information

Fields and Waves I ECSE-2100 Fall 2008 Project 1 (Due: October 1 st ) RF Notch Filter Trap for Unwanted Frequencies

Fields and Waves I ECSE-2100 Fall 2008 Project 1 (Due: October 1 st ) RF Notch Filter Trap for Unwanted Frequencies ECSE-21 Fall 28 Project 1 (Due: October 1 st ) RF Notch Filter Trap for Unwanted Frequencies For this project, students can work in groups of two to four. Hand in one report for each group. Grading 1.

More information

Lab 6 Spirometer System (Feb 20/21)

Lab 6 Spirometer System (Feb 20/21) GOAL Lab 6 Spirmeter System (Feb 20/21) Demnstrate a spirmeter system incrprating a (1) Lilly-type flw tube (2) piezresistive differential pressure sensr (3) instrumentatin amplifier and lw-pass filter

More information

SolarEdge Built-in Revenue Grade Meter Troubleshooting

SolarEdge Built-in Revenue Grade Meter Troubleshooting SlarEdge Built-in Revenue Grade Meter Trubleshting Versin 1.0 Cntents Trubleshting Meter Cnnectin 3 Cmmunicatin Status Screen Trubleshting 3 Device Type and Prtcl are cnfigured incrrectly 3 Number f devices

More information

Claim Amalgamation. Getting Started. Amalgamate means to join 2 or more cell claims into one cell claim. Before you start:

Claim Amalgamation. Getting Started. Amalgamate means to join 2 or more cell claims into one cell claim. Before you start: Claim Amalgamatin Amalgamate means t jin 2 r mre cell claims int ne cell claim. Befre yu start: Yu will need t knw the title numbers f the cell titles fr amalgamatin. If yu are acting as an agent, yu must

More information

Altis Flight Manager. PC application for AerobTec devices. AerobTec Altis v3 User Manual 1

Altis Flight Manager. PC application for AerobTec devices. AerobTec Altis v3 User Manual 1 Altis Flight Manager PC applicatin fr AerbTec devices AerbTec Altis v3 User Manual 1 Table f Cntents Intrductin...3 Requirements...3 Installatin...3 Applicatin...3 USB Driver fr Altis v3 interface ALink...4.NET

More information

Hospital Task Scheduling using Constraint Programming

Hospital Task Scheduling using Constraint Programming Hspital Task Scheduling using Cnstraint Prgramming Authr: Chaman Chahal Supervisr: Dr. P. Bse, Schl f Cmputer Science Organizatin: Carletn University Curse: COMP4905 Date: Dec. 11, 2012 1 Abstract Hspitals

More information

WiFi Lab C. Equipment Needs:

WiFi Lab C. Equipment Needs: WiFi Lab C Event Objective: Teams will cnstruct an antenna prir t the turnament that is designed t transmit a signal at 2.4 GHz and cmplete a written test n the principles f electrmagnetic wave prpagatin.

More information

Thermal Radiation Edited 4/24/18 by SA, JS, & DGH

Thermal Radiation Edited 4/24/18 by SA, JS, & DGH Thermal Radiatin Edited 4/24/18 by SA, JS, & DGH PURPOSE OF EXPERIMENT: T measure the energy/wavelength spectrum f a ht filament at different temperatures. Adjust fr the errrs inherent in the equipment

More information

.,Plc..d,~t l~ucjio PA300 DIGITAL BASS PROCESSOR USER'S MANUAL. 2 Why use the DIGITAL BASS PROCESSOR? 2 About the PWM Subsonic Filter

.,Plc..d,~t l~ucjio PA300 DIGITAL BASS PROCESSOR USER'S MANUAL. 2 Why use the DIGITAL BASS PROCESSOR? 2 About the PWM Subsonic Filter .,Plc..d,~t l~ucji PA300 DIGITAL BASS PROCESSOR Cngratulatins n yur purchase f a Planet Audi signal prcessr. It has been designed, engineered and manufactured t bring yu the highest level f perfrmance

More information

a) Which points will be assigned to each center in the first iteration? b) What will be the values of the k new centers (means)?

a) Which points will be assigned to each center in the first iteration? b) What will be the values of the k new centers (means)? CS 378 Cmputer Visin Prblem set 2 Out: Tuesday Sept 22 Due: Mnday Oct 5, by 11:59 PM See the end f this dcument fr submissin instructins. I. Shrt answer prblems [30 pints] 1. Suppse we are using k-means

More information

1. Give an example of how one can exploit the associative property of convolution to more efficiently filter an image.

1. Give an example of how one can exploit the associative property of convolution to more efficiently filter an image. CS 376 Cmputer Visin Spring 2011 Prblem set 1 Out: Tuesday Feb 1 Due: Mnday Feb 14 11:59 PM See the end f this dcument fr submissin instructins. Visit us during ffice hurs t discuss any questins n the

More information

Comparative analysis of influence of the type line supplying nonlinear load on deformation of voltage and current in the power system

Comparative analysis of influence of the type line supplying nonlinear load on deformation of voltage and current in the power system Cmputer Applicatins in Electrical Engineering Cmparative analysis f influence f the type line supplying nnlinear lad n defrmatin f vltage and current in the pwer system tanisław Blkwski, Wiesław Brciek

More information

Lightning Protection. Study/Report UMKC Substation. Kansas City, Missouri. Burns & McDonnell. University of Missouri - Kansas City.

Lightning Protection. Study/Report UMKC Substation. Kansas City, Missouri. Burns & McDonnell. University of Missouri - Kansas City. Lightning Prtectin Study/Reprt UMKC Substatin Kansas City, Missuri Burns & McDnnell University f Missuri - Kansas City By: Rbert Biggs The fllwing lightning prtectin study, with its assciated drawings,

More information

Math 3201 Unit 8: SINUSODIAL FUNCTIONS NAME: Up until now we can measure angles using degrees.

Math 3201 Unit 8: SINUSODIAL FUNCTIONS NAME: Up until now we can measure angles using degrees. Math 0 Unit 8: SINUSODIAL FUNCTIONS NAME: Sectin 8.: Understanding Angles p. 8 Hw can we measure things? Eamples: Length - meters (m) r ards (d.) Temperature - degrees Celsius ( C) r Fahrenheit (F) Hw

More information

1.12 Equipment Manager

1.12 Equipment Manager Mdule 1 Categry 1 1.12 Equipment Manager Functin f the windw The windw is the central data file fr the Kntrl Pr and cllects the main data fr fees f an bject that t be used in this prject. The Equipment

More information

WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL

WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL WS-400 BASE STATION FOR WIRELESS INTERCOM WITH FOUR TX/RX MODULES USER MANUAL Issue February 2011 ASL Intercm BV DESIGNED AND MANUFACTURED BY: ASL INTERCOM BV ZONNEBAAN 42 3542 EG UTRECHT THE NETHERLANDS

More information

f f d o FIGURE 1 - Light ray diagram

f f d o FIGURE 1 - Light ray diagram Lab 10 Thin Lenses What Yu Nee T Knw: The Physics Frm last week s lab, Reflectin an Refractin, yu shul alreay be familiar with the fllwing terms: principle axis, fcal pint, fcal length, f, cnverging lens

More information

EE 255 ELECTRONICS I LABORATORY EXPERIMENT 1 RESONANT CIRCUITS

EE 255 ELECTRONICS I LABORATORY EXPERIMENT 1 RESONANT CIRCUITS EE 255 EETNIS I ABATY EXPEIMENT 1 ESNANT IUITS BJETIVES In this exeriment yu will earn hw resnant circuits can be used t make bandass and band-reject filters. Gain exerience in measuring the frequency

More information

Waves Unit / Mechanical Waves Sub-Unit

Waves Unit / Mechanical Waves Sub-Unit Waves Unit / Mechanical Waves Sub-Unit 5.1.1 Oscillatins - time fr ne scillatin - number f scillatins per secnd Equatin Pendulum Mass n a Spring PRACTICE Regents Physics 1. A pendulum is timed as it mves

More information

Operating Instructions

Operating Instructions TC 60/8 THERMOCOMPUTER TC 60/8 temp / time s s temp / time k start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing

More information

EEEE 381 Electronics I

EEEE 381 Electronics I EEEE 381 Electrnics I Lab #4: MOSFET Differential Pair with Active Lad Overview The differential amplifier is a fundamental building blck in electrnic design. The bjective f this lab is t examine the vltage

More information

Frequency Response of a BJT CE Amplifier

Frequency Response of a BJT CE Amplifier Frequency Respnse f a BJT CE Amplifier Run the experiment By clicking the arrw n the Tlbar. Chse values f C B & C C, C E & R C frm the crrespnding drp dwn menus. (Clicking the arrw n the right side f the

More information

A Basis for LDO and It s Thermal Design

A Basis for LDO and It s Thermal Design A Basis fr LDO and It s Thermal Design Hawk Chen Intrductin The AIC LDO family device, a 3-terminal regulatr, can be easily used with all prtectin features that are expected in high perfrmance vltage regulatin

More information

Connection tariffs

Connection tariffs Cnnectin tariffs 2016-2019 A. TARIFF CONDITIONS FOR GRID USERS DIRECTLY CONNECTED TO THE ELIA GRID AND FOR DISTRIBUTION GRID OPERATORS, EXCEPTED FOR DISTRIBUTION GRID OPERATORS CONNECTED AT TRANSFORMER

More information

(c) Compute the maximum instantaneous power dissipation of the transistor under worst-case conditions. Hint: Around 470 mw.

(c) Compute the maximum instantaneous power dissipation of the transistor under worst-case conditions. Hint: Around 470 mw. Hmewrk b ECE (F) 8 prblems fr 00 pts Due Oct A. Unidirectinal Current Bster Analysis ) Cnsider the current bster shwn in Fig.. Assume an ideal p amp with V CC = 9V. The transistr is a N904, and use data

More information

CAR ASYST - Quick Start Guide MAIN MENU

CAR ASYST - Quick Start Guide MAIN MENU fficially apprved by CAR ASYST - Quick Start Guide MAIN MENU Main menu The main menu f ur CAR ASYST APP is divided int 7 menu items. Belw yu will find a list f these items including a shrt descriptin.

More information

PASSIVE FILTERS (LCR BASED)

PASSIVE FILTERS (LCR BASED) EXPEIMENT PAIVE FILTE (LC BAED) (IMULATION) OBJECTIVE T build highpass, lwpass and bandpass LC filters using circuit simulatin tls. INTODUCTION Ladder netwrks are filters f the first kind, built in the

More information

Dry Contact Sensor DCS15 User Manual

Dry Contact Sensor DCS15 User Manual Dry Cntact Sensr DCS15 User Manual Help Versin updated till firmware 404i / SP456 Cpyright 2012, AKCess Pr C., Ltd.. Intrductin / What is a Dry Cntact Sensr The Dry Cntact sensr r DCS15 is a simple cnnectin

More information

Producing Research Posters

Producing Research Posters Dr Keith E. Fildes 21/23 Octber 2014 (with acknwledgments t Dr Lyuba Albul, CARR) Objectives This sessin will cver: The purpse f psters What shuld be included Design cnsideratins Getting started The fllw-up

More information

ELG3311: Tutorial 2 R C = 75 Ω X M = 20 Ω R T = Ω X T = Ω. Solution: The following equivalent circuit is referred to the primary.

ELG3311: Tutorial 2 R C = 75 Ω X M = 20 Ω R T = Ω X T = Ω. Solution: The following equivalent circuit is referred to the primary. ELG3311: Tutrial rblem -1: The secndary winding f a transfrmer has a terminal vltage f v s (t) 8.8 sin 377t. The turns rati f the transfrmer is 50:00 (a 0.5). f the secndary current f the transfrmer is

More information

c2b: slip two stitches onto cable needle and hold behind work. Knit the following two stitches, then knit the two stitches from the cable needle.

c2b: slip two stitches onto cable needle and hold behind work. Knit the following two stitches, then knit the two stitches from the cable needle. Matthew s beanie Materials needed: 1 skein Yarn Bee Sft Secret. The clrs featured are Shale and Hney. Simply Sft yarn by Carn als fits the gauge. Size 4.5mm 16 inch circular needles (fr ribbing) Size 5.5mm

More information

BV4115. RF Packet Transmitter. Product specification. February ByVac 2007 ByVac Page 1 of 5

BV4115. RF Packet Transmitter. Product specification. February ByVac 2007 ByVac Page 1 of 5 Prduct Specificatin Prduct specificatin. February 2007 ByVac 2007 ByVac Page 1 f 5 Prduct Specificatin Cntents 1. Dcument Versins... 2 2. Intrductin... 2 3. Features... 2 4. Battery Life... 2 5. Blck Diagram...

More information

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions TC 60 prg start stp THERMOCOMPUTER TC 60 h C/h C Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing

More information

Operating Instructions

Operating Instructions TC 40 THERMOCOMPUTER TC 40 start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing the Prgramme

More information

LED wdali MC Switch Input Modul Set - User Manual

LED wdali MC Switch Input Modul Set - User Manual LED wli MC Switch Input Mdul Set - User Manual Buttn mdul (Transmitter) 1. Prduct Descriptin Item N.: LC-004-302 Receive mdul (Receiver) The wli MC Switch Input Mdul Set is a cmpact wireless Multi Cntrl

More information

ELECTRONIC MEASURMENTS

ELECTRONIC MEASURMENTS ELECTRONIC MEASURMENTS LAB 1 INTRO: SETTING UP A DC POWER SUPPLY AND MAKING DC AND AC VOLTAGE MEASUREMENTS USING A SCOPE AND DIGITAL MULTIMETER. GOALS In this lab, yu will use basic test and measurement

More information

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139

DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 02139 DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE MASSACHUSETTS INSTITUTE OF TECHNOLOGY CAMBRIDGE, MASSACHUSETTS 0239 6.0 Intrductry Analg Electrnics Labratry Labratry N. READING ASSIGNMENT: Review

More information

Study of Dipole Antenna Height for Radio Telescope According to Baghdad Location

Study of Dipole Antenna Height for Radio Telescope According to Baghdad Location Study f Diple Antenna Height fr Radi Telescpe Accrding t Baghdad Lcatin Kamal M. Abd 1, Mretadha J. Kadhim and Zinah F. Kadhim 3 1 Department f Astrnmy and Space, Cllege f Science, University f Baghdad,

More information

ELT COMMUNICATION THEORY

ELT COMMUNICATION THEORY ELT-41307 COMMUNICATION THEORY Matlab Exercise #5 Carrier mdulated digital transmissin: Transmitter and receiver structures QAM signals, up/dwncnversin, timing and phase synchrnizatin, and symbl detectin

More information

BIG TAJFUN 1000 INSTRUCTION MANUAL

BIG TAJFUN 1000 INSTRUCTION MANUAL BIG TAJFUN 1000 INSTRUCTION MANUAL www.italab.sk www.kenwd.sk Acknwledgment Thank yu fr purchasing Pwer linear amplifier BIG TAJFUN 1000 432 frm VH Electrnics. During its prductin, we used the latest knwledge

More information

DOCUMENT OBSOLETE. Advanced Systems Tester 900AST Series Calibration Verification Procedure. Instructions. February A

DOCUMENT OBSOLETE. Advanced Systems Tester 900AST Series Calibration Verification Procedure. Instructions. February A Advanced Systems Tester 900AST Series Calibratin Verificatin Prcedure Instructins February 2006 Table f Cntents Intrductin...3 Test Instruments Required...3 Test Cmpnents Required...3 Test Prcedure...3

More information

PRINTING WORKPAPERS MODULE. Introduction. Objectives

PRINTING WORKPAPERS MODULE. Introduction. Objectives MODULE 3 PRINTING WORKPAPERS Intrductin Several reprts are created in the WrkPapers mdule. Thrugh the print screen the user can preview and print hardcpies f the varius reprts. Preview and print, as necessary,

More information

SVT Tab and Service Visibility Tool Job Aid

SVT Tab and Service Visibility Tool Job Aid Summary This Jb Aid cvers: SVT Tab Overview Service Visibility Tl (SVT) Area Overview SVT Area: Satellite Mdem Status (Frm Mdem) Clumn SVT Area: Satellite Mdem Status (Frm SMTS) Clumn SVT Area: Prvisining

More information

Troubleshooting Guide StarFire Satellite Changes

Troubleshooting Guide StarFire Satellite Changes Trubleshting Guide StarFire Satellite Changes This guide is updated t reflect the sftware frm NavCm which is related t the StarFire satellite and frequency changes. The mst recent versin f sftware fr bth

More information

COMP 110 INTRODUCTION TO PROGRAMMING WWW

COMP 110 INTRODUCTION TO PROGRAMMING WWW COMP 110 INTRODUCTION TO PROGRAMMING WWW http://cmp110www.web.unc.edu Fall 2011 Hmewrk 3 Submissin Deadline: 10:59 AM, Oct 24 Overview Validating Multiple Chess Mves n a Chessbard Fr this assignment yu

More information

Guide for ESP32-Sense Development Kit

Guide for ESP32-Sense Development Kit Guide fr ESP32-Sense Develpment Kit 1. Overview The ESP32 tuch sensr develpment kit, ESP32-Sense Kit, is used fr evaluating and develping ESP32 tuch sensr system. ESP32-Sense Kit cnsists f ne mtherbard

More information

Desktop Teller Exception User Guide

Desktop Teller Exception User Guide Desktp Teller Exceptin User Guide Jammed Dcuments If a dcument jams during the scanning prcess, the scanner will stp, and a message bx will display a Device Errr Message, as shwn belw: Click OK t allw

More information

Using the Laser Cutter

Using the Laser Cutter Using the Laser Cutter Prerequisites Befre yu will be allwed t use the laser cutter, yu must cmplete these three steps: 1. Yu must have cmpleted the Laser Cutter training at Cyberia 2. Yu must schedule

More information

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements AccuBuild Versin 9.3 Release 05/11/2015 Dcument Management Speed Perfrmance Imprvements The entire dcument management system and security system design was retled which shuld result in majr speed imprvements

More information

Some Safety Warnings

Some Safety Warnings Sme Safety Warnings 1. With the pwer supply pen and cnnected t AC mains (huse) pwer, there is the pssibility that yu may cntact AC mains (huse) vltage. Depending n the scenari, that can be fatal. 2. The

More information

Photoshop Elements: Color and Tonal Correction Basics

Photoshop Elements: Color and Tonal Correction Basics Phtshp Elements: Clr and Tnal Crrectin Basics Cntrast Lighten Phtshp Elements: Clr and Tnal Crrectin Basics 1 Sharpen Expsure Phtshp Elements: Clr and Tnal Crrectin Basics 2 Highlights and Shadws All key

More information

Cascading Skirt Pattern

Cascading Skirt Pattern Cascading Skirt Pattern Fr this pattern yu will need: 1/3 yard f well draping fabric. Swimwear, dance fabrics, and very stretch knits are the perfect fabrics fr this pattern s style. (Yu can use ld T-shirts

More information

A4: Color. Light: You can usually any lighting that you wish.

A4: Color. Light: You can usually any lighting that you wish. Art 205 A4: Clr Original RAW Shts Due: Crit Date: Requires 2 Ink Jet Prints Munting Crrectly can btain 5 pints extra credit. (50 pints) Objectives: 1. Learn basic clr schemes fr design and aesthetics.

More information

Using the Register of Swiss Surnames

Using the Register of Swiss Surnames Using the Register f Swiss Surnames Switzerland Hw t Guide, Beginning Level: Instructin Octber 2015 GOAL This guide will teach yu t navigate the nline versin f the Register f Swiss Surnames, and hw t utilize

More information

PROBABILITY OF DETECTION OF FLAWS IN A GAS TURBINE ENGINE. Gary L. Burkhardt and R.E. Beissner

PROBABILITY OF DETECTION OF FLAWS IN A GAS TURBINE ENGINE. Gary L. Burkhardt and R.E. Beissner PROBABILITY OF DETECTION OF FLAWS IN A GAS TURBINE ENGINE COMPONENT USING ELECTRIC CURRENT PERTURBATION Gary L. Burkhardt and R.E. Beissner Suthwest Research Institute 6220 CUlebra Rad San Antni, Texas

More information

RiverSurveyor S5/M9 & HydroSurveyor Second Generation Power & Communications Module (PCM) Jan 23, 2014

RiverSurveyor S5/M9 & HydroSurveyor Second Generation Power & Communications Module (PCM) Jan 23, 2014 SnTek, a Xylem brand 9940 Summers Ridge Rad, San Dieg, CA 92121-3091 USA Telephne (858) 546-8327 Fax (858) 546-8150 E-mail: inquiry@sntek.cm Internet: http://www.sntek.cm RiverSurveyr S5/M9 & HydrSurveyr

More information

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed.

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed. Intrductin Dry Cntact Sensr The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable and can be

More information

Martel LC-110H Loop Calibrator and HART Communications/Diagnostics

Martel LC-110H Loop Calibrator and HART Communications/Diagnostics Martel LC-110H Lp Calibratr and HART Cmmunicatins/Diagnstics Abstract Martel Electrnics Crpratin This white paper describes the basic functins f HART cmmunicatins and the diagnstic capability f the Martel

More information

CM5530 GENERAL DESCRIPTION APPLICATIONS TYPICAL APPLICATION CIRCU. Rev.1.0 0

CM5530 GENERAL DESCRIPTION APPLICATIONS TYPICAL APPLICATION CIRCU.  Rev.1.0 0 FEATURES Quasi-Resnant Primary Side Regulatin (QR-PSR) Cntrl with High Efficiency Multi-Mde PSR Cntrl Fast Dynamic Respnse Built-in Dynamic Base Drive Audi Nise Free Operatin ±4% CC and C Regulatin Lw

More information

Installing a Squeak-Free Nascor Floor System

Installing a Squeak-Free Nascor Floor System Nascr s precise manufacturing tlerances deliver a prduct that resists shrinking, warping and twisting the mst cmmn causes f squeaks in flr systems built with dimensinal lumber. Ensuring a squeak-free flr,

More information

Spectracom GSG ecall Test Suite

Spectracom GSG ecall Test Suite 18-Dec-2017 GSG App Nte Spectracm GSG ecall Test Suite Table f Cntents 1. Intrductin... 1 2. Befre Starting the Test... 2 3. Running the ecall Test Suite... 4 4. Psitin Errr Tests 2.2.2-2.2.4... 10 5.

More information

Xerox 8160/8142 Wide Format Color

Xerox 8160/8142 Wide Format Color PRODUCT RANGE / POSITIONING The Xerx 8142/8160 Slutin Printer is a thermal inkjet printing system intended fr use in a prductin envirnment prducing graphical cntent, including Psters, POP, signage, etc.

More information