Utilizing a dspic30f6015 to control the speed of a wheel

Size: px
Start display at page:

Download "Utilizing a dspic30f6015 to control the speed of a wheel"

Transcription

1 ECE-320 Labs 7 and 8: Utlzng a dspic30f6015 to control the speed of a wheel Overvew: In ths lab we wll utlze the dspic30f6015 to mplement a PID controller to control the speed of a wheel. Most of the ntal code wll be gven to you (see the class webste), and you wll have to modfy the code as you go on. One of the thngs you wll dscover s that you often need to be aware of lmtatons of both hardware and software when you try to mplement a controller. The dspic30f6015 has been mounted on a carrer board that allows us to communcate wth a termnal (your laptop) va a USB cable. In what follows you wll need to make reference to the pn out of the dspic30f6015 (shown n Fgure 1) and the correspondng pns on the carrer (shown n Fgure 2) Fgure 1. dspic30f PIN pnout. 1

2 Fgure 2. dspic30f6015 carrer. Note that the pn numbers are not consecutve. 2

3 Part A (Copyng the ntal fles) Set up a new folder for ths lab, and copy the fles for ths Lab from the class webste to ths folder. Part B (Downloadng and nstallng MPLAB) You wll need to go to the webste and download the newest verson of MPLAB (MPLAB IDE v8.83+). If you have an older of MPLAB t wll probably work (mne s v8.76) and you may be able to skp ths step. It s probably easest to download a zpped verson and the unzp t. Once the fle has been unzpped, run setup.exe. Accept all of the defaults. Do not ntall any C complers yet. Part C (Downloadng and nstallng MPLAB C30 compler) You wll need to go to the webste and download the MPLAB C compler for the dspic. Ths s the academc verson. You wll need to regster your use (clck on regster now). Once the fle has been downloaded, you need to run mplab30_v3_30c_wndows.exe to nstall t. I used the Versoned Drectory Name. Select the Evaluaton Compler. The devces we want are the dspic DCSs Part D (Settng up Communcatons wth Secure CRT) In ths step we wll make sure all of our systems are workng before we go on. Connect the PICkt3 to the carrer board and your computer (the whte arrow goes near the whte spot on the carrer board.) Connect the separate communcaton cable to the carreer board and your computer. Connect power to the power board and toggle to on swtch (the green LED should then be on) Wat a few mnutes (see f your system s tryng to fnd any devces). The go to Programs->Control Panel and select Dervce Manager. Expand the Ports opton as shown below. The followng fgure shows that the USB s connected to my COM5 port. You wll need ths nformaton shortly. 3

4 My USB seral port s COM5, yours may be dfferent We are gong to want to be able to record and plot data, so we wll be wrtng to the screen. In order to do ths we wll usng Secure CRT because t s nstalled on your computer by default. Go to Programs All Programs SecureCRT SecureCRT6.2 (t s ok f you don t have 6.2). You should get a screen lke ths (although the lst of Sessons wll probably be shorter for you): 4

5 Clck on New Sesson You should then get a screen that looks lke ths Choose Seral from ths menu, then clck on Next at the bottom of the page 5

6 You wll next get the followng screen. You should already know whch port to use (t may not be COM5 on your computer). Select a Baud rate of and be sure everythng s flled n as below. The clck on Next. Fnally, you need to create a sesson name so you do not have to go through these steps agan. My choce n names was pretty ntutve. Once you have named your sesson select Fnsh. 6

7 Fnally, you wll get a screen lke that below, and you need to select Connect. Now you should have a termnal lke that shown below From ths screen, the opton we wll use most s Fle-> Log Sesson. Ths wll allow us to wrte data collected to a fle to be processed later. 7

8 Part E (Puttng t all together) Now we are ready to start. Note that at some pont n the followng process you may need to let the system download frmware. Be sure you have selected the correct devce (or t wll do ths twce). Start MPLAB Select Project and open the project lab7.mcp Select Confgure, then Select Devce and choose dspic30f6015 Select Debugger, then Select Tool and choose PICkt 3 You may need to clck on lab7.c (under Source Fles) to see the C code. You should get a screen (more or less) lke the followng: Run comple Download (to dspic) You should comple the exstng program, download t to the dspic, and run t. You should see a sequence of numbers on your screen (the secure CRT screen). These correspond to sample tmes. 8

9 Part F (Turnng one LED on and off) In ths step we wll make one LED turn on and off. Locate pn 1 (RE5). Connect a resstor and an LED to ths pn as shown below: We need to get ths ready for output, so n the fle lab7.c, nsert the lnes (before the man loop) TRISEbts.TRISE5 = 0; You wll see n the man loop we are wrtng all 1 s or all zeros to all of port E every other tme nterval. Comple your code and run t. Your LED should turn on and off regularly. Part G (Runnng Two LEDs) Connect your other LED to pn2 (RE6). Modfy you code so the LED s alternate (one goes on and the other off). Once ths has been checked off (see the last page), comment out the code that turns the LEDs on and off n the man code (do not delete t). Have ths verfed by your nstructor. Part H (Utlzng PWM to run your LEDs) We wll now utlze the PWM functon to drve the LED. Note that RE6 corresponds to PWM4L.(Refer to Fgures 1 and 2 to be sure to get the correct pn. Note that not all of the dspic pns are on the carrer.) In the routne pwm_nt, change PWM_PDIS4L to PWM_PEN4L. Ths allows us to use ths pn as a PWM sgnal. In the man code, uncomment the functon call pwm_nt(); Set the varable AD_value =

10 Uncomment the code: dutycycle = (unsgned nt) ((double) AD_value)*scale; dutycyclereg = 4; SetDCMCPWM( dutycyclereg, dutycycle, updatedsable); Ths code determnes the duty cycle value and wrtes t to dutycycle regster 4. Comple and run your code. A sngle LED should lght (constantly). Modfy the values n AD_value from 0 to 512 to verfy that the brghtness of the LEDs changes as the dutycycle changes. Note that at some pont the LED stops gettng brghter, so don t worry about that. Have the nstructor verfy ths (see the last page). Part I (Readng n an A/D value) Now we want to be able to connect a potentometer so we can have a varable reference. The software s currently set up for A/D nput on AN3/RB3. You wll need to do the followng thngs: 1) Connect the potentometer as shown below 2) Set the approprate TRIS bts for an nput sgnal 3) Comment out the part of the code that sets the AD_value = 0; 4) Modfy the prntf statement to allow you to also prnt out the A/D value from the pot Part J (Changng the dutycycle value by readng from the potentometer) Modfy your code so the value of the dutycycle n the PWM routne s set by readng n a value from the potentometer. As you turn the potentometer the LED should change ntensty. Have ths verfed by your nstructor (see the last page). Ths s the end of Lab 7 10

11 Part K: Readng n the sensor transducer In order to determne how fast the motor s spnnng, we wll need to use the QEI nterface. The sensor s connected to the center of the wheel, and the other end of the sensor plugs nto the breadboard. The pns for the nterface are shown n Fgure 3. You need to connect ths nterface to +5 volts (red ), ground (blue), and the QEA Channel A nput (pn 12), and the QEA Channel B nput (pn 11). Fgure 3. Encoder pn outs. Part L: Connectng the power entry Plug n both the 5 volt (green) and 12 volt (red) power supples, as shown n Fgure 4. Do not turn on the supples yet (the LEDs should be off). Fgure 4. Power entry module. 11

12 Part M: Connectng the H Brdge Plug n the H-brdge, shown n Fgure 5. You are gong to need access to the dfferent pns, so be sure t s located n a place you can easly get wres to. Fgure 5. H Brdge connectons Startng on the left, connect the ground and +5 volt supples. Next, connect IN1 to E6 (pn 2) and IN2 to E7 (pn 3). (Note that f the motor speed s negatve you may want to reverse these connectons.) Fnally connect PWM to PWM 3 hgh (pn 1). Startng on the rght, connect (wth the twsted wres) the 12 volt power from the power entry module to the 12 volt nput. Be sure to connect ground to ground and +12 to +12. Next, connect M1 and M2 (usng the twsted wres) to the motor nput. At ths pont all of your wrng should be done. You should check t over before you go on. Two mportant thngs to keep n mnd as you do the remander of ths lab: Use the red swtch to shut off power to the motor. Sometmes stoppng the dspic does not stop the motor, n whch case you wll need to use the swtch. Unless you are told otherwse (and later n the lab you wll be), turn the pot farly slowly. PART N: Determnng Intal Scalng We need a new program now to control the motor. Make sure there are four bolts attached to the wheel. Select Project and open the project lab8.mcp. You wll modfy lab8.c for the remander of ths lab. Now we wll start to determne some of our parameters. Wth the system at rest start the program and slowly turn the pot so the motor s spnnng (less than 30 rad/sec). Let the motor come to a reasonably steady value (t wll lkely keep gettng faster). Wat untl the motor speed s farly constant and the nput 12

13 readng from the pot s also farly constant. Do ths for three dfferent postons of the pot where the steady state speed s less than 80 rad/sec. (Note that t s lkely to be easest to use the sesson log fle than look at the screen output.) We now want to determne the proportonalty constant between the A/D value read from the pot and the motor speed n rad/sec. Compute the three scalng factors and average them (mne was approxmately 0.219). Change the parameter AD_scale (n your code) to ths value. Run the system agan at varous nput values. It may take a whle for the system to reach steady state. Compare your reference nput to the actual output. They should be farly close for speeds below around 80 rad/sec, but they wll not be exact. Ths s open loop control. PART O: Proportonal Control We now want to start wth our frst control scheme, proportonal control. You wll need to declare the varable kp as a double (at the top of the man routne). Outsde of the man loop set kp = 1.0, and nsde the man loop, after both the speed and reference nput are determned, compute the error as error = R-speed. Here R s the reference nput and speed s the measured output speed of the wheel n rad/sec. The control effort s then proportonal to ths error, so u = kp *error. Recomple and download the code onto the mcrocontroller. Now start the system agan. Move the pot to a number of dfferent set ponts, and wat untl the system comes to steady state. Most lkely the steady state value wll be approxmately one half of the set pont. Stop the system and change the value of kp to 5, and then to 10. (Be sure to recomple and download after each tme). Run the system agan for each value of kp. You should notce that the steady state error gets smaller each tme. PART P: Lmtng the slope of the control effort One of the frst lmtatons we wll have to deal wth s the fact that f you try and draw too much power all at once, the power supply assumes you have screwed up. Ths leads to some strange behavor. Starrng wth kp = 10.0, start the system and turn the pot (settng the reference nput) as quckly as you can (but don t worry about turnng t all the way). Mostly lkely you hear strange sounds from the motor lke t s startng and stoppng (or worse). What we need to do n ths case s lmt the rate at whch we allow the control sgnal to change. At the top of the code there s a constant MAX_DELTA_U whch ndcates the maxmum change n control effort u from one tme step to the next. Ths constant s gong to need to be changed (but we wll get to that). Declare a new (double) varable last_u, and set ths varable equal to zero outsde the man loop. Insde the man loop, add statements to the code that do not allow the control effort to ncrease by more than ts current value + the maxmum allowed ncrement. Insert ths lmt on the control effort after 13

14 convertng to a pwm sgnal but before we check that the control effort s not too large. Also be sure to update the value of last_u. However, do not update ths value untl the other statements n the code that nsure that the value of u s wthn acceptable lmts. Fnally, you wll need to set the value for MAX_DELTA_U. I would start at around 800, and change ths as necessary. Try to get ths value as large as possble. Run your code and try to change the pot (the reference nput) as quckly as possble. Once you thnk your values are ok, set kp=100.0 and be sure your system runs acceptably (the motor does not shut off and on). PART Q: Proportonal controllers wth large gans Make sure kp s set to 100 for ths part. Comple the code f you need to and start t runnng. Vary the reference sgnal to a few set ponts (such as 30 rad/sec, 60 rad/sec, and 90 rad/sec) and allow the system to try and reach steady state at each of these set ponts. You should notce that as the set pont ncreases n value, the speed of the wheel starts to vary sgnfcantly from the reference pont. Part of ths s due to the fact that the motor s only capable of one drecton, but a larger part s due to the fact that small errors are amplfed (by 100) and ths causes the motor to contnually oscllate. PART R: Integral control Recall that usng a preflter to control steady state error can sometmes be problematc snce the preflter s outsde the feedback loop. An alternatve, and generally better, soluton s to nclude some form of ntegral control. Recall that an ntegral controller has the form G ( z) = c k U( z) z) = 1 1 z E( Rearrangng ths we get k Ez ( ) = Uz ( ) z 1 U(z) In the tme-doman ths becomes k en ( ) = un ( ) u( n 1) Snce we want the control effort as our output, we wll wrte ths as un ( ) = u( n 1) + ke( n) If we assume the ntal control effort s zero, we can wrte ths as follows: 14

15 u(1) = k e(1) + u(0) = ke(1) u(2) = ke(2) + u(1) = k[ e(2) + e(1)] u(3) = ke(3) + u( 2) = k[ e(3) + e(2) + e(1)] un ( ) = k ek ( ) n k = 1 Hence to mplement the ntegral control, we need to sum the error terms and then scale them by k. Declare two new (double) varables Isum and k. Set the ntal value of Isum to zero outsde the man loop. Wthn the man loop update the error summaton usng somethng lke Isum = Isum + error. Wthn the man loop mplement a PI controller as follows: u = kp*error + k*isum; Set kp = 0.0 and k = 0.5. Modfy the prnt statement at the end of your code so the value of Isum s also prnted out. Recomple and download your code. Start the system and set the reference sgnal to a few reference ponts (30, 60, 90 rad/sec, for example), and let the system run for a whle. Your system wll probably exhbt some pretty strange behavor on ts way to the correct steady state value (t wll bounce around the steady state value due to samplng). Look at what s happenng to the value of Isum durng ths strange behavor. PART S: Integrator problems The frst problem we need to fx s that our motor s only spnnng n one drecton. When Isum becomes large and negatve, we would expect the motor to spn n the other drecton, but t can t. One way to mnmze ths effect s to check to be sure that the value of Isum s greater than or equal to zero. Modfy your code to do ths, recomple, and run t agan. The second problem we have s called ntegrator wndup. Bascally, the accumulated error s becomng too large and causes the system to overshoot, and then undershoot. One way to fx ths s to lmt the value of Isum to a maxmum value. There s a defned varable at the begnnng of the code MAX_ISUM. You need to set a reasonable value for ths varable and lmt the value of Isum be less than ths max. Modfy your code to do ths, recomple, download, and run t agan. You wll have to use some tral and error to fnd a good value for MAX_ISUM snce t s also a functon of the value of k. I choose a value somewhere between 10 and 800 (I m not tellng you where, but I am suggestng someplace to start lookng). Do not move on untl you have what you thnk s a reasonable value of MAX_ISUM and your code seems to be workng. Note that you wll stll have some oscllatons, and that to get to a large steady state value MAX_ISUM wll need to be farly large. 15

16 PART T: Includng a dervatve term Fnally we need to nclude a dervatve term to mplement a full PID controller. You wll need to defne three new (double) varables, kd, Derror, and last_error. Outsde of the man loop set Derror and last_error equal to zero and set kd equal to Insde the man loop nclude the lnes Derror = error-last-error; Last_error = error; Fnally, to mplement the full PID controller defne the control error u to be u = kp*error+k*isum+kd*derror; Comple and download your code, and try a few reference ponts. Your system may stll oscllate, but we can work on that soon. PART U: Desgnng a PID controller At ths pont, we want to hardcode the value of the reference sgnal so the step response wll start as soon as we turn on the system. Just after the statement where we assgn R based on the A/D value, nsert the statement R = 90.0; // set for 90 rad/sec A general plan for desgnng a PID controller usng a tral and error method (we have no model for the plant) s the followng: Frst, set k = kd = 0, and try to get a good response for a step nput usng only kp. Next, adjust k to get a good steady state error. Snce the ntegral control tends to slow the system down, don t make ths any larger than you need to. However, you may need to also change MAX_ISUM to get a good response. Fnally, adjust kd to speed up the response. Once you have a good desgn, you need to log your data so you can make a Matlab plot. If you have saved your data n a fle named (for example) play3.log, then n Matlab type data = load( play3.log ); t = data(:,1); y = data(:,4); The plot I have for one of my results s shown n Fgure 6. 16

17 Desgn PID controllers to meet the specfcatons shown below. Include a Matlab generated fgure of your step response results n your memo, and be sure to nclude both the samplng nterval and the values of kp, k, and kd. Also attach your fnal code to your e-mal. () () () For a samplng nterval of T = sec (the default) our desgn crtera s a settlng tme of less than or equal to 1.2 seconds, and a percent overshoot less than 10%. For a samplng tme of 0.1 sec, our desgn crtera s a settlng tme of less than or equal to 4.0 seconds, and a percent overshoot less than 10%. For a samplng tme of 0.1 sec, desgn a PID controller so there s at least a 10% overshoot and the settlng tme s less than 10 seconds Speed (rad/sec) Tme (sec) Fgure 6: Step response for system wth T = seconds. I am not tellng you my parameter values. Fnally, I would apprecate any comments you may have on ths lab, and how to mprove t. Also, do you thnk t was useful and we should do more labs lke ths n the future or not? 17

18 Instructor Verfcaton Names Part G (2 LEDs) Part J (Pot controls LED) Part J (Pot values wrtten to termnal) 18

RC Filters TEP Related Topics Principle Equipment

RC Filters TEP Related Topics Principle Equipment RC Flters TEP Related Topcs Hgh-pass, low-pass, Wen-Robnson brdge, parallel-t flters, dfferentatng network, ntegratng network, step response, square wave, transfer functon. Prncple Resstor-Capactor (RC)

More information

Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University

Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University Dynamc Optmzaton Assgnment 1 Sasanka Nagavall snagaval@andrew.cmu.edu 16-745 January 29, 213 Robotcs Insttute Carnege Mellon Unversty Table of Contents 1. Problem and Approach... 1 2. Optmzaton wthout

More information

How to Get Started with Virtual Goalie

How to Get Started with Virtual Goalie How to Get Started wth Vrtual Goale HTC VIVE Set up your computer and moble devce Acqure a vrtual realty-enabled computer and the HTC Vve. For hardware specs, to test your computer, or to order from Amazon,

More information

Figure 1. DC-DC Boost Converter

Figure 1. DC-DC Boost Converter EE46, Power Electroncs, DC-DC Boost Converter Verson Oct. 3, 11 Overvew Boost converters make t possble to effcently convert a DC voltage from a lower level to a hgher level. Theory of Operaton Relaton

More information

High Speed ADC Sampling Transients

High Speed ADC Sampling Transients Hgh Speed ADC Samplng Transents Doug Stuetzle Hgh speed analog to dgtal converters (ADCs) are, at the analog sgnal nterface, track and hold devces. As such, they nclude samplng capactors and samplng swtches.

More information

Unit 1. Current and Voltage U 1 VOLTAGE AND CURRENT. Circuit Basics KVL, KCL, Ohm's Law LED Outputs Buttons/Switch Inputs. Current / Voltage Analogy

Unit 1. Current and Voltage U 1 VOLTAGE AND CURRENT. Circuit Basics KVL, KCL, Ohm's Law LED Outputs Buttons/Switch Inputs. Current / Voltage Analogy ..2 nt Crcut Bascs KVL, KCL, Ohm's Law LED Outputs Buttons/Swtch Inputs VOLTAGE AND CRRENT..4 Current and Voltage Current / Voltage Analogy Charge s measured n unts of Coulombs Current Amount of charge

More information

Passive Filters. References: Barbow (pp ), Hayes & Horowitz (pp 32-60), Rizzoni (Chap. 6)

Passive Filters. References: Barbow (pp ), Hayes & Horowitz (pp 32-60), Rizzoni (Chap. 6) Passve Flters eferences: Barbow (pp 6575), Hayes & Horowtz (pp 360), zzon (Chap. 6) Frequencyselectve or flter crcuts pass to the output only those nput sgnals that are n a desred range of frequences (called

More information

Figure 1. DC-DC Boost Converter

Figure 1. DC-DC Boost Converter EE36L, Power Electroncs, DC-DC Boost Converter Verson Feb. 8, 9 Overvew Boost converters make t possble to effcently convert a DC voltage from a lower level to a hgher level. Theory of Operaton Relaton

More information

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel To: Professor Avtable Date: February 4, 3 From: Mechancal Student Subject:.3 Experment # Numercal Methods Usng Excel Introducton Mcrosoft Excel s a spreadsheet program that can be used for data analyss,

More information

Multichannel Frequency Comparator VCH-315. User Guide

Multichannel Frequency Comparator VCH-315. User Guide Multchannel Frequency Comparator VCH-315 User Gude Table of contents 1 Introducton... 3 2 The workng prncple of the Comparator... 6 3 The computed functons... 8 3.1 Basc ratos... 8 3.2 Statstcal functons...

More information

Tunable Wideband Receiver (TWB) Data Processing Description December, 2013

Tunable Wideband Receiver (TWB) Data Processing Description December, 2013 Page 1 of 5 Tunable Wdeband Recever (TWB) Data Processng Descrpton December, 2013 The tunable wdeband recever (TWB) can be manually tuned to any frequency of nterest between 17 and 33 MHz. The recever

More information

VRT014 User s guide V0.8. Address: Saltoniškių g. 10c, Vilnius LT-08105, Phone: (370-5) , Fax: (370-5) ,

VRT014 User s guide V0.8. Address: Saltoniškių g. 10c, Vilnius LT-08105, Phone: (370-5) , Fax: (370-5) , VRT014 User s gude V0.8 Thank you for purchasng our product. We hope ths user-frendly devce wll be helpful n realsng your deas and brngng comfort to your lfe. Please take few mnutes to read ths manual

More information

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources POLYTECHNIC UNIERSITY Electrcal Engneerng Department EE SOPHOMORE LABORATORY Experment 1 Laboratory Energy Sources Modfed for Physcs 18, Brooklyn College I. Oerew of the Experment Ths experment has three

More information

antenna antenna (4.139)

antenna antenna (4.139) .6.6 The Lmts of Usable Input Levels for LNAs The sgnal voltage level delvered to the nput of an LNA from the antenna may vary n a very wde nterval, from very weak sgnals comparable to the nose level,

More information

INSTRUCTION MANUAL BENCH LATHE

INSTRUCTION MANUAL BENCH LATHE WLLOUGHBY COMMUNTY MEN'S SHED mens 296C Salors Bay Road, l _ L^ NORTHBRDGE N.S.W 2063 The Wlkmghby Communty" NSTRUCTON MANUAL BENCH LATHE Before usng be sure to read ths manual carefully -C6- Safety nstructons

More information

... -J to send radio signals through the air, how modulation , IJ."~ UNITED STATES~~ FREQUENCY ALLOCATIONS

... -J to send radio signals through the air, how modulation , IJ.~ UNITED STATES~~ FREQUENCY ALLOCATIONS ..., J."..J What would lfe be lke wthout rado and televson? Only a hundred years ago the fastest way to send a message between Amerca and Europe or Asa was a fast shp. Now we get lve televson coverage

More information

Make Your Own Biodiesel Processor by drinkmorecoffee

Make Your Own Biodiesel Processor by drinkmorecoffee http://www.nstructables.com/d/make-your-own-bodesel-processor//... Instructables.com Make Your Own Bodesel Processor by drnkmorecoffee Aprl 21, 2008 In a world where envronmental awareness s becomng ncreasngly

More information

1. REVIEW 2. DELIVERY SET

1. REVIEW 2. DELIVERY SET power status ON steps DIP test reset ON DIP off modes lght sensor / led sensor speed on sensor 2 speed off on/off delay pause to off REVIEW LED lghtng devce s desgned for automatc lghtng of starway steps

More information

Shunt Active Filters (SAF)

Shunt Active Filters (SAF) EN-TH05-/004 Martt Tuomanen (9) Shunt Actve Flters (SAF) Operaton prncple of a Shunt Actve Flter. Non-lnear loads lke Varable Speed Drves, Unnterrupted Power Supples and all knd of rectfers draw a non-snusodal

More information

Revision of Lecture Twenty-One

Revision of Lecture Twenty-One Revson of Lecture Twenty-One FFT / IFFT most wdely found operatons n communcaton systems Important to know what are gong on nsde a FFT / IFFT algorthm Wth the ad of FFT / IFFT, ths lecture looks nto OFDM

More information

TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS TN TERMINATON FOR POINT-TO-POINT SYSTEMS. Zo = L C. ω - angular frequency = 2πf

TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS TN TERMINATON FOR POINT-TO-POINT SYSTEMS. Zo = L C. ω - angular frequency = 2πf TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS INTRODUCTION Because dgtal sgnal rates n computng systems are ncreasng at an astonshng rate, sgnal ntegrty ssues have become far more mportant to

More information

Control Chart. Control Chart - history. Process in control. Developed in 1920 s. By Dr. Walter A. Shewhart

Control Chart. Control Chart - history. Process in control. Developed in 1920 s. By Dr. Walter A. Shewhart Control Chart - hstory Control Chart Developed n 920 s By Dr. Walter A. Shewhart 2 Process n control A phenomenon s sad to be controlled when, through the use of past experence, we can predct, at least

More information

Test 2. ECON3161, Game Theory. Tuesday, November 6 th

Test 2. ECON3161, Game Theory. Tuesday, November 6 th Test 2 ECON36, Game Theory Tuesday, November 6 th Drectons: Answer each queston completely. If you cannot determne the answer, explanng how you would arrve at the answer may earn you some ponts.. (20 ponts)

More information

MASTER TIMING AND TOF MODULE-

MASTER TIMING AND TOF MODULE- MASTER TMNG AND TOF MODULE- G. Mazaher Stanford Lnear Accelerator Center, Stanford Unversty, Stanford, CA 9409 USA SLAC-PUB-66 November 99 (/E) Abstract n conjuncton wth the development of a Beam Sze Montor

More information

In 2007 my life had come to a standstill because of chronic pain.

In 2007 my life had come to a standstill because of chronic pain. 4 SPI NE:99W X3300HPX. 0. 33W X11HI N. Y ou r s e l f f r ompa n! SPI NE PBK008 8. 5X11I N. Act onuser. com Onl yact onuser. com hast heexcl us ver ght st od st r but et h sact onscr pt.i fyouhave downl

More information

Lecture 10: Bipolar Junction Transistor Construction. NPN Physical Operation.

Lecture 10: Bipolar Junction Transistor Construction. NPN Physical Operation. Whtes, EE 320 Lecture 10 Page 1 of 9 Lecture 10: Bpolar Juncton Transstor Constructon. NPN Physcal Operaton. For the remander of ths semester we wll be studyng transstors and transstor crcuts. The transstor

More information

Sensors for Motion and Position Measurement

Sensors for Motion and Position Measurement Sensors for Moton and Poston Measurement Introducton An ntegrated manufacturng envronment conssts of 5 elements:- - Machne tools - Inspecton devces - Materal handlng devces - Packagng machnes - Area where

More information

29. Network Functions for Circuits Containing Op Amps

29. Network Functions for Circuits Containing Op Amps 9. Network Functons for Crcuts Contanng Op Amps Introducton Each of the crcuts n ths problem set contans at least one op amp. Also each crcut s represented by a gven network functon. These problems can

More information

ECE315 / ECE515 Lecture 5 Date:

ECE315 / ECE515 Lecture 5 Date: Lecture 5 Date: 18.08.2016 Common Source Amplfer MOSFET Amplfer Dstorton Example 1 One Realstc CS Amplfer Crcut: C c1 : Couplng Capactor serves as perfect short crcut at all sgnal frequences whle blockng

More information

EE133 - Lab 6 RF Amplification: The Power Amplifier and LNA (revisited)

EE133 - Lab 6 RF Amplification: The Power Amplifier and LNA (revisited) Lab 6 - The Power Amplfer and LNA - EE133 - Prof. Dutton - Wnter 2004 1 EE133 - Lab 6 RF Amplfcaton: The Power Amplfer and LNA (revsted) 1 Introducton There wll be no formal Prelab 6 handout. Ths does

More information

1 GSW Multipath Channel Models

1 GSW Multipath Channel Models In the general case, the moble rado channel s pretty unpleasant: there are a lot of echoes dstortng the receved sgnal, and the mpulse response keeps changng. Fortunately, there are some smplfyng assumptons

More information

AFV-P 2U/4U. AC + DC Power Solutions. series. Transient Generation for Disturbance Tests. only. High Performance Programmable AC Power Source

AFV-P 2U/4U. AC + DC Power Solutions. series. Transient Generation for Disturbance Tests. only. High Performance Programmable AC Power Source AFV-P seres Hgh Performance Programmable AC Power Source only 2U/4U Intutve Touch Screen HMI Output Frequency up to 15-1000Hz Power Lne Smulatons: Step & Ramp Features Fast Response Tme: 300μs AC Source

More information

current activity shows on the top right corner in green. The steps appear in yellow

current activity shows on the top right corner in green. The steps appear in yellow Browzwear Tutorals Tutoral ntroducton Ths tutoral leads you through the basc garment creaton process usng an llustrated step by step approach. Each slde shows the actual applcaton at the stage of the acton

More information

PRO- CRIMPER* III Hand

PRO- CRIMPER* III Hand PRO- CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 58529-1 408-9999 wth De Assembly 58529-2 11 AUG 14 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

NATIONAL RADIO ASTRONOMY OBSERVATORY Green Bank, West Virginia SPECTRAL PROCESSOR MEMO NO. 25. MEMORANDUM February 13, 1985

NATIONAL RADIO ASTRONOMY OBSERVATORY Green Bank, West Virginia SPECTRAL PROCESSOR MEMO NO. 25. MEMORANDUM February 13, 1985 NATONAL RADO ASTRONOMY OBSERVATORY Green Bank, West Vrgna SPECTRAL PROCESSOR MEMO NO. 25 MEMORANDUM February 13, 1985 To: Spectral Processor Group From: R. Fsher Subj: Some Experments wth an nteger FFT

More information

4.3- Modeling the Diode Forward Characteristic

4.3- Modeling the Diode Forward Characteristic 2/8/2012 3_3 Modelng the ode Forward Characterstcs 1/3 4.3- Modelng the ode Forward Characterstc Readng Assgnment: pp. 179-188 How do we analyze crcuts wth juncton dodes? 2 ways: Exact Solutons ffcult!

More information

ANNUAL OF NAVIGATION 11/2006

ANNUAL OF NAVIGATION 11/2006 ANNUAL OF NAVIGATION 11/2006 TOMASZ PRACZYK Naval Unversty of Gdyna A FEEDFORWARD LINEAR NEURAL NETWORK WITH HEBBA SELFORGANIZATION IN RADAR IMAGE COMPRESSION ABSTRACT The artcle presents the applcaton

More information

PRO- CRIMPER III Hand Crimping Tool Assembly DESCRIPTION (Figures 1 and 2)

PRO- CRIMPER III Hand Crimping Tool Assembly DESCRIPTION (Figures 1 and 2) PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 58495-1 408-9819 Wth De Assembly 58495-2 22 JUL 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

aperture David Makovoz, 30/01/2006 Version 1.0 Table of Contents

aperture David Makovoz, 30/01/2006 Version 1.0 Table of Contents aperture 1 aperture Davd Makovoz, 30/01/2006 Verson 1.0 Table of Contents aperture... 1 1 Overvew... 2 1.1 Input Image Requrements... 2 2 aperture... 2 2.1 Input... 2 2.2 Processng... 4 2.3 Output Table...

More information

Webinar Series TMIP VISION

Webinar Series TMIP VISION Webnar Seres TMIP VISION TMIP provdes techncal support and promotes knowledge and nformaton exchange n the transportaton plannng and modelng communty. DISCLAIMER The vews and opnons expressed durng ths

More information

onlinecomponents.com

onlinecomponents.com PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 58535-1 wth 408-4021 De Assembly 58535-2 29 JUL 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

Adaptive System Control with PID Neural Networks

Adaptive System Control with PID Neural Networks Adaptve System Control wth PID Neural Networs F. Shahra a, M.A. Fanae b, A.R. Aromandzadeh a a Department of Chemcal Engneerng, Unversty of Sstan and Baluchestan, Zahedan, Iran. b Department of Chemcal

More information

PRO- CRIMPER* III Hand Crimping

PRO- CRIMPER* III Hand Crimping PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 58641-1 wth 408-4379 De Assembly 58641-2 18 JUN 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

DALI gateway Tunable White Plus Order No

DALI gateway Tunable White Plus Order No Product documentaton Issue: 20.07.2017 21083100 DALI gateway Tunable Whte Plus Table of Contents Product documentaton 1 Product defnton... 4 1.1 Product catalogue... 4 1.2 Functon... 4 2 Mountng, electrcal

More information

Product Information. Jaw quick-change system BSWS-PGZN-plus

Product Information. Jaw quick-change system BSWS-PGZN-plus Product Informaton BSWS-PGZN-plus BSWS-PGZN-plus Productve. Flexble. Cost-effectve. BSWS jaw quck-change system The BSWS jaw quck-change system allows top jaws to be changed on the grpper manually and

More information

PRO- CRIMPER* III Hand

PRO- CRIMPER* III Hand PRO- CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 90759-1 408-9962 wth De Assembly 90759-2 03 MAY 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

Old text. From Through the Looking Glass by Lewis Carroll. Where is the setting of this place? Describe in your own words.

Old text. From Through the Looking Glass by Lewis Carroll. Where is the setting of this place? Describe in your own words. Old text Read ths extract carefully, then answer, n complete sentences, the questons that follow. For some mnutes Alce stood wthout speakng, lookng out n all drectons over the country and a most curous

More information

Instructions for Use. PetChatz.com. PetChatz.com

Instructions for Use. PetChatz.com. PetChatz.com Instructons for Use PetChatz.com PetChatz.com POWER ON/OFF LED PET-SAFE MICROPHONE SOUND DETECTOR MANUAL TREAT RELEASE LOW TREAT LED LOW-LIGHT HD CAMERA for hgh-qualty vdeo MOTION DETECTION FULL-COLOR

More information

Calculation of the received voltage due to the radiation from multiple co-frequency sources

Calculation of the received voltage due to the radiation from multiple co-frequency sources Rec. ITU-R SM.1271-0 1 RECOMMENDATION ITU-R SM.1271-0 * EFFICIENT SPECTRUM UTILIZATION USING PROBABILISTIC METHODS Rec. ITU-R SM.1271 (1997) The ITU Radocommuncaton Assembly, consderng a) that communcatons

More information

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die AssemblY

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die AssemblY PRO-CRIMPER* III Hand Crmpng Tool Assembly 90758-1 wth De AssemblY 90758-2 Instructon Sheet 408-9938 01 NOV 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

PRO- CRIMPER III Hand Crimping Tool Assembly INSTALLATION AND REMOVAL OF DIE SET AND LOCATOR ASSEMBLY (Figure 2)

PRO- CRIMPER III Hand Crimping Tool Assembly INSTALLATION AND REMOVAL OF DIE SET AND LOCATOR ASSEMBLY (Figure 2) PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 90547-1 wth 408-9884 De Assembly 90547-2 02 NOV 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

EPLC9600-PID QUADRO(96x96 1/4 DIN) 4 Channel PID Controller

EPLC9600-PID QUADRO(96x96 1/4 DIN) 4 Channel PID Controller EPLC9600-PID QUADRO(96x96 1/4 DIN) 4 Channel PID Controller EPLC9600-PID QUADRO 96 x 96 DIN 1/4 4 Channel PID Controller - 128 x 64 Graphcal LCD dsplay - 4 Thermocouple (J, K, L, R or S type) sensor nputs

More information

problems palette of David Rock and Mary K. Porter 6. A local musician comes to your school to give a performance

problems palette of David Rock and Mary K. Porter 6. A local musician comes to your school to give a performance palette of problems Davd Rock and Mary K. Porter 1. If n represents an nteger, whch of the followng expressons yelds the greatest value? n,, n, n, n n. A 60-watt lghtbulb s used for 95 hours before t burns

More information

PRO-CRIMPER* III Hand Tool Assembly with Die Assembly

PRO-CRIMPER* III Hand Tool Assembly with Die Assembly PRO-CRIMPER* III Hand Tool Assembly 2063778-1 wth De Assembly 2063778-2 Instructon Sheet 408-10290 02 FEB 12 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

PRO- CRIMPER* III Hand Crimping

PRO- CRIMPER* III Hand Crimping PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool Assembly 91338-1 408-8377 wth De Assembly 91338-2 22 JUL 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

DALI gateway Plus Order No

DALI gateway Plus Order No KNX Product documentaton Issue: 18.09.2015 21803200 DALI gateway Plus Table of Contents KNX Product documentaton 1 Product defnton... 4 1.1 Product catalogue... 4 1.2 Functon... 4 2 Installaton, electrcal

More information

ETSI TS V8.4.0 ( )

ETSI TS V8.4.0 ( ) TS 100 959 V8.4.0 (2001-11) Techncal Specfcaton Dgtal cellular telecommuncatons system (Phase 2+); Modulaton (3GPP TS 05.04 verson 8.4.0 Release 1999) GLOBAL SYSTEM FOR MOBILE COMMUNICATIONS R 1 TS 100

More information

PRO-CRIMPER* III Hand. with Die Assembly OCT 11 Rev C. Pivot Pin. Die Assembly Moving Jaw CONTACT FAMILY SIZE (AWG)

PRO-CRIMPER* III Hand. with Die Assembly OCT 11 Rev C. Pivot Pin. Die Assembly Moving Jaw CONTACT FAMILY SIZE (AWG) PRO-CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 58514-1 408-9973 wth De Assembly 58514-2 12 OCT 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

User s manual. Digital Control Relay SAA SAB SAC SAD SAJ

User s manual. Digital Control Relay SAA SAB SAC SAD SAJ User s manual Dgtal Control Relay SAA SAB SAC SAD SAJ DISIBEINT ELECTRONIC S.L, has been present n the feld of the manufacture of components for the ndustral automaton for more than 35 years, and mantans

More information

熊本大学学術リポジトリ. Kumamoto University Repositor

熊本大学学術リポジトリ. Kumamoto University Repositor 熊本大学学術リポジトリ Kumamoto Unversty Repostor Ttle Wreless LAN Based Indoor Poston and Its Smulaton Author(s) Ktasuka, Teruak; Nakansh, Tsune CtatonIEEE Pacfc RIM Conference on Comm Computers, and Sgnal Processng

More information

LED Fixture Controller ELED1 Programming Guide

LED Fixture Controller ELED1 Programming Guide LED Fxture Controller ELED1 Programmng Gude ELED1-AUN ELED1-AUS Copyrght 2018 Echoflex Solutons, Inc. All rghts reserved. Product nformaton and specfcaton detals subject to change Echoflex Solutons 38924

More information

White Paper. OptiRamp Model-Based Multivariable Predictive Control. Advanced Methodology for Intelligent Control Actions

White Paper. OptiRamp Model-Based Multivariable Predictive Control. Advanced Methodology for Intelligent Control Actions Whte Paper OptRamp Model-Based Multvarable Predctve Control Advanced Methodology for Intellgent Control Actons Vadm Shapro Dmtry Khots, Ph.D. Statstcs & Control, Inc., (S&C) propretary nformaton. All rghts

More information

B15A SERIES BRUSHLESS SERVO AMPLIFIERS Models: B12A6, B15A8

B15A SERIES BRUSHLESS SERVO AMPLIFIERS Models: B12A6, B15A8 B15A SERES BRUSHLESS SERVO AMPLFERS Models: B12A6, B15A8 FEATURES: Surface-mount technology Small size, low cost, ease of use DP switch selectable: current, open loop, or tachometer velocity mode Four

More information

SDE PEW- 12 Hand Tool

SDE PEW- 12 Hand Tool SDE PEW- 12 Hand Tool Instructon Sheet Assembly 2063956-1 wth 408-10370 De Assembly 2063956-2 07 OCT 10 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually powered

More information

Chapter 2 Two-Degree-of-Freedom PID Controllers Structures

Chapter 2 Two-Degree-of-Freedom PID Controllers Structures Chapter 2 Two-Degree-of-Freedom PID Controllers Structures As n most of the exstng ndustral process control applcatons, the desred value of the controlled varable, or set-pont, normally remans constant

More information

Fall 2018 #11 Games and Nimbers. A. Game. 0.5 seconds, 64 megabytes

Fall 2018 #11 Games and Nimbers. A. Game. 0.5 seconds, 64 megabytes 5-95 Fall 08 # Games and Nmbers A. Game 0.5 seconds, 64 megabytes There s a legend n the IT Cty college. A student that faled to answer all questons on the game theory exam s gven one more chance by hs

More information

Harmonic Balance of Nonlinear RF Circuits

Harmonic Balance of Nonlinear RF Circuits MICROWAE AND RF DESIGN Harmonc Balance of Nonlnear RF Crcuts Presented by Mchael Steer Readng: Chapter 19, Secton 19. Index: HB Based on materal n Mcrowave and RF Desgn: A Systems Approach, nd Edton, by

More information

ECE 2133 Electronic Circuits. Dept. of Electrical and Computer Engineering International Islamic University Malaysia

ECE 2133 Electronic Circuits. Dept. of Electrical and Computer Engineering International Islamic University Malaysia ECE 2133 Electronc Crcuts Dept. of Electrcal and Computer Engneerng Internatonal Islamc Unversty Malaysa Chapter 12 Feedback and Stablty Introducton to Feedback Introducton to Feedback 1-4 Harold Black,

More information

Secure Transmission of Sensitive data using multiple channels

Secure Transmission of Sensitive data using multiple channels Secure Transmsson of Senstve data usng multple channels Ahmed A. Belal, Ph.D. Department of computer scence and automatc control Faculty of Engneerng Unversty of Alexandra Alexandra, Egypt. aabelal@hotmal.com

More information

Networks. Backpropagation. Backpropagation. Introduction to. Backpropagation Network training. Backpropagation Learning Details 1.04.

Networks. Backpropagation. Backpropagation. Introduction to. Backpropagation Network training. Backpropagation Learning Details 1.04. Networs Introducton to - In 1986 a method for learnng n mult-layer wor,, was nvented by Rumelhart Paper Why are what and where processed by separate cortcal vsual systems? - The algorthm s a sensble approach

More information

Section 5. Signal Conditioning and Data Analysis

Section 5. Signal Conditioning and Data Analysis Secton 5 Sgnal Condtonng and Data Analyss 6/27/2017 Engneerng Measurements 5 1 Common Input Sgnals 6/27/2017 Engneerng Measurements 5 2 1 Analog vs. Dgtal Sgnals 6/27/2017 Engneerng Measurements 5 3 Current

More information

User s manual. Digital control relay SVO/SVP

User s manual. Digital control relay SVO/SVP User s manual Dgtal control relay SVO/SVP DISIBEINT ELECTRONIC S.L, has been present n the feld of the manufacture of components for the ndustral automaton for more than 35 years, and mantans n constant

More information

Frequency Map Analysis at CesrTA

Frequency Map Analysis at CesrTA Frequency Map Analyss at CesrTA J. Shanks. FREQUENCY MAP ANALYSS A. Overvew The premse behnd Frequency Map Analyss (FMA) s relatvely straghtforward. By samplng turn-by-turn (TBT) data (typcally 2048 turns)

More information

Instruction Sheet SDE- SA Hand Tool Assembly with Die Assembly

Instruction Sheet SDE- SA Hand Tool Assembly with Die Assembly Instructon Sheet 408-10002 wth De Assembly 1752938-2 06 APR 10 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually powered hand tools. Hand tools are ntended for

More information

LITECOM. Self-contained emergency luminaires

LITECOM. Self-contained emergency luminaires LITECOM Self-contaned emergency lumnares Legal nformaton Copyrght Copyrght Zumtobel Lghtng GmbH All rghts reserved. Manufacturer Zumtobel Lghtng GmbH Schwezerstrasse 30 6850 Dornbrn AUSTRIA Tel. +43-(0)5572-390-0

More information

Online Reporting. Online Reporting. A step-by-step guide. Important information for churches, schools and organisations

Online Reporting. Online Reporting. A step-by-step guide.   Important information for churches, schools and organisations Onlne Reportng Onlne Reportng A step-by-step gude www.olr.ccl.com Important nformaton for churches, schools and organsatons May 2016 Reportng s a vtal part of beng a lcence holder... Reportng s a requrement

More information

100 mm. 200 mm. 300 mm. 500 mm. Wood (rough) Cardboard Black DBT DBT DBT DBT DBT - 1 K DBT K CONNECTION DIAGRAMS.

100 mm. 200 mm. 300 mm. 500 mm. Wood (rough) Cardboard Black DBT DBT DBT DBT DBT - 1 K DBT K CONNECTION DIAGRAMS. DIFFUSED BEAM SENSOR Ths devce consst of a transmtter and a recever together. Ths look alke Inductve Proxmty Sensor and hence also known as IR Proxmty Sensor. The emtter emts Infra red rays whch are reflected

More information

Application of Intelligent Voltage Control System to Korean Power Systems

Application of Intelligent Voltage Control System to Korean Power Systems Applcaton of Intellgent Voltage Control System to Korean Power Systems WonKun Yu a,1 and HeungJae Lee b, *,2 a Department of Power System, Seol Unversty, South Korea. b Department of Power System, Kwangwoon

More information

Uncertainty in measurements of power and energy on power networks

Uncertainty in measurements of power and energy on power networks Uncertanty n measurements of power and energy on power networks E. Manov, N. Kolev Department of Measurement and Instrumentaton, Techncal Unversty Sofa, bul. Klment Ohrdsk No8, bl., 000 Sofa, Bulgara Tel./fax:

More information

Customer witness testing guide

Customer witness testing guide Customer wtness testng gude Ths gude s amed at explanng why we need to wtness test equpment whch s beng connected to our network, what we actually do when we complete ths testng, and what you can do to

More information

PRO- CRIMPER* III Hand Crimping

PRO- CRIMPER* III Hand Crimping PRO- CRIMPER* III Hand Crmpng Instructon Sheet Tool 58448-2 408-9357 Wth De 58448-3 10 Mar 11 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually powered hand

More information

Analysis of Time Delays in Synchronous and. Asynchronous Control Loops. Bj rn Wittenmark, Ben Bastian, and Johan Nilsson

Analysis of Time Delays in Synchronous and. Asynchronous Control Loops. Bj rn Wittenmark, Ben Bastian, and Johan Nilsson 37th CDC, Tampa, December 1998 Analyss of Delays n Synchronous and Asynchronous Control Loops Bj rn Wttenmark, Ben Bastan, and Johan Nlsson emal: bjorn@control.lth.se, ben@control.lth.se, and johan@control.lth.se

More information

Rejection of PSK Interference in DS-SS/PSK System Using Adaptive Transversal Filter with Conditional Response Recalculation

Rejection of PSK Interference in DS-SS/PSK System Using Adaptive Transversal Filter with Conditional Response Recalculation SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol., No., November 23, 3-9 Rejecton of PSK Interference n DS-SS/PSK System Usng Adaptve Transversal Flter wth Condtonal Response Recalculaton Zorca Nkolć, Bojan

More information

Guidelines for CCPR and RMO Bilateral Key Comparisons CCPR Working Group on Key Comparison CCPR-G5 October 10 th, 2014

Guidelines for CCPR and RMO Bilateral Key Comparisons CCPR Working Group on Key Comparison CCPR-G5 October 10 th, 2014 Gudelnes for CCPR and RMO Blateral Key Comparsons CCPR Workng Group on Key Comparson CCPR-G5 October 10 th, 2014 These gudelnes are prepared by CCPR WG-KC and RMO P&R representatves, and approved by CCPR,

More information

THE UCC3884 FREQUENCY FOLDBACK PULSE WIDTH MODULATOR

THE UCC3884 FREQUENCY FOLDBACK PULSE WIDTH MODULATOR U-64 Phlp Cooke THE UCC3884 FREQUENCY FOLDBACK PULSE WIDTH MODULATOR UNITRODE CORPORATION APPLICATION NOTE U-64 The UCC3884 Frequency Foldback Pulse Wdth Modulator by Phlp Cooke ABSTRACT Ths applcaton

More information

User s manual. Digital control relay SNI

User s manual. Digital control relay SNI User s manual Dgtal control relay SNI DISIBEINT ELECTRONIC S.L, has been present n the feld of the manufacture of components for the ndustral automaton for more than 35 years, and mantans n constant evoluton

More information

Your First 7 Days. A step-by-step guide to getting started with premix insulin

Your First 7 Days. A step-by-step guide to getting started with premix insulin Your Frst 7 Days A step-by-step gude to gettng started wth premx nsuln Let s Get Started! 01 Dd you fll your frst prescrpton? Your health care provder prescrbed a premx nsuln to help manage your dabetes

More information

Micro-grid Inverter Parallel Droop Control Method for Improving Dynamic Properties and the Effect of Power Sharing

Micro-grid Inverter Parallel Droop Control Method for Improving Dynamic Properties and the Effect of Power Sharing 2015 AASRI Internatonal Conference on Industral Electroncs and Applcatons (IEA 2015) Mcro-grd Inverter Parallel Droop Control Method for Improvng Dynamc Propertes and the Effect of Power Sharng aohong

More information

FFT Spectrum Analyzer

FFT Spectrum Analyzer THE ANNUAL SYMPOSIUM OF THE INSTITUTE OF SOLID MECHANICS SISOM 22 BUCHAREST May 16-17 ----------------------------------------------------------------------------------------------------------------------------------------

More information

Locator Pin Indexing Pin. Wire Size Marking CAUTION NOTE TOOLING ASSISTANCE CENTER PRODUCT INFORMATION

Locator Pin Indexing Pin. Wire Size Marking CAUTION NOTE TOOLING ASSISTANCE CENTER PRODUCT INFORMATION ROTA-CRIMP* Crmpng Tool Instructon Sheet 408-2681 68321-1 13 APR 12 Statonary De (Nest) Anvl De Hold-Down Devce and Contact Locator Front of Tool Locator Pn Indexng Pn Wre Sze Markng The hold-down devce

More information

PRO- CRIMPER* III Hand

PRO- CRIMPER* III Hand PRO- CRIMPER* III Hand Instructon Sheet Crmpng Tool Assembly 90684-1 408-9934 wth De Assembly 90684-2 09 OCT 09 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

IEE Electronics Letters, vol 34, no 17, August 1998, pp ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES

IEE Electronics Letters, vol 34, no 17, August 1998, pp ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES IEE Electroncs Letters, vol 34, no 17, August 1998, pp. 1622-1624. ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES A. Chatzgeorgou, S. Nkolads 1 and I. Tsoukalas Computer Scence Department, 1 Department

More information

Strain Gauge Measuring Amplifier BA 660

Strain Gauge Measuring Amplifier BA 660 Stran Gauge Measurng Amplfer BA 660 Orgnal of the Manual BA660 / IP20 BA660 / IP66 Table of Contents 1. Safety precautons...2 1.1. Feld of applcaton...2 1.2. Installaton...2 1.3. Mantenance...2 2. Functon...2

More information

1 Signs and symbols. 4 Installation 5 Active window 6 Commissioning Filter settings edali addressing. 6.4 Addressing. 7 General functions

1 Signs and symbols. 4 Installation 5 Active window 6 Commissioning Filter settings edali addressing. 6.4 Addressing. 7 General functions Table of contents 1 Sgns and symbols... 5 2 Changes ntroduced... wth masterconfigurator 2.10 6 3 Introducton... 7 4 Installaton... 8 5 Actve wndow... 10 6 Commssonng... 12 6.1 Selectng... an nterface 12

More information

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die Assembly

PRO-CRIMPER* III Hand Crimping Tool Assembly with Die Assembly PRO-CRIMPER* III Hand Crmpng Tool Assembly 90548-1 wth De Assembly 90548-2 Instructon Sheet 408-9885 02 NOV 12 PROPER USE GUIDELINES Cumulatve Trauma Dsorders can result from the prolonged use of manually

More information

Performance Testing of the Rockwell PLGR+ 96 P/Y Code GPS receiver

Performance Testing of the Rockwell PLGR+ 96 P/Y Code GPS receiver Performance Testng of the Rockwell PLGR+ 96 P/Y Code GPS recever By Santago Mancebo and Ken Chamberlan Introducton: The Rockwell PLGR (Precson Lghtweght GPS Recever) + 96 s a Precse Postonng Servce P/Y

More information

Microelectronic Circuits

Microelectronic Circuits Mcroelectronc Crcuts Slde 1 Introducton Suggested textbook: 1. Adel S. Sedra and Kenneth C. Smth, Mcroelectronc Crcuts Theory and Applcatons, Sxth edton Internatonal Verson, Oxford Unersty Press, 2013.

More information

ISBN-10: ISBN-13: Educational Impressions, Inc., Hawthorne, NJ. Printed in the U.S.A.

ISBN-10: ISBN-13: Educational Impressions, Inc., Hawthorne, NJ. Printed in the U.S.A. Story Elements Understandng Lterary Terms and Devces= Pont of Vew Usng Lterature to Teach Lterary Elements Settng Plot Mood & Tone Character Style Theme...and more! Wrtten by Rebecca Stark Illustrated

More information

STATISTICS. is given by. i i. = total frequency, d i. = x i a ANIL TUTORIALS. = total frequency and d i. = total frequency, h = class-size

STATISTICS. is given by. i i. = total frequency, d i. = x i a ANIL TUTORIALS. = total frequency and d i. = total frequency, h = class-size STATISTICS ImPORTANT TERmS, DEFINITIONS AND RESULTS l The mean x of n values x 1, x 2, x 3,... x n s gven by x1+ x2 + x3 +... + xn x = n l mean of grouped data (wthout class-ntervals) () Drect method :

More information

MTBF PREDICTION REPORT

MTBF PREDICTION REPORT MTBF PREDICTION REPORT PRODUCT NAME: BLE112-A-V2 Issued date: 01-23-2015 Rev:1.0 Copyrght@2015 Bluegga Technologes. All rghts reserved. 1 MTBF PREDICTION REPORT... 1 PRODUCT NAME: BLE112-A-V2... 1 1.0

More information