A Component-Based Navigation-Guidance-Control Architecture for Mobile Robots

Size: px
Start display at page:

Download "A Component-Based Navigation-Guidance-Control Architecture for Mobile Robots"

Transcription

1 A Componen-Based Navigaion-Guidance-Conrol Archiecure for Mobile Robos Nicolas Gobillo Charles Lesire David Doose Onera - The French Aerospace Lab, Toulouse, France firsname.lasname a onera.fr Absrac In his paper we will analyze a well known archiecure in aerial roboics and generalize i o oher mobile robos. We will hen propose a normalized validaion procedure for his generalized archiecure poining ou some good pracices when developing componens. 1 Inroducion Robos are more and more auonomous, as hey are involved in more and more complex environmens, achieving more and more complex asks. Anyway, however heir auonomy skills are (from simple roue following capabiliies, o embedding complex AI planning algorihms), heir auonomy always rely on a navigaion archiecure. This navigaion archiecure provides boh localizaion informaion and locomoion capabiliies. In avionics, and herefore for aerial robos, his navigaion archiecure is used o be decomposed ino navigaion, guidance and conrol [1, 2]. For mobile (ground or marine) robos, his decomposiion is no so common, bu we can idenify similar componens on almos all exising archiecures [3, 4]. In his paper, we propose o formalize roboics engineering radiions ino a general paern o design navigaion, guidance, conrol (NGC) sofware archiecures for mobile robos. This design paern, along wih some complemenary bes pracices, is made o emphasize robusness and real-imeness of he archiecure. The NGC design paern is a componen-based generic sofware archiecure. I hen fis in Componen-Based Sofware Engineering (CBSE), which is an essenial design paradigm for roboic sofware developmen [5]. 1

2 2 The NGC archiecure The main NGC paern is based on hree componens: Navigaion: his componen uses he robo resources in order o locae iself in he world and o compue a coarse pah o achieve he mission s objecive. Guidance: he role of his componen is o compue rajecories o reach he nex waypoin provided by he navigaion componen; i includes reacive obsacle avoidance and local pah planning. Conrol: is goal is o generae he commands applied o he robo s acuaors in order o follow he guidance rajecories. These hree componens are composed ogeher o insaniae he NGC archiecure (Fig. 1). Figure 1: The NGC design paern archiecure The navigaion componen has wo inpus : he mission objecive and some informaion on he robo localizaion. The former is represened as a waypoin o reach. The laer gives informaion abou he robo localizaion in is environmen. For insance, i may be a map from a SLAM algorihm along wih an esimaion of he robo posiion. The navigaion componen hen oupus a local waypoin ha represens a goal poin o reach by he guidance componen. The guidance componen also akes ino accoun local elemery informaion in order o provide reacive obsacle avoidance while compuing smooh rajecories. I hen oupus he speed o apply o each DOF of he robo. Finally, he conrol componen ranslaes hese speed commands ino commands for he robo s acuaors. 3 Componen models 3.1 Mauve componen models In order o validae he componen s general behaviour, we use he Mauve modelling framework [6] which brings a powerful scheduling analysis and an inerface/codel separaion wihin he analysis. 2

3 We spli he componen concep in wo disinc pars : he inerface wih oher componens and he codels. The former provides several means of ineracion : properies: componens can be configured by changing parameers in heir properies; services: a componen can le is peers o direcly use one of is mehods; pors: when a componen needs o exchange, i will use one of is inpu or oupu pors The laer gives he componen he mehods and funcions i needs. The Mauve framework hardly relies on a formal definiion of he modelled componens. This definiion is implemened using a domain specific language which is parially shown in he following componens (lisings 1, 2 and 3). The Mauve model is made of several pars o fully describe a componen: he codel declaraion: i is done using he fun keyword followed by he codel name an is yped parameers. The codel reurn ype is also required; he componen definiion: his par is signaled by he word componen followed by he componen s name and conain several opional fields: such as pors or aribues. The former represens he componen s abiliy o communicae wih ohers. Every por has a specified ype and is oriened as an inpu or an oupu. The aribues keyword will be used o declare inernal variables o he componen. On he oher hand, he componen model has a mandaory field which can be updae or saemachine. The updae keyword indicaes where he componen will loop a every cycle whereas he saemachine word will ell Mauve ha he defaul sae machine of he componen will be redefined. 3.2 Codels The word codel sands for Elemenary Code. This code provides he funcionaliies and he algorihms o he hos componen. These codels are mean o be arge-independen and should be wrien in any analyzable language. I also allows is funcionaliies o be shareable and easily mainainable. In 3

4 he general case i is a good pracice o wrie reenran and hread-safe code wihou any unbounded loop. 3.3 NGC componens We will now pu more deails on wha is really in he Navigaion, Guidance and Conrol Mauve models. Firs, he navigaion componen is made of he defaul sae machine (lising 1). Lising 1: Mauve model of he Navigaion componen 1 fun updae_plan ( posiion : Pose, mission : Pose ): Plan 2 fun compue_nex_waypoin ( posiion : Pose, plan : Plan )): Pose 3 4 componen Navigaion { 5 pors { 6 inpu currenposepor : Pose 7 inpu missionpor : Pose 8 oupu nexpor : Pose 9 } 10 aribues { 11 mission : Pose 12 plan : PoseLis 13 posiion : Pose 14 nexpos : Pose 15 } 16 updae { 17 i f ( missionpor. hasnewdaa ) hen { 18 mission = read missionpor ; 19 plan = updae_plan ( posiion, mission ); 20 } 21 i f ( currenposepor. hasnewdaa ) hen { 22 posiion = read currenposepor ; 23 nexpos = compue_nex_waypoin ( posiion, plan ); 24 wrie nexpos in nexpos_por 25 } 26 } 27 } The Navigaion componen reacs o he currenposepor and missionpor inpu pors which respecively ges he local posiion of he robo and a mission objecive (in his example, he mission is a posiion on a map). If a new mission has been given, i will call he updae plan codel o build a new plan. On he oher hand, when he localizaion of he robo has changed, i will check if he oupu waypoin has been reached and if i needs o be changed using he compue nex waypoin codel. Lasly i will oupu a waypoin by he nexpor oupu por. The second componen in he archiecure, he Guidance componen, has a user-defined saemachine (lising 2) o bring he necessary behaviour. Lising 2: Mauve model of he Guidance componen 4

5 1 fun sop_robo (): Speed 2 fun nexpoin ( currenpose : Pose, argepose : Pose, localmap : Scan ): Pose 3 fun guidance ( nexpose : Pose, currenpose : Pose ): Speed 4 5 componen Guidance { 6 pors { 7 inpu argeposepor : Pose 8 inpu localmappor : Scan 9 oupu speedpor : Speed 10 } 11 aribues { 12 speedpr : Speed 13 currenpose : Pose 14 argepose : Pose 15 localmap : Scan 16 nexpose : Pose 17 } 18 saemachine { 19 i n i i a l sae Arrived { 20 run { 21 i f ( isarrived ( currenpose, argepose )) hen { 22 speedpr = sop_robo () 23 } 24 } 25 handle { 26 wrie speedpr in speedpor 27 } 28 ransiion omoving -> Moving 29 } 30 sae Moving { 31 run { 32 i f ( argeposepor. hasnewdaa ) hen { 33 argepose = read argeposepor 34 } 35 i f ( localmappor. hasnewdaa ) hen { 36 localmap = read localmappor ; 37 nexpose = nexpoin ( currenpose, argepose, localmap ); 38 speedpr = guidance ( nexpose, currenpose ); 39 } 40 } 41 } 42 handle { 43 wrie speedpr in speedpor 44 } 45 ransiion oarrived [ isarrived ( currenpose, argepose )] -> Arrived 46 } 47 } 48 } Every sae of he sae machines have five pars: enry: his par is execued when he sae machine arrives in a new sae; run: his par is execued afer he enry par has finished is execuion; 5

6 ransiion: afer he execuion of he run par, if a ransiion is validaed, his sep will call he exi par and he nex sae enry is execued; handle: his sep will be execued afer run if no ransiion has occurred; exi: his par is execued afer a ransiion. The Guidance cusom saemachine has wo saes: he Arrived sae which is a sae when he robo is jus sopped by he sop robo codel. The iniial keyword indicaes ha when he componen will be sared for he firs ime, he sae machine will begin in his sae; he Moving sae: i will check if a new local map has arrived on he localmappor inpu por and call he nexpoin codel in order o compue a local pah avoiding poenial obsacles. I will also check if a new waypoin has been given by he Navigaion componen. In boh cases, he Guidance oupus he arge s DOF speeds o he nex componen. And he las componen of he base archiecure is he Conrol (lising 3). Like he Navigaion model i uses he defaul saemachine. Lising 3: Mauve model of he Conrol componen 1 fun TTRKconrol ( speedvecor : Speed, acuaorcommand : Acuaor ): in 2 3 componen Conrol { 4 pors { 5 inpu speedpor : Speed 6 oupu acuaorcommandpor : Acuaor 7 } 8 aribues { 9 speedvecor : Speed 10 acuaorcommand : Acuaor 11 } 12 updae { 13 i f ( speedpor. hasnewdaa ) hen { 14 speedvecor = read speedpor ; 15 TTRKconrol ( speedvecor, acuaorcommand ); 16 wrie acuaorcommand in acuaorcommandpor 17 } 18 } 19 } 6

7 This componen reacs o is speedpor inpu por o compue he orders given o he arge acuaors using he TTRKconrol funcion. This design paern has several good poins: i is made of numerous small componens ha are easy o mainain upon ime; is i generic, and can hen adap o several robo plaforms (aerial robos, ground vehicles, boas or submarines) by only adaping ypes and codels (i.e. algorihms) o he argeed plaform; each componen is mean o have a real-ime behaviour and keep a relaive reaciveness depending on heir hierarchical level. To build a coheren and robus NGC archiecure, we are proposing some complemenary bes pracices: as soon as i is possible, creae unified and normalized small srucures; use a limied number of funcions on each componen, as i improves modulariy and mainainabiliy of he archiecure; regarding execuion, creae independen hread for each componen, and use periodic aciviies insead of causal links: i provides more robusness o he archiecure as a componen can coninue o work even if anoher componen has failed; i is hen easier o include recovery or safey sraegies in he archiecure. 3.4 Examples The whole NGC archiecure has been implemened on wo arges: he firs one is a TTRK robo wih an ARM powered Gumsix Waer 1 running a real-ime Linux kernel. The second is a simulaed Pioneer-3DX on a x86 compuer running he MORSE simulaor [7]. The only hings ha changed beween he wo implemenaions were he Conrol s Codel and he adapers o and from arge-specific ypes. In boh cases, all he componens were deployed using he Orocos middleware [8] and logged by he LTTng race oolki 2. 1 hps:// 2 hps://lng.org 7

8 Deployer GPS_LEA_xT sae sae Telemeer AdaperLocalPos NewObj hokuyo_scan Pose_local Pose_local Pose_obj hokuyo_scan Pose_local Pose_obj adaperscan Navigaion generic_scan Pose_local Pose_nex Pose_ask generic_scan Pose_nex Pose_plan Pose_ask Joysick Guidance Planner OnOff SpeedSruc_ele SpeedSruc_guid Pose_plan OnOff SpeedSruc_ele SpeedSruc_guid Swich SpeedSruc_con SpeedSruc_con Conrol Acuaor Acuaor AdaperToCICAS CICAS_UGV_TC CICAS_UGV_TC cicasugv The sofware archiecure is based on he main NGC paern which was compleed by adapers o conver some of he non-generic ypes, a joysick and a swich o keep manual conrol on he sysem if desired. A planner is also plugged ono he Navigaion componen o provide poenial parallel planning wih differen algorihms (Fig. 2). Figure 2: Archiecure embedded on he TTRK and Pioneer robos 4 Real-Time analysis The previously described componen models are mean o be run on Real- Time operaing sysems, even if i will sill work fine on non Real-Time sysems. In order o ensure a good and safe behaviour of he componen-based roboic sysem, we need o validae he real-ime consrains of he embedded componens. Therefore we have defined an analysis proocol for ha purpose. 4.1 Mehodology The very firs sep of he analysis is he formal validaion of he componen models by verifying for example he non-locking aspec of he ask. Once he model has been checked, an insance of he componen can be generaed using he code generaion feaure of he Mauve framework in order o ensure he validiy of he running code. All he Codels mus be developed keeping in mind ha WCETs have o be compued. In his paper we will be using he C language in order o use ools such as Frama-C 3 and OTAWA [9] for respecively validae he properies of he algorihms and compue heir Wors-Case Execuion Time (WCET). The las sep in his procedure is o deploy he whole se of componens on he arge in order o log is execuion and compare he heoreical resuls wih he real ones. 3 hp://frama-c.com 8

9 4.2 Tracing example The LTTng racing oolchain gives us he real execuion imes of each componen. We will for example focus on he Conrol componen (Fig. 3). This plo represens he probabiliy o ge execuion imes for he Conrol componen running on he TTRK s Gumsix. I shows hree main peaks which can be se in wo groups: he firs one on he lef represens he sae when he componen does no receive any new ; i herefore has nohing new o compue and reurns rapidly; he second group is made of he middle and righ peaks on he plo and corresponds o he case when he codel is called; hese wo peaks are wo branching possibiliies wihin he codel. This kind of informaion is ineresing because i will ell us if he wors case execuion ime will be reached frequenly or no and poenially opimize pars of he componen or codels. Figure 3: Disribuion of he execuion ime of he Conrol componen The deploymen procedure is se on hree pars: he firs par is he imporaion of he componen models previously described using he impor command; 9

10 he second sep is he insaniaion of he needed componens by using he keyword insance followed by an insance name and he name of he componen. When insaniaing he componens, we also seup he connecions beween he inpu and oupu pors; he las sep conains he properies of he componens and is signalled by he deploymen command. Wihin his par we specify he codels bes and wors case execuion imes and he insaniaed componens aciviies. The componen aciviies are se using he aciviy keyword and conains he componens prioriy, is period and is deadline. An exrac of he deploymen paern is shown on he lising 4. Lising 4: Deploymen of he NGC componens in Morse 1 impor " Navigaion. xma " 2 impor " Guidance. xma " 3 impor " Conrol. xma " 4 5 // Archiecure 6 insance Navigaion : Navigaion {} 7 insance Guidance : Guidance { 8 por argeposepor Navigaion. nexpor 9 } 10 insance Conrol : Conrol { 11 por speedpor Guidance. speedpor 12 } // Deploymen 16 deploymen { 17 // Navigaion 18 Navigaion_codel = aciviy Navigaion { 20 prioriy = 7 21 period = deadline = } 24 // Guidance 25 Guidance_codel = aciviy Guidance { 27 prioriy = 4 28 period = deadline = } 31 // Conrol 32 Conrol_codel = aciviy Conrol { 34 prioriy = 2 35 period = deadline = } } The deploymen in Mauve needs imes expressed in inegers, in he above example he imes are wrien in microseconds. We have o provide he bes 10

11 and wors case execuion imes for every codel of every componen deployed. The periods and deadlines of he componens are required as well as heir prioriy: he lower he value, he higher he prioriy. We can hen simulae he deploymen in order o compue imelines of he scheduled asks (Fig. 4). On he diagram, he asks are ordered in decreasing prioriy and we can clearly see ha here is no much ime lef for he high level asks such as he Planner. In his paricular example, he planner has nohing o compue and herefore he ask se is schedulable. AdaperT ocicas Conrol Swich Guidance Joysick AdaperLocalP os Navigaion P lanner Figure 4: Task scheduled by a Rae-Monoonic algorihm 5 Conclusion In his paper, we have presened he Navigaion-Guidance-Conrol design paern. I formalizes a well known archiecure in aerial roboics o mobile robos in general. This design paern brings o ligh bes pracices for embedded sofware engineering in roboics. In he fuure work, we plan o implemen his archiecure on differen robos, no only he racked TTRK or he Pioneer-3DX bu also on an aerial robo such as a quadroor. I will allow us o check he muli-arge feaure he NGC design paern brings. Anoher work in progress is he validaion of behavioural properies such as he faul olerance when a componen or a sensor fails. 11

12 References [1] F. Kendoul, Survey of Advances in Guidance, Navigaion, and Conrol of Unmanned Roorcraf Sysems, Journal of Field Roboics, vol. 29, no. 2, [2] J.-H. Kim, S. Sukkarieh, and S. Wishar, Real-Time Navigaion, Guidance, and Conrol of a UAV Using Low-Cos Sensors, in Field and Service Roboics (FSR 2003), (Lake Yamanaka, Japan), [3] S. Lacroix, A. Malle, D. Bonnafous, G. Bauzil, S. Fleury, M. Herrb, and R. Chaila, Auonomous Rover Navigaion on Unknown Terrains, Inernaional Journal on Roboic Research, vol. 21, no , [4] C. McGann, F. Py, K. Rajan, H. Thomas, R. Henhorn, and R. McEwen, A deliberaive archiecure for AUV conrol, in Inernaional Conference on Roboics and Auomaion (ICRA 2008), (Pasadena, CA, USA), [5] D. Brugali and A. Shakhimardanov, Componen-Based Roboic Engineering (Par II), IEEE Roboics and Auomaion Magazine, vol. 17, no. 1, [6] C. Lesire, D. Doose, and H. Cassé, MAUVE: a Componen-based Modeling Framework for Real-ime Analysis of Roboic Applicaions, in Workshop on Sofware Developmen and Inegraion in Roboics (SDIR 2012), (Sain-Paul, MN, USA), [7] G. Echeverria, S. Lemaignan, A. Degrooe, S. Lacroix, M. Karg, P. Koch, C. Lesire, and S. Sinckwich, Simulaing complex roboic scenarios wih morse, in Inernaional Conference on Simulaion, Modeling, and Programming for Auonomous Robos (SIMPAR), (Tsukuba, Japan), [8] P. Soeens and H. Bruyninckx, Realime hybrid ask-based conrol for robos and machine ools, in Inernaional Conference on Roboics and Auomaion (ICRA), (Barcelona, Spain), [9] C. Rochange and P. Sainra, OTAWA: An Open Toolbox for Adapive WCET Analysis, IFIP Workshop on Sofware Technologies for Fuure Embedded and Ubiquious Sysems (SEUS), pp ,

Multiprocessor Systems-on-Chips

Multiprocessor Systems-on-Chips Par of: Muliprocessor Sysems-on-Chips Edied by: Ahmed Amine Jerraya and Wayne Wolf Morgan Kaufmann Publishers, 2005 2 Modeling Shared Resources Conex swiching implies overhead. On a processing elemen,

More information

Task is a schedulable entity, i.e., a thread

Task is a schedulable entity, i.e., a thread Real-Time Scheduling Sysem Model Task is a schedulable eniy, i.e., a hread Time consrains of periodic ask T: - s: saring poin - e: processing ime of T - d: deadline of T - p: period of T Periodic ask T

More information

Performance Center Overview. Performance Center Overview 1

Performance Center Overview. Performance Center Overview 1 Performance Cener Overview Performance Cener Overview 1 ODJFS Performance Cener ce Cener New Performance Cener Model Performance Cener Projec Meeings Performance Cener Execuive Meeings Performance Cener

More information

The Application of Multi Shifts and Break Windows in Employees Scheduling

The Application of Multi Shifts and Break Windows in Employees Scheduling The Applicaion of Muli Shifs and Brea Windows in Employees Scheduling Evy Herowai Indusrial Engineering Deparmen, Universiy of Surabaya, Indonesia Absrac. One mehod for increasing company s performance

More information

Automatic measurement and detection of GSM interferences

Automatic measurement and detection of GSM interferences Auomaic measuremen and deecion of GSM inerferences Poor speech qualiy and dropped calls in GSM neworks may be caused by inerferences as a resul of high raffic load. The radio nework analyzers from Rohde

More information

OPERATION MANUAL. Indoor unit for air to water heat pump system and options EKHBRD011ABV1 EKHBRD014ABV1 EKHBRD016ABV1

OPERATION MANUAL. Indoor unit for air to water heat pump system and options EKHBRD011ABV1 EKHBRD014ABV1 EKHBRD016ABV1 OPERAION MANUAL Indoor uni for air o waer hea pump sysem and opions EKHBRD011ABV1 EKHBRD014ABV1 EKHBRD016ABV1 EKHBRD011ABY1 EKHBRD014ABY1 EKHBRD016ABY1 EKHBRD011ACV1 EKHBRD014ACV1 EKHBRD016ACV1 EKHBRD011ACY1

More information

How To Understand The Rules Of The Game Of Chess

How To Understand The Rules Of The Game Of Chess Insiue for Sofware Technology Qualiy Assurance in Sofware Developmen Qualiässicherung in der Sofwareenwicklung A.o.Univ.-Prof. Dipl.-Ing. Dr. Bernhard Aichernig Insiue for Sofware Technology Graz Universiy

More information

Real-time Particle Filters

Real-time Particle Filters Real-ime Paricle Filers Cody Kwok Dieer Fox Marina Meilă Dep. of Compuer Science & Engineering, Dep. of Saisics Universiy of Washingon Seale, WA 9895 ckwok,fox @cs.washingon.edu, mmp@sa.washingon.edu Absrac

More information

Distributing Human Resources among Software Development Projects 1

Distributing Human Resources among Software Development Projects 1 Disribuing Human Resources among Sofware Developmen Proecs Macario Polo, María Dolores Maeos, Mario Piaini and rancisco Ruiz Summary This paper presens a mehod for esimaing he disribuion of human resources

More information

Distributed Echo Cancellation in Multimedia Conferencing System

Distributed Echo Cancellation in Multimedia Conferencing System Disribued Echo Cancellaion in Mulimedia Conferencing Sysem Balan Sinniah 1, Sureswaran Ramadass 2 1 KDU College Sdn.Bhd, A Paramoun Corporaion Company, 32, Jalan Anson, 10400 Penang, Malaysia. sbalan@kdupg.edu.my

More information

Model-Based Monitoring in Large-Scale Distributed Systems

Model-Based Monitoring in Large-Scale Distributed Systems Model-Based Monioring in Large-Scale Disribued Sysems Diploma Thesis Carsen Reimann Chemniz Universiy of Technology Faculy of Compuer Science Operaing Sysem Group Advisors: Prof. Dr. Winfried Kalfa Dr.

More information

LLC Resonant Converter Reference Design using the dspic DSC

LLC Resonant Converter Reference Design using the dspic DSC LLC Resonan Converer Reference Design using he dspic DSC 2010 Microchip Technology Incorporaed. All Righs Reserved. LLC Resonan Converer Webinar Slide 1 Hello, and welcome o his web seminar on Microchip

More information

Single-machine Scheduling with Periodic Maintenance and both Preemptive and. Non-preemptive jobs in Remanufacturing System 1

Single-machine Scheduling with Periodic Maintenance and both Preemptive and. Non-preemptive jobs in Remanufacturing System 1 Absrac number: 05-0407 Single-machine Scheduling wih Periodic Mainenance and boh Preempive and Non-preempive jobs in Remanufacuring Sysem Liu Biyu hen Weida (School of Economics and Managemen Souheas Universiy

More information

Data Migration Model and Algorithm between Heterogeneous Databases based on Web Service

Data Migration Model and Algorithm between Heterogeneous Databases based on Web Service JOURNAL OF NETWORKS, VOL. 9, NO. 11, NOVEMBER 2014 3127 Daa Migraion Model and Algorihm beween Heerogeneous Daabases based on Web Service Guowei Wang and Zongpu Jia School of Compuer Science and Technology,

More information

Chapter 1.6 Financial Management

Chapter 1.6 Financial Management Chaper 1.6 Financial Managemen Par I: Objecive ype quesions and answers 1. Simple pay back period is equal o: a) Raio of Firs cos/ne yearly savings b) Raio of Annual gross cash flow/capial cos n c) = (1

More information

Secure Election Infrastructures Based on IPv6 Clouds

Secure Election Infrastructures Based on IPv6 Clouds Secure Elecion Infrasrucures Based on IPv6 Clouds Firs IPv6-only OpenSack Cloud used o deliver producion services is de-ployed by Nephos6, Cikomm and SnT-Universiy of Luxembourg. Laif Ladid, Presiden,

More information

Morningstar Investor Return

Morningstar Investor Return Morningsar Invesor Reurn Morningsar Mehodology Paper Augus 31, 2010 2010 Morningsar, Inc. All righs reserved. The informaion in his documen is he propery of Morningsar, Inc. Reproducion or ranscripion

More information

Information Theoretic Evaluation of Change Prediction Models for Large-Scale Software

Information Theoretic Evaluation of Change Prediction Models for Large-Scale Software Informaion Theoreic Evaluaion of Change Predicion Models for Large-Scale Sofware Mina Askari School of Compuer Science Universiy of Waerloo Waerloo, Canada maskari@uwaerloo.ca Ric Hol School of Compuer

More information

A Bayesian framework with auxiliary particle filter for GMTI based ground vehicle tracking aided by domain knowledge

A Bayesian framework with auxiliary particle filter for GMTI based ground vehicle tracking aided by domain knowledge A Bayesian framework wih auxiliary paricle filer for GMTI based ground vehicle racking aided by domain knowledge Miao Yu a, Cunjia Liu a, Wen-hua Chen a and Jonahon Chambers b a Deparmen of Aeronauical

More information

PROFIT TEST MODELLING IN LIFE ASSURANCE USING SPREADSHEETS PART ONE

PROFIT TEST MODELLING IN LIFE ASSURANCE USING SPREADSHEETS PART ONE Profi Tes Modelling in Life Assurance Using Spreadshees PROFIT TEST MODELLING IN LIFE ASSURANCE USING SPREADSHEETS PART ONE Erik Alm Peer Millingon 2004 Profi Tes Modelling in Life Assurance Using Spreadshees

More information

Signal Processing and Linear Systems I

Signal Processing and Linear Systems I Sanford Universiy Summer 214-215 Signal Processing and Linear Sysems I Lecure 5: Time Domain Analysis of Coninuous Time Sysems June 3, 215 EE12A:Signal Processing and Linear Sysems I; Summer 14-15, Gibbons

More information

PolicyCore. Putting Innovation and Customer Service at the Core of Your Policy Administration and Underwriting

PolicyCore. Putting Innovation and Customer Service at the Core of Your Policy Administration and Underwriting PolicyCore Puing Innovaion and Cusomer Service a he Core of Your Policy Adminisraion and Underwriing As new echnologies emerge and cusomer expecaions escalae, P&C insurers are seeing opporuniies o grow

More information

Advanced Traffic Routing as Part of the USA Intelligent Telecommunications Network

Advanced Traffic Routing as Part of the USA Intelligent Telecommunications Network Advanced Traffic Rouing as Par of he USA Inelligen Telecommunicaions Nework Edmund P. GOULD Bell Communicaions Research 435 Souh Sree Morrisown, New Jersey 07960 The USA Telecommunicaions Nework is evolving

More information

SELF-EVALUATION FOR VIDEO TRACKING SYSTEMS

SELF-EVALUATION FOR VIDEO TRACKING SYSTEMS SELF-EVALUATION FOR VIDEO TRACKING SYSTEMS Hao Wu and Qinfen Zheng Cenre for Auomaion Research Dep. of Elecrical and Compuer Engineering Universiy of Maryland, College Park, MD-20742 {wh2003, qinfen}@cfar.umd.edu

More information

Duration and Convexity ( ) 20 = Bond B has a maturity of 5 years and also has a required rate of return of 10%. Its price is $613.

Duration and Convexity ( ) 20 = Bond B has a maturity of 5 years and also has a required rate of return of 10%. Its price is $613. Graduae School of Business Adminisraion Universiy of Virginia UVA-F-38 Duraion and Convexiy he price of a bond is a funcion of he promised paymens and he marke required rae of reurn. Since he promised

More information

Measuring macroeconomic volatility Applications to export revenue data, 1970-2005

Measuring macroeconomic volatility Applications to export revenue data, 1970-2005 FONDATION POUR LES ETUDES ET RERS LE DEVELOPPEMENT INTERNATIONAL Measuring macroeconomic volailiy Applicaions o expor revenue daa, 1970-005 by Joël Cariolle Policy brief no. 47 March 01 The FERDI is a

More information

Chapter 7. Response of First-Order RL and RC Circuits

Chapter 7. Response of First-Order RL and RC Circuits Chaper 7. esponse of Firs-Order L and C Circuis 7.1. The Naural esponse of an L Circui 7.2. The Naural esponse of an C Circui 7.3. The ep esponse of L and C Circuis 7.4. A General oluion for ep and Naural

More information

Activity-Based Scheduling of IT Changes

Activity-Based Scheduling of IT Changes Aciviy-Based Scheduling of IT Changes David Trasour, Maher Rahmoun Claudio Barolini Trused Sysems Laboraory HP Laboraories Brisol HPL-2007-03 July 3, 2007* ITIL, change managemen, scheduling Change managemen

More information

Dependent Interest and Transition Rates in Life Insurance

Dependent Interest and Transition Rates in Life Insurance Dependen Ineres and ransiion Raes in Life Insurance Krisian Buchard Universiy of Copenhagen and PFA Pension January 28, 2013 Absrac In order o find marke consisen bes esimaes of life insurance liabiliies

More information

Inductance and Transient Circuits

Inductance and Transient Circuits Chaper H Inducance and Transien Circuis Blinn College - Physics 2426 - Terry Honan As a consequence of Faraday's law a changing curren hrough one coil induces an EMF in anoher coil; his is known as muual

More information

Photo Modules for PCM Remote Control Systems

Photo Modules for PCM Remote Control Systems Phoo Modules for PCM Remoe Conrol Sysems Available ypes for differen carrier frequencies Type fo Type fo TSOP173 3 khz TSOP1733 33 khz TSOP1736 36 khz TSOP1737 36.7 khz TSOP1738 38 khz TSOP174 4 khz TSOP1756

More information

The Architecture of a Churn Prediction System Based on Stream Mining

The Architecture of a Churn Prediction System Based on Stream Mining The Archiecure of a Churn Predicion Sysem Based on Sream Mining Borja Balle a, Bernardino Casas a, Alex Caarineu a, Ricard Gavaldà a, David Manzano-Macho b a Universia Poliècnica de Caalunya - BarcelonaTech.

More information

The Roos of Lisp paul graham Draf, January 18, 2002. In 1960, John McCarhy published a remarkable paper in which he did for programming somehing like wha Euclid did for geomery. 1 He showed how, given

More information

17 Laplace transform. Solving linear ODE with piecewise continuous right hand sides

17 Laplace transform. Solving linear ODE with piecewise continuous right hand sides 7 Laplace ransform. Solving linear ODE wih piecewise coninuous righ hand sides In his lecure I will show how o apply he Laplace ransform o he ODE Ly = f wih piecewise coninuous f. Definiion. A funcion

More information

C Fast-Dealing Property Trading Game C

C Fast-Dealing Property Trading Game C AGES 8+ C Fas-Dealing Propery Trading Game C Y Collecor s Ediion Original MONOPOLY Game Rules plus Special Rules for his Ediion. CONTENTS Game board, 6 Collecible okens, 28 Tile Deed cards, 16 Wha he Deuce?

More information

1 HALF-LIFE EQUATIONS

1 HALF-LIFE EQUATIONS R.L. Hanna Page HALF-LIFE EQUATIONS The basic equaion ; he saring poin ; : wrien for ime: x / where fracion of original maerial and / number of half-lives, and / log / o calculae he age (# ears): age (half-life)

More information

ANALYZE OF A COLLISION AVOIDANCE STRATEGY FOR COOPERATIVE ROBOTS

ANALYZE OF A COLLISION AVOIDANCE STRATEGY FOR COOPERATIVE ROBOTS ANALYZE OF A COLLISION AVOIDANCE STRATEGY FOR COOPERATIVE ROBOTS ANALYZE OF A COLLISION AVOIDANCE STRATEGY FOR COOPERATIVE ROBOTS Prof. Eng. A. Frau PhD 1, Prof. Eng. M. Dambrine PhD 2, 3 1 Universiy Transilvania

More information

Random Walk in 1-D. 3 possible paths x vs n. -5 For our random walk, we assume the probabilities p,q do not depend on time (n) - stationary

Random Walk in 1-D. 3 possible paths x vs n. -5 For our random walk, we assume the probabilities p,q do not depend on time (n) - stationary Random Walk in -D Random walks appear in many cones: diffusion is a random walk process undersanding buffering, waiing imes, queuing more generally he heory of sochasic processes gambling choosing he bes

More information

Automated Allocation of ESA Ground Station Network Services

Automated Allocation of ESA Ground Station Network Services Auomaed Allocaion of ESA Ground Saion Nework Services Sylvain Damiani (), Holger Dreihahn (), Jörg Noll (), Marc Niézee (), and Gian Paolo Calzolari () () VEGA, Aerospace Division Rober Bosch Sraße 7,

More information

TEMPORAL PATTERN IDENTIFICATION OF TIME SERIES DATA USING PATTERN WAVELETS AND GENETIC ALGORITHMS

TEMPORAL PATTERN IDENTIFICATION OF TIME SERIES DATA USING PATTERN WAVELETS AND GENETIC ALGORITHMS TEMPORAL PATTERN IDENTIFICATION OF TIME SERIES DATA USING PATTERN WAVELETS AND GENETIC ALGORITHMS RICHARD J. POVINELLI AND XIN FENG Deparmen of Elecrical and Compuer Engineering Marquee Universiy, P.O.

More information

USE OF EDUCATION TECHNOLOGY IN ENGLISH CLASSES

USE OF EDUCATION TECHNOLOGY IN ENGLISH CLASSES USE OF EDUCATION TECHNOLOGY IN ENGLISH CLASSES Mehme Nuri GÖMLEKSİZ Absrac Using educaion echnology in classes helps eachers realize a beer and more effecive learning. In his sudy 150 English eachers were

More information

Q-SAC: Toward QoS Optimized Service Automatic Composition *

Q-SAC: Toward QoS Optimized Service Automatic Composition * Q-SAC: Toward QoS Opimized Service Auomaic Composiion * Hanhua Chen, Hai Jin, Xiaoming Ning, Zhipeng Lü Cluser and Grid Compuing Lab Huazhong Universiy of Science and Technology, Wuhan, 4374, China Email:

More information

Double Entry System of Accounting

Double Entry System of Accounting CHAPTER 2 Double Enry Sysem of Accouning Sysem of Accouning \ The following are he main sysem of accouning for recording he business ransacions: (a) Cash Sysem of Accouning. (b) Mercanile or Accrual Sysem

More information

INTEREST RATE FUTURES AND THEIR OPTIONS: SOME PRICING APPROACHES

INTEREST RATE FUTURES AND THEIR OPTIONS: SOME PRICING APPROACHES INTEREST RATE FUTURES AND THEIR OPTIONS: SOME PRICING APPROACHES OPENGAMMA QUANTITATIVE RESEARCH Absrac. Exchange-raded ineres rae fuures and heir opions are described. The fuure opions include hose paying

More information

Market Liquidity and the Impacts of the Computerized Trading System: Evidence from the Stock Exchange of Thailand

Market Liquidity and the Impacts of the Computerized Trading System: Evidence from the Stock Exchange of Thailand 36 Invesmen Managemen and Financial Innovaions, 4/4 Marke Liquidiy and he Impacs of he Compuerized Trading Sysem: Evidence from he Sock Exchange of Thailand Sorasar Sukcharoensin 1, Pariyada Srisopisawa,

More information

Quality Assurance in Software Development

Quality Assurance in Software Development Insiue for Sofware Technology Qualiy Assurance in Sofware Developmen Qualiässicherung in der Sofwareenwicklung A.o.Univ.-Prof. Dipl.-Ing. Dr. Bernhard Aichernig Insiu für Sofwareechnologie (IST) TU Graz

More information

Impact of scripless trading on business practices of Sub-brokers.

Impact of scripless trading on business practices of Sub-brokers. Impac of scripless rading on business pracices of Sub-brokers. For furher deails, please conac: Mr. T. Koshy Vice Presiden Naional Securiies Deposiory Ld. Tradeworld, 5 h Floor, Kamala Mills Compound,

More information

Applying Algorithm Animation Techniques for Program Tracing, Debugging, and Understanding

Applying Algorithm Animation Techniques for Program Tracing, Debugging, and Understanding Applying Algorihm Animaion Techniques for Program Tracing, Debugging, and Undersanding Sougaa Mukherjea,.John T. Sasko Graphics, Visualizaion and Usabiliy Cener, College of Compuing Georgia nsiue of Technology

More information

How To Optimize Time For A Service In 4G Nework

How To Optimize Time For A Service In 4G Nework Process Opimizaion Time for a Service in 4G Nework by SNMP Monioring and IAAS Cloud Compuing Yassine El Mahoi Laboraory of Compuer Science, Operaions Research and Applied Saisics. Téouan, Morocco Souad

More information

A Distributed Multiple-Target Identity Management Algorithm in Sensor Networks

A Distributed Multiple-Target Identity Management Algorithm in Sensor Networks A Disribued Muliple-Targe Ideniy Managemen Algorihm in Sensor Neworks Inseok Hwang, Kaushik Roy, Hamsa Balakrishnan, and Claire Tomlin Dep. of Aeronauics and Asronauics, Sanford Universiy, CA 94305 Elecrical

More information

TSG-RAN Working Group 1 (Radio Layer 1) meeting #3 Nynashamn, Sweden 22 nd 26 th March 1999

TSG-RAN Working Group 1 (Radio Layer 1) meeting #3 Nynashamn, Sweden 22 nd 26 th March 1999 TSG-RAN Working Group 1 (Radio Layer 1) meeing #3 Nynashamn, Sweden 22 nd 26 h March 1999 RAN TSGW1#3(99)196 Agenda Iem: 9.1 Source: Tile: Documen for: Moorola Macro-diversiy for he PRACH Discussion/Decision

More information

Markit Excess Return Credit Indices Guide for price based indices

Markit Excess Return Credit Indices Guide for price based indices Marki Excess Reurn Credi Indices Guide for price based indices Sepember 2011 Marki Excess Reurn Credi Indices Guide for price based indices Conens Inroducion...3 Index Calculaion Mehodology...4 Semi-annual

More information

Ecotopia: An Ecological Framework for Change Management in Distributed Systems

Ecotopia: An Ecological Framework for Change Management in Distributed Systems Ecoopia: An Ecological Framework for Change Managemen in Disribued Sysems Tudor Dumiraş 1, Daniela Roşu 2, Asi Dan 2, and Priya Narasimhan 1 1 ECE Deparmen, Carnegie Mellon Universiy, Pisburgh, PA 15213,

More information

The Transport Equation

The Transport Equation The Transpor Equaion Consider a fluid, flowing wih velociy, V, in a hin sraigh ube whose cross secion will be denoed by A. Suppose he fluid conains a conaminan whose concenraion a posiion a ime will be

More information

Combination of UWB and GPS for indoor-outdoor vehicle localization

Combination of UWB and GPS for indoor-outdoor vehicle localization ombinaion of UW and for indoor-oudoor vehicle localizaion González J., lanco J.L., Galindo., Oriz-de-Galiseo., Fernández-Madrigal J.., Moreno F.., and Marínez J.L. {jgonzalez, jlblanco,cipriano,jafma}@cima.uma.es,

More information

Mathematics in Pharmacokinetics What and Why (A second attempt to make it clearer)

Mathematics in Pharmacokinetics What and Why (A second attempt to make it clearer) Mahemaics in Pharmacokineics Wha and Why (A second aemp o make i clearer) We have used equaions for concenraion () as a funcion of ime (). We will coninue o use hese equaions since he plasma concenraions

More information

An Online Learning-based Framework for Tracking

An Online Learning-based Framework for Tracking An Online Learning-based Framework for Tracking Kamalika Chaudhuri Compuer Science and Engineering Universiy of California, San Diego La Jolla, CA 9293 Yoav Freund Compuer Science and Engineering Universiy

More information

ACTUARIAL FUNCTIONS 1_05

ACTUARIAL FUNCTIONS 1_05 ACTUARIAL FUNCTIONS _05 User Guide for MS Office 2007 or laer CONTENT Inroducion... 3 2 Insallaion procedure... 3 3 Demo Version and Acivaion... 5 4 Using formulas and synax... 7 5 Using he help... 6 Noaion...

More information

Internet Engineering. Jacek Mazurkiewicz, PhD Softcomputing. Part 1: Introduction, Elementary ANNs

Internet Engineering. Jacek Mazurkiewicz, PhD Softcomputing. Part 1: Introduction, Elementary ANNs Inerne Engineering Jacek azurkieicz, PhD Sofcompuing Par : Inroducion, Elemenary As Formal Inroducion conac hours, room o. 5 building C-3: onday: :45-5:5, Friday: 4:30-6:00, slides:.zsk.ic.pr.roc.pl Professor

More information

Stochastic Recruitment: A Limited-Feedback Control Policy for Large Ensemble Systems

Stochastic Recruitment: A Limited-Feedback Control Policy for Large Ensemble Systems Sochasic Recruimen: A Limied-Feedback Conrol Policy for Large Ensemble Sysems Lael Odhner and Harry Asada Absrac This paper is abou sochasic recruimen, a conrol archiecure for cenrally conrolling he ensemble

More information

Detection of DDoS Attack in SIP Environment with Non-parametric CUSUM Sensor

Detection of DDoS Attack in SIP Environment with Non-parametric CUSUM Sensor Deecion of DDoS Aac in SIP Environmen wih Non-parameric CUSUM Sensor Luigi Alcuri Universiy of Palermo Deparmen of Elecrical, Elecronic and Telecommunicaion Engineering luigi.alcuri@i.unipa.i Piero Cassarà

More information

Analysis of Planck and the Equilibrium ofantis in Tropical Physics

Analysis of Planck and the Equilibrium ofantis in Tropical Physics Emergence of Fokker-Planck Dynamics wihin a Closed Finie Spin Sysem H. Niemeyer(*), D. Schmidke(*), J. Gemmer(*), K. Michielsen(**), H. de Raed(**) (*)Universiy of Osnabrück, (**) Supercompuing Cener Juelich

More information

How To Predict A Person'S Behavior

How To Predict A Person'S Behavior Informaion Theoreic Approaches for Predicive Models: Resuls and Analysis Monica Dinculescu Supervised by Doina Precup Absrac Learning he inernal represenaion of parially observable environmens has proven

More information

Multi-camera scheduling for video production

Multi-camera scheduling for video production Muli-camera scheduling for video producion Fahad Daniyal and Andrea Cavallaro Queen Mary Universiy of London Mile End Road, E 4S London, Unied Kingdom Email: {fahad.daniyal, andrea.cavallaro}@eecs.qmul.ac.uk

More information

Chapter 2 Problems. 3600s = 25m / s d = s t = 25m / s 0.5s = 12.5m. Δx = x(4) x(0) =12m 0m =12m

Chapter 2 Problems. 3600s = 25m / s d = s t = 25m / s 0.5s = 12.5m. Δx = x(4) x(0) =12m 0m =12m Chaper 2 Problems 2.1 During a hard sneeze, your eyes migh shu for 0.5s. If you are driving a car a 90km/h during such a sneeze, how far does he car move during ha ime s = 90km 1000m h 1km 1h 3600s = 25m

More information

Stock Trading with Recurrent Reinforcement Learning (RRL) CS229 Application Project Gabriel Molina, SUID 5055783

Stock Trading with Recurrent Reinforcement Learning (RRL) CS229 Application Project Gabriel Molina, SUID 5055783 Sock raing wih Recurren Reinforcemen Learning (RRL) CS9 Applicaion Projec Gabriel Molina, SUID 555783 I. INRODUCION One relaively new approach o financial raing is o use machine learning algorihms o preic

More information

Motion Along a Straight Line

Motion Along a Straight Line Moion Along a Sraigh Line On Sepember 6, 993, Dave Munday, a diesel mechanic by rade, wen over he Canadian edge of Niagara Falls for he second ime, freely falling 48 m o he waer (and rocks) below. On his

More information

Stochastic Volatility Option Pricing ASAP

Stochastic Volatility Option Pricing ASAP Cambridge-Kaiserslauern, Financial Mahemaics Workshop 2009 Fraunhofer ITWM, Kaiserslauern 05.05.2009 Sochasic Volailiy Opion Pricing ASAP Dr. Ulrich Nögel, Parner u.noegel@devne.de Disincive Financial

More information

The Grantor Retained Annuity Trust (GRAT)

The Grantor Retained Annuity Trust (GRAT) WEALTH ADVISORY Esae Planning Sraegies for closely-held, family businesses The Granor Reained Annuiy Trus (GRAT) An efficien wealh ransfer sraegy, paricularly in a low ineres rae environmen Family business

More information

Situated vs. Global Aggregation Schemes for Autonomous Management Systems

Situated vs. Global Aggregation Schemes for Autonomous Management Systems 4h IFIP/IEEE Workshop on Disribued Auonomous Nework Managemen Sysems Siuaed vs. Global Aggregaion Schemes for Auonomous Managemen Sysems Rafik Makhloufi*, Guillaume Doyen*, Gregory Bonne and Dominique

More information

Nikkei Stock Average Volatility Index Real-time Version Index Guidebook

Nikkei Stock Average Volatility Index Real-time Version Index Guidebook Nikkei Sock Average Volailiy Index Real-ime Version Index Guidebook Nikkei Inc. Wih he modificaion of he mehodology of he Nikkei Sock Average Volailiy Index as Nikkei Inc. (Nikkei) sars calculaing and

More information

A Natural Feature-Based 3D Object Tracking Method for Wearable Augmented Reality

A Natural Feature-Based 3D Object Tracking Method for Wearable Augmented Reality A Naural Feaure-Based 3D Objec Tracking Mehod for Wearable Augmened Realiy Takashi Okuma Columbia Universiy / AIST Email: okuma@cs.columbia.edu Takeshi Kuraa Universiy of Washingon / AIST Email: kuraa@ieee.org

More information

Ecological Scheduling Decision Support System Based on RIA and Cloud Computing on the YaLong River Cascade Project

Ecological Scheduling Decision Support System Based on RIA and Cloud Computing on the YaLong River Cascade Project 2012 4h Inernaional Conference on Signal Processing Sysems (ICSPS 2012) IPCSIT vol. 58 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V58.31 Ecological Scheduling Decision Suppor Sysem

More information

Risk Modelling of Collateralised Lending

Risk Modelling of Collateralised Lending Risk Modelling of Collaeralised Lending Dae: 4-11-2008 Number: 8/18 Inroducion This noe explains how i is possible o handle collaeralised lending wihin Risk Conroller. The approach draws on he faciliies

More information

A Note on Using the Svensson procedure to estimate the risk free rate in corporate valuation

A Note on Using the Svensson procedure to estimate the risk free rate in corporate valuation A Noe on Using he Svensson procedure o esimae he risk free rae in corporae valuaion By Sven Arnold, Alexander Lahmann and Bernhard Schwezler Ocober 2011 1. The risk free ineres rae in corporae valuaion

More information

BD FACSuite Software Quick Reference Guide for the Experiment Workflow

BD FACSuite Software Quick Reference Guide for the Experiment Workflow BD FACSuie Sofware Quick Reference Guide for he Experimen Workflow This guide conains insrucions for using BD FACSuie sofware wih he BD FACSVerse flow cyomeer using he experimen workflow. Daa can be acquired

More information

WATER MIST FIRE PROTECTION RELIABILITY ANALYSIS

WATER MIST FIRE PROTECTION RELIABILITY ANALYSIS WATER MIST FIRE PROTECTION RELIABILITY ANALYSIS Shuzhen Xu Research Risk and Reliabiliy Area FM Global Norwood, Massachuses 262, USA David Fuller Engineering Sandards FM Global Norwood, Massachuses 262,

More information

MODEL AND ALGORITHMS FOR THE REAL TIME MANAGEMENT OF RESIDENTIAL ELECTRICITY DEMAND. A. Barbato, G. Carpentieri

MODEL AND ALGORITHMS FOR THE REAL TIME MANAGEMENT OF RESIDENTIAL ELECTRICITY DEMAND. A. Barbato, G. Carpentieri MODEL AND ALGORITHMS FOR THE REAL TIME MANAGEMENT OF RESIDENTIAL ELECTRICITY DEMAND A. Barbao, G. Carpenieri Poliecnico di Milano, Diparimeno di Eleronica e Informazione, Email: barbao@ele.polimi.i, giuseppe.carpenieri@mail.polimi.i

More information

Analysis of Pricing and Efficiency Control Strategy between Internet Retailer and Conventional Retailer

Analysis of Pricing and Efficiency Control Strategy between Internet Retailer and Conventional Retailer Recen Advances in Business Managemen and Markeing Analysis of Pricing and Efficiency Conrol Sraegy beween Inerne Reailer and Convenional Reailer HYUG RAE CHO 1, SUG MOO BAE and JOG HU PARK 3 Deparmen of

More information

t Thick,intelligent,or thin access points? t WLAN switch or no WLAN switch? t WLAN appliance with 3rd party APs?

t Thick,intelligent,or thin access points? t WLAN switch or no WLAN switch? t WLAN appliance with 3rd party APs? IRONPOINT-FES IronPoin-FES Wireless Soluion IronPoin Benefis Mos Flexible WiFi Archiecure Leading Sandards-based Securiy Enerprise-class Mobiliy Advanced AP Funcionaliy Cenralized Managemen (wired & wireless)

More information

Return Calculation of U.S. Treasury Constant Maturity Indices

Return Calculation of U.S. Treasury Constant Maturity Indices Reurn Calculaion of US Treasur Consan Mauri Indices Morningsar Mehodolog Paper Sepeber 30 008 008 Morningsar Inc All righs reserved The inforaion in his docuen is he proper of Morningsar Inc Reproducion

More information

Economics Honors Exam 2008 Solutions Question 5

Economics Honors Exam 2008 Solutions Question 5 Economics Honors Exam 2008 Soluions Quesion 5 (a) (2 poins) Oupu can be decomposed as Y = C + I + G. And we can solve for i by subsiuing in equaions given in he quesion, Y = C + I + G = c 0 + c Y D + I

More information

A Bayesian Approach for Personalized Booth Recommendation

A Bayesian Approach for Personalized Booth Recommendation 2011 Inernaional Conference on Social Science and Humaniy IPED vol. (2011) (2011) IACSI Press, Singapore A Bayesian Approach for Personalized Booh ecommendaion Ki Mok Ha 2bcreaor@khu.ac.kr Il Young Choi

More information

Technical Report. Resource Sharing Under a Server-based Semi- Partitioned Scheduling Approach. Alexandre Esper Eduardo Tovar

Technical Report. Resource Sharing Under a Server-based Semi- Partitioned Scheduling Approach. Alexandre Esper Eduardo Tovar Technical Repor Resource Sharing Under a Server-based Semi- Pariioned Scheduling Approach Alexandre Esper Eduardo Tovar CISTER-TR-4008 0-08-04 Technical Repor CISTER-TR-4008 Resource Sharing Under a Server-based

More information

System Performance Improvement By Server Virtualization

System Performance Improvement By Server Virtualization Sysem Performance Improvemen By Server Virualizaion Hioshi Ueno, Tomohide Hasegawa, and Keiichi Yoshihama Absrac Wih he advance of semiconducor echnology, microprocessors become highly inegraed and herefore

More information

Principal components of stock market dynamics. Methodology and applications in brief (to be updated ) Andrei Bouzaev, bouzaev@ya.

Principal components of stock market dynamics. Methodology and applications in brief (to be updated ) Andrei Bouzaev, bouzaev@ya. Principal componens of sock marke dynamics Mehodology and applicaions in brief o be updaed Andrei Bouzaev, bouzaev@ya.ru Why principal componens are needed Objecives undersand he evidence of more han one

More information

9. Capacitor and Resistor Circuits

9. Capacitor and Resistor Circuits ElecronicsLab9.nb 1 9. Capacior and Resisor Circuis Inroducion hus far we have consider resisors in various combinaions wih a power supply or baery which provide a consan volage source or direc curren

More information

Full-wave rectification, bulk capacitor calculations Chris Basso January 2009

Full-wave rectification, bulk capacitor calculations Chris Basso January 2009 ull-wave recificaion, bulk capacior calculaions Chris Basso January 9 This shor paper shows how o calculae he bulk capacior value based on ripple specificaions and evaluae he rms curren ha crosses i. oal

More information

Journal Of Business & Economics Research September 2005 Volume 3, Number 9

Journal Of Business & Economics Research September 2005 Volume 3, Number 9 Opion Pricing And Mone Carlo Simulaions George M. Jabbour, (Email: jabbour@gwu.edu), George Washingon Universiy Yi-Kang Liu, (yikang@gwu.edu), George Washingon Universiy ABSTRACT The advanage of Mone Carlo

More information

Chapter 2 Kinematics in One Dimension

Chapter 2 Kinematics in One Dimension Chaper Kinemaics in One Dimension Chaper DESCRIBING MOTION:KINEMATICS IN ONE DIMENSION PREVIEW Kinemaics is he sudy of how hings moe how far (disance and displacemen), how fas (speed and elociy), and how

More information

Trends in TCP/IP Retransmissions and Resets

Trends in TCP/IP Retransmissions and Resets Trends in TCP/IP Reransmissions and Reses Absrac Concordia Chen, Mrunal Mangrulkar, Naomi Ramos, and Mahaswea Sarkar {cychen, mkulkarn, msarkar,naramos}@cs.ucsd.edu As he Inerne grows larger, measuring

More information

Strategic Optimization of a Transportation Distribution Network

Strategic Optimization of a Transportation Distribution Network Sraegic Opimizaion of a Transporaion Disribuion Nework K. John Sophabmixay, Sco J. Mason, Manuel D. Rossei Deparmen of Indusrial Engineering Universiy of Arkansas 4207 Bell Engineering Cener Fayeeville,

More information

Caring for trees and your service

Caring for trees and your service Caring for rees and your service Line clearing helps preven ouages FPL is commied o delivering safe, reliable elecric service o our cusomers. Trees, especially palm rees, can inerfere wih power lines and

More information

Credit Index Options: the no-armageddon pricing measure and the role of correlation after the subprime crisis

Credit Index Options: the no-armageddon pricing measure and the role of correlation after the subprime crisis Second Conference on The Mahemaics of Credi Risk, Princeon May 23-24, 2008 Credi Index Opions: he no-armageddon pricing measure and he role of correlaion afer he subprime crisis Damiano Brigo - Join work

More information

Segment and combine approach for non-parametric time-series classification

Segment and combine approach for non-parametric time-series classification Segmen and combine approach for non-parameric ime-series classificaion Pierre Geurs and Louis Wehenkel Universiy of Liège, Deparmen of Elecrical Engineering and Compuer Science, Sar-Tilman B28, B4000 Liège,

More information

GUIDE GOVERNING SMI RISK CONTROL INDICES

GUIDE GOVERNING SMI RISK CONTROL INDICES GUIDE GOVERNING SMI RISK CONTROL IND ICES SIX Swiss Exchange Ld 04/2012 i C O N T E N T S 1. Index srucure... 1 1.1 Concep... 1 1.2 General principles... 1 1.3 Index Commission... 1 1.4 Review of index

More information

Making a Faster Cryptanalytic Time-Memory Trade-Off

Making a Faster Cryptanalytic Time-Memory Trade-Off Making a Faser Crypanalyic Time-Memory Trade-Off Philippe Oechslin Laboraoire de Securié e de Crypographie (LASEC) Ecole Polyechnique Fédérale de Lausanne Faculé I&C, 1015 Lausanne, Swizerland philippe.oechslin@epfl.ch

More information

The Journey. Roadmaps. 2 Architecture. 3 Innovation. Smart City

The Journey. Roadmaps. 2 Architecture. 3 Innovation. Smart City The Journe 1 Roadmaps 2 Archiecure 3 Innovaion Uili Mobili Living Enr Poins o a Grid Journe Sraeg COMM projec Evoluion no Revoluion IT Concerns Daa Mgm Inegraion Archiecure Analics Regulaor Analics Disribued

More information

Premium Income of Indian Life Insurance Industry

Premium Income of Indian Life Insurance Industry Premium Income of Indian Life Insurance Indusry A Toal Facor Produciviy Approach Ram Praap Sinha* Subsequen o he passage of he Insurance Regulaory and Developmen Auhoriy (IRDA) Ac, 1999, he life insurance

More information

IR Receiver Module for Light Barrier Systems

IR Receiver Module for Light Barrier Systems IR Receiver Module for Ligh Barrier Sysems MECHANICAL DATA Pinning: 1 = OUT, 2 = GND, 3 = V S 19026 APPLICATIONS Reflecive sensors for hand dryers, owel or soap dispensers, waer fauces, oile flush Vending

More information