Faster Nearest Neighbors: Voronoi Diagrams and k-d Trees

Size: px
Start display at page:

Download "Faster Nearest Neighbors: Voronoi Diagrams and k-d Trees"

Transcription

1 Jonathan Richad Shewchuk Faste Neaest Neighbos: Voonoi Diagams and k-d Tees SPEEDING UP NEAREST NEIGHBOR CLASSIFIERS Can we pepocess taining pts to obtain sublinea quey time? 2 5 dimensions: Voonoi diagams Medium dim (up to 30): k-d tees Lage dim: locality sensitive hashing [still eseachy, not widely adopted] Lagest dim: exhaustive k-nn, but can use PCA o andom pojection [o anothe dimensionality eduction method] Voonoi Diagams Let P be a point set. The Voonoi cell of w 2 P is Vo w = {p 2 Rd : pw pv 8v 2 P} [A Voonoi cell is always a convex polyhedon o polytope.] The Voonoi diagam of P is the set of P s Voonoi cells. voo.pdf, vomcdonalds.jpg, voonoigegoeichinge.jpg, saltflat-1.jpg [Voonoi diagams sometimes aise in natue (salt flats, gia e, cystallogaphy).]

2 Faste Neaest Neighbos: Voonoi Diagams and k-d Tees 155 gia e-1.jpg, peovskite.jpg, votex.pdf [Believe it o not, the fist published Voonoi diagam dates back to 1644, in the book Pincipia Philosophiae by the famous mathematician and philosophe René Descates. He claimed that the sola system consists of votices. In each egion, matte is evolving aound one of the fixed stas (votex.pdf). His physics was wong, but his idea of dividing space into polyhedal egions has suvived.] Size (e.g. # of vetices) 2 O(n dd/2e ) [This uppe bound is tight when d is a small constant. As d gows, the tightest asymptotic uppe bound is somewhat smalle than this, but the complexity still gows exponentially with d.]... but often in pactice it is O(n). [Hee I m leaving out a constant that may gow exponentially with d.] Point location: Given quey point q, find the point w 2 P fo which q 2 Vo w. 2D: O(n log n) time to compute V.d. and a tapezoidal map fo pt location O(log n) quey time [because of the tapezoidal map] [That s a petty geat unning time compaed to the linea quey time of exhaustive seach.] dd: Use binay space patition tee (BSP tee) fo pt location [Unfotunately, it s di cult to chaacteize the unning time of this stategy, although it is likely to be easonably fast in 3 5 dimensions.] 1-NN only! [A standad Voonoi diagam suppots only 1-neaest neighbo queies. If you want the k neaest neighbos, thee is something called an ode-k Voonoi diagam that has a cell fo each possible k neaest neighbos. But nobody uses those, fo two easons. Fist, the size of an ode-k Voonoi diagam is O(k 2 n) in 2D, and wose in highe dimensions. Second, thee s no softwae available to compute one.] [Thee ae also Voonoi diagams fo othe distance metics, like the L 1 and L 1 noms.] [Voonoi diagams ae good fo 1-neaest neighbo in 2 o 3 dimensions, maybe 4 o 5, but fo anything beyond that, k-d tees ae much simple and pobably faste.]

3 156 Jonathan Richad Shewchuk k-d Tees Decision tees fo NN seach. Di eences: [compaed to decision tees] Choose splitting featue w/geatest width: featue i in max i, j,k (X ji X ki ). [With neaest neighbo seach, we don t cae about the entopy. Instead, what we want is that if we daw a sphee aound the quey point, it won t intesect vey many boxes of the decision tee. So it helps if the boxes ae nealy cubical, athe than long and thin.] Cheap altenative: otate though the featues. [We split on the fist featue at depth 1, the second featue at depth 2, and so on. This builds the tee faste, by a facto of O(d).] Choose splitting value: median point fo featue i, o X ji+x ki 2. Median guaantees blog 2 nc tee depth; O(nd log n) tee-building time. [... o just O(n log n) time if you otate though the featues. By contast, splitting nea the cente does moe to impove the aspect atios of the boxes, but it could unbalance you tee. You can altenate between medians at odd depths and centes at even depths, which also guaantees an O(log n) depth.] Each intenal node stoes a sample point. [... that lies in the node s box. Usually the splitting point.] [Some k-d tee implementation have points only at the leaves, but it s usually bette to have points in intenal nodes too, so when we seach the tee, we might stop seaching ealie.] [Daw this by hand. kdteestuctue.pdf ] oot epesents R 2 ight halfplane lowe ight quate plane 11 Goal: given quey pt q, find a sample pt w such that qw apple(1 + ) qs, whee s is the closest sample pt. = 0 ) exact NN; >0 ) appoximate NN. The alg. maintains: Neaest neighbo found so fa (o k neaest). goes down # Binay heap of unexploed subtees, keyed by distance fom q. goes up " q neaest so fa [Daw this by hand. kdteequey.pdf ] [A quey in pogess.] [Each subtee epesents an axis-aligned box. The quey ties to avoid seaching most of the subtees by seaching the boxes close to q fist. We measue the distance fom q to a box and use it as a key fo the subtee in the heap. The seach stops when the distance to the kth-neaest neighbo found so fa apple the distance to the neaest unexploed box (divided by 1 + ). Fo example, in the figue above, the quey neve visits the box at fa uppe left o the box at fa lowe ight, because those boxes don t intesect the cicle.]

4 Faste Neaest Neighbos: Voonoi Diagams and k-d Tees 157 Q heap containing oot node with key zeo 1 while Q not empty and minkey(q) < 1+ B emovemin(q) w B s sample point min{, qw } [Optimization: stoe squae of instead.] B 0, B 00 child boxes of B if dist(q, B 0 ) < 1+ then inset(q, B0, dist(q, B 0 )) [The key fo B 0 is dist(q, B 0 )] if dist(q, B 00 ) < 1+ then inset(q, B00, dist(q, B 00 )) etun point that detemined Fo k-nn, eplace with a max-heap holding the k neaest neighbos [... just like in the exhaustive seach algoithm I discussed last lectue.] Woks with any L p nom fo p 2 [1, 1]. [k-d tees ae not limited to the Euclidean (L 2 ) nom.] Why -appoximate NN? q [Daw this by hand. kdteepoblem.pdf ] [A wost-case exact NN quey.] [In the wost case, we may have to visit evey node in the k-d tee to find the neaest neighbo. In that case, the k-d tee is slowe than simple exhaustive seach. This is an example whee an appoximate neaest neighbo seach can be much faste. In pactice, settling fo an appoximate neaest neighbo sometimes impoves the speed by a facto of 10 o even 100, because you don t need to look at most of the tee to do a quey. This is especially tue in high dimensions emembe that in high-dimensional space, the neaest point often isn t much close than a lot of othe points.] Softwae: ANN (David Mount & Sunil Aya, U. Mayland) FLANN (Maius Muja & David Lowe, U. Bitish Columbia) GeRaF (Geogios Samaas, U. Athens) [andom foests!]

5 158 Jonathan Richad Shewchuk Example: im2gps [I want to emphasize the fact that exhaustive neaest neighbo seach eally is one of the fist classifies you should ty in pactice, even if it seems too simple. So hee s an example of a moden eseach pape that uses 1-NN and 120-NN seach to solve a poblem.] Pape by James Hays and [ou own] Pof. Alexei Efos. [Goal: given a quey photogaph, detemine whee on the planet the photo was taken. Called geolocalization. They evaluated both 1-NN and 120-NN with a complex set of featues. What they did not do, howeve, is teat each photogaph as one long vecto. That s okay fo tiny digits, but too expensive fo millions of tavel photogaphs. Instead, they educed each photo to a small descipto made up of a vaiety of featues that extact the essence of each photo.] [Show slides (im2gps.pdf). Soy, images not included hee. [Featues, in ough ode fom most e ective to least: 1. GIST: A compact image descipto based on oiented edge detection (Gabo filtes) + histogams. 2. Textons: A histogam of textues, ceated afte assembling a dictionay of common textues. 3. A shunk image. 4. A colo histogam. 5. Anothe histogam of edges, this one based on the Canny edge detecto, invented by ou own Pof. John Canny. 6. A geometic descipto that s paticulaly good fo identifying gound, sky, and vetical lines.] [Bottom line: With 120-NN, thei most sophisticated implementation came within 64 km of the coect location about 50% of the time.] RELATED CLASSES [If you like machine leaning and you ll still be hee next yea, hee ae some couses you might want to take.] CS C281A (sping): Statistical Leaning Theoy [C281A is the most diect continuation of CS 189/289A.] EE 127 (sping), EE 227BT (fall): Numeical Optimization [a coe pat of ML] [It s had to oveemphasize the impotance of numeical optimization to machine leaning, as well as othe CS fields like gaphics, theoy, and scientific computing.] EE 126 (both): Random Pocesses [Makov chains, expectation maximization, PageRank] EE C106A/B (fall/sping): Into to Robotics [dynamics, contol, sensing] Math 110: Linea Algeba [but the eal gold is in Math 221] Math 221: Matix Computations [how to solve linea systems, compute SVDs, eigenvectos, etc.] CS (fall): Computational Photogaphy (Efos) CS (fall): Visual Object and Activity Recognition (Efos/Daell) CS (fall): Deep Reinfocement Leaning (Levine) CS (fall): Algoithmic Human-Robot Inteaction (Dagan) CS (fall): Special Topics in Deep Leaning (Song/Daell) VS 265 (?): Neual Computation CS C280 (?): Compute Vision CS C267 (?): Scientific Computing [paallelization, pactical matix algeba, some gaph patitioning]

10 Torque. Lab. What You Need To Know: Physics 211 Lab

10 Torque. Lab. What You Need To Know: Physics 211 Lab b Lab 10 Toque What You Need To Know: F (a) F F Angula Systems Evey lab up to this point has dealt with objects moving in the linea system. In othe wods, objects moving in a staight line. Now we ae going

More information

Lesson 33: Horizontal & Vertical Circular Problems

Lesson 33: Horizontal & Vertical Circular Problems Lesson 33: Hoizontal & Vetical Cicula Poblems Thee ae a wide vaiety of questions that you do if you apply you knowledge of cicula motion coectly. The tough pat is figuing out how to set them up. You need

More information

British Prime Minister Benjamin Disraeli once remarked that

British Prime Minister Benjamin Disraeli once remarked that GABREL COSTA, MCHAEL HUBER, & OHN SACCOMAN Cumulative Home Run Fequency and the Recent Home Run Explosion Bitish Pime Ministe Benjamin Disaeli once emaked that thee ae thee kinds of falsehoods: lies, damned

More information

Multi-Robot Forest Coverage

Multi-Robot Forest Coverage Multi-Robot Foest Coveage Xiaoming Zheng Sonal Jain Sven Koenig David Kempe Depatment of Compute Science Univesity of Southen Califonia Los Angeles, CA 90089-0781, USA {xiaominz, sonaljai, skoenig, dkempe}@usc.edu

More information

Depth-first search and strong connectivity in Coq

Depth-first search and strong connectivity in Coq 1 Depth-fist seach and stong connectivity in Coq Januay 9, 2015 2 The poblem Finding the stongly connected components of a diected gaph. Pedagogical value: The fist nontivial gaph algoithm. Pactical value:

More information

Fundamental Algorithms for System Modeling, Analysis, and Optimization

Fundamental Algorithms for System Modeling, Analysis, and Optimization Fundamental Algoithms fo System Modeling, Analysis, and Optimization Edwad A. Lee, Jaijeet Roychowdhuy, Sanjit A. Seshia UC Bekeley EECS 44/44 Fall With thanks to R. K. Bayton, K. Keutze, N. Shenoy, and

More information

Design Engineering Challenge: The Big Dig Contest Platter Strategies: Ball Liberation

Design Engineering Challenge: The Big Dig Contest Platter Strategies: Ball Liberation Poblem Set 4: Unifom Cicula Motion Design Engineeing Challenge: The Big Dig.007 Contest Platte Stategies: Ball Libeation Oeall Notes: You ae not equied to pefom the actual analysis in this poblem set,

More information

arxiv:cs/ v1 [cs.ds] 8 Dec 1998

arxiv:cs/ v1 [cs.ds] 8 Dec 1998 Minimum Cuts in Nea-Linea Time David R. Kage Febuay 1, 2008 axiv:cs/9812007v1 [cs.ds] 8 Dec 1998 Abstact We significantly impove known time bounds fo solving the minimum cut poblem on undiected gaphs.

More information

Torque. Physics 2. Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB

Torque. Physics 2. Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB Toque Physics Toque Toque is what causes angula acceleation (just like a foce causes linea acceleation) Toque Toque is what causes angula acceleation (just like a foce causes linea acceleation) Fo a toque

More information

ABriefIntroductiontotheBasicsof Game Theory

ABriefIntroductiontotheBasicsof Game Theory ABiefIntoductiontotheBasicsof Game Theoy Roy Smead Notheasten Univesity Septembe 18, 2013 Game theoy is a set of mathematical tools that ae used to epesent and study social inteactions. This is a vey bief

More information

Red-Black Trees Goodrich, Tamassia Red-Black Trees 1

Red-Black Trees Goodrich, Tamassia Red-Black Trees 1 Red-Black Tees 8 00 Goodich, Tamassia Red-Black Tees 1 Fom (,) to Red-Black Tees A ed-black tee is a epesentation of a (,) tee by means of a binay tee whose nodes ae coloed ed o black In compaison with

More information

Rearranging trees for robust consensus

Rearranging trees for robust consensus Poceedings of the IEEE Conf. on Decision and Contol, Olando, FL, 011 Reaanging tees fo obust consensus Geoge Foest Young, Luca Scadovi and Naomi Ehich Leonad Abstact In this pape, we use the H nom associated

More information

CS3350B Computer Architecture. Lecture 6.2: Instructional Level Parallelism: Hazards and Resolutions

CS3350B Computer Architecture. Lecture 6.2: Instructional Level Parallelism: Hazards and Resolutions CS3350B Compute Achitectue Winte 2015 Lectue 6.2: Instuctional Level Paallelism: Hazads and Resolutions Mac Moeno Maza www.csd.uwo.ca/couses/cs3350b [Adapted fom lectues on Compute Oganization and Design,

More information

Noncrossing Trees and Noncrossing Graphs

Noncrossing Trees and Noncrossing Graphs Noncossing Tees and Noncossing Gaphs William Y. C. Chen and Shey H. F. Yan Cente fo Combinatoics, LPMC, Nanai Univesity, 300071 Tianjin, P.R. China chen@nanai.edu.cn, huifangyan@eyou.com Submitted: Sep

More information

Multi-Robot Flooding Algorithm for the Exploration of Unknown Indoor Environments

Multi-Robot Flooding Algorithm for the Exploration of Unknown Indoor Environments 2010 IEEE Intenational Confeence on Robotics and Automation Anchoage Convention Distict May 3-8, 2010, Anchoage, Alaska, USA Multi-Robot Flooding Algoithm fo the Exploation of Unknown Indoo Envionments

More information

Accel. (m/s 2 ) Time (sec) Newton s 3 rd Law and Circular Motion. Group Problem 04

Accel. (m/s 2 ) Time (sec) Newton s 3 rd Law and Circular Motion. Group Problem 04 1) A 200 kg tuck acceleates eastwads on a hoizontal oad in esponse to a gadually inceasing fictional foce fom the gound. Thee is an unsecued 50 kg block sitting on the tuck bed line. Thee is fiction between

More information

Efficient Algorithms for finding a Trunk on a Tree Network and its Applications

Efficient Algorithms for finding a Trunk on a Tree Network and its Applications Efficient Algoithms fo finding a Tunk on a Tee Netwok and its Applications Yamin Li, Shietung Peng Depatment of Compute Science Hosei Uniesity Tokyo 84-8584 Japan {yamin;speng}@k.hosei.ac.jp Wanming Chu

More information

Data Sheet. Linear bearings

Data Sheet. Linear bearings Data Pack G Issued Septembe 1999 1502325042 Data Sheet Linea beaings Instument ball beaings and shafts The RS ange of instument quality ball bushing beaings ae fo 1 8in, 3 16in and 1 4in shafts. Each beaing

More information

Experiment #10 Bio-Physics Pre-lab Questions

Experiment #10 Bio-Physics Pre-lab Questions Expeient #10 Bio-Physics Pe-lab Questions ** Disclaie: This pe-lab is not to be copied, in whole o in pat, unless a pope efeence is ade as to the souce. (It is stongly ecoended that you use this docuent

More information

The Properties of. Model Rocket Body Tube Transitions

The Properties of. Model Rocket Body Tube Transitions The Popeties of Moel ocket Boy Tube Tansitions Date: Septembe 6, 000 Pepae By: J.. Bohm NA 7808 CA S680 ev: (June, 005) .0 Intouction When esigning moel ockets, esignes often choose to incopoate iffeent

More information

A tale of San Diego County s water. If you had to describe San Diego's weather, you probably would use

A tale of San Diego County s water. If you had to describe San Diego's weather, you probably would use keep San Diego beautiful Dought-toleant plants envionmentally-sensitve Bay-Delta The 1895 viewing Sweetwate Dam, Two women A tale of San Diego County s wate If you had to descibe San Diego's weathe, you

More information

Matlab Simulink Implementation of Switched Reluctance Motor with Direct Torque Control Technique

Matlab Simulink Implementation of Switched Reluctance Motor with Direct Torque Control Technique Matlab Simulink Implementation of Switched Reluctance Moto with Diect Toque Contol Technique Vikamaajan Jambulingam Electical and Electonics Engineeing, VIT Univesity, India. Abstact - The switched eluctance

More information

Cyclostrophic Balance in Surface Gravity Waves: Essay on Coriolis Effects

Cyclostrophic Balance in Surface Gravity Waves: Essay on Coriolis Effects Jounal of Oceanogaphy, Vol. 53, pp. 311 to 315. 1997 Shot Contibution Cyclostophic Balance in Suface Gavity Waves: Essay on Coiolis Effects KERN E. KENYON 4632 Noth Lane Del Ma, CA 92014-4134, U.S.A. (Received

More information

1 of 6 5/12/2015 8:02 PM

1 of 6 5/12/2015 8:02 PM 1 of 6 5/12/2015 8:02 PM TUESDAY MAY 12, 2015 10:01 PM oebea ate~12-5 Delmava Shoebids v. Augusta @ Athu W. Pedue Stadium /delmava-shoebidsv-augusta /?instance_id=994255) 11:00 pm Pub Paty Tivia @ The

More information

The Study About Stopping Distance of Vehicles

The Study About Stopping Distance of Vehicles Intenational Jounal of Infomation Engineeing and Applications 018; 1(1): 18- http://www.aascit.og/jounal/infomation The Study About Stopping Distance of Vehicles Zhao Chun-xue School of Mathematics and

More information

Cheat-Proof Playout for Centralized and Distributed Online Games

Cheat-Proof Playout for Centralized and Distributed Online Games Cheat-Poof Playout fo Centalized and Distibuted Online Games Nathaniel E. Baughman Bian Neil Levine baughman@cs.umass.edu bian@cs.umass.edu Depatment of Compute Science Univesity of Massachusetts Amhest,

More information

CORESTA RECOMMENDED METHOD N 68

CORESTA RECOMMENDED METHOD N 68 COESTA ECOMMENDED METHOD N 68 DETEMINATION OF CABON MONOXIDE IN THE MAINSTEAM SMOKE OF CIGAS BY NON-DISPESIVE INFAED ANALYSIS (Januay 2010) 1. FIELD OF APPLICATION The method is applicable to the gas phase

More information

Lecture 24. Wind Lidar (6) Direct Motion Detection Lidar

Lecture 24. Wind Lidar (6) Direct Motion Detection Lidar Lectue 24. Wind Lida (6) Diect Motion Detection Lida Diect Motion Detection Wind Lida Lida tacking of aeosol motions Lase time-of-flight velocimety Lase Dopple velocimety Compaison of wind lida techniques

More information

"A Home for Gracious Living" (real estate brochure for Batten House)

A Home for Gracious Living (real estate brochure for Batten House) Byn Maw College Scholaship, Reseach, and Ceative Wok at Byn Maw College Achitectue, Gounds, and Histoy Facilities 1959 "A Home fo Gacious Living" (eal estate bochue fo Batten House) Let us know how access

More information

Morrison Drive tel. Ottawa, ON, Canada K2H 8S fax. com

Morrison Drive tel. Ottawa, ON, Canada K2H 8S fax.   com acomaecom 302 1150 Moison Dive 613 820 8282 tel Ottawa, ON, Canada K2H 8S9 613 820 8338 fax www.aecom. com To Pat Seguin, P. Eng. Manage of Engineeing Page 1 CC Subject Valeie McGi, Ted Achuticz Pine Steet

More information

Electrical Equipment of Machine Tools

Electrical Equipment of Machine Tools Electical Equipment of achine Tools Electification in machine tools today is vey extensive because it helps to simplify thei constuction, educe thei weight, and develop automatic contol. any advanced tends

More information

An Auction Based Mechanism for On-Demand Transport Services

An Auction Based Mechanism for On-Demand Transport Services An Auction Based Mechanism fo On-Demand Tanspot Sevices Malcolm Egan, Ni Oen and Michal Jakob Abstact Recently, a new class of tanspot sevices, exemplified by Ube and Lyft has emeged. Such sevices use

More information

RAILROAD CROSSING AT TWO LANE ROADWAY

RAILROAD CROSSING AT TWO LANE ROADWAY 24" WHITE STOP LINE PEPENDICULA TO OADWAY CENTELINE AND APPOXIMATELY 15 FEET FOM NEAEST AIL MEASUED ALONG OADWAY CENTELINE O EDGE OF PAVEMENT WHICHEVE IS THE SHOTE DISTANCE AILOAD GADE COSSING DEVICE 15

More information

Design and Simulation Model for Compensated and Optimized T-junctions in Microstrip Line

Design and Simulation Model for Compensated and Optimized T-junctions in Microstrip Line Intenational Jounal of Advanced Reseach in Compute Engineeing & Technology (IJARCET) Volume 3 Issue, Decembe 4 Design and Simulation Model fo Compensated and Optimized T-junctions in Micostip Line Alok

More information

Experiment #10 Bio-Physics Pre-lab Comments, Thoughts and Suggestions

Experiment #10 Bio-Physics Pre-lab Comments, Thoughts and Suggestions Expeient #10 Bio-Physics Pe-lab Coents, Thoughts and Suggestions The pupose of this pape is to povide you with soe infoation which ay be useful fo solving the pe-lab questions and pefoing the lab. I will

More information

A CONCEPTUAL WHEELED ROBOT FOR IN-PIPE INSPECTION Ioan Doroftei, Mihaita Horodinca, Emmanuel Mignon

A CONCEPTUAL WHEELED ROBOT FOR IN-PIPE INSPECTION Ioan Doroftei, Mihaita Horodinca, Emmanuel Mignon A CONCEPTUAL WHEELED ROBOT FOR IN-PIPE INSPECTION Ioan Dooftei, Mihaita Hoodinca, Emmanuel Mignon Univesité Libe de Buxelles Active Stuctues Laboatoy 50, Av. F.D.Roosevelt, B-1050, Bussels, Belgium. Email:

More information

The Solution to the Bühlmann - Straub Model in the case of a Homogeneous Credibility Estimators

The Solution to the Bühlmann - Straub Model in the case of a Homogeneous Credibility Estimators 5 Economy Infomatics, -4/005 The Solution to the Bühlmann - Staub Model in the case of a Homogeneous Cedibility Estimatos Lect. Viginia ATANASIU Mathematics Depatment, Academy of Economic Studies Oiginal

More information

A Machine Vision based Gestural Interface for People with Upper Extremity Physical Impairments

A Machine Vision based Gestural Interface for People with Upper Extremity Physical Impairments IEEE TRANSACTIONS ON SYSTEMS, MAN, AND CYBERNETICS-PART A: SYSTEMS AND HUMANS 1 A Machine Vision based Gestual Inteface fo People with Uppe Extemity Physical Impaiments Haiong Jiang, Badley S. Duestock,

More information

A Deceleration Control Method of Automobile for Collision Avoidance based on Driver's Perceptual Risk

A Deceleration Control Method of Automobile for Collision Avoidance based on Driver's Perceptual Risk A Deceleation Contol Method of Automobile fo Collision Avoidance based on Dive's Peceptual Risk Takahio Wada, Shun ichi Doi, and Shoji Hiaoka Abstact To educe ea-end cash of automobiles, it is impotant

More information

55CM ROUND CHARCOAL KETTLE BBQ

55CM ROUND CHARCOAL KETTLE BBQ IMPORTANT - Please ead the instuctions caefully befoe assembling 55CM ROUND CHARCOAL KETTLE BBQ Assembly A Instuctions PLEASE RETAIN THE INSTRUCTIONS FOR FUTURE USE. Safety and Cae Advice the Wait fo it

More information

Tree. Tree. Siblings Grand Parent Grand Child H I J I J K. Tree Definitions

Tree. Tree. Siblings Grand Parent Grand Child H I J I J K. Tree Definitions Tee Tee Lectues : oontee Kuatachue Room no. Kitawan Siiboon Room no. Text : ata Stuctues & lgoithm nalysis in, ++, Mak llen Weiss, ddison Wesley. Tee efinitions. inay Tee Tavesals inay Seach Tee Repesentations

More information

A Force Platform Free Gait Analysis

A Force Platform Free Gait Analysis Poceedings A Foce Platfom Fee Gait Analysis Tokio Maeda 1,2, *, Tatsuo Ishizuka 3, Sakua Yamaji 4 and Yuji Ohgi 3 1 Keio Reseach Institute at SFC, 5322 Endo, Fujisawa, Kanagawa 252-0882, Japan 2 Koseki

More information

Trends in Cycling, Walking & Injury Rates in New Zealand

Trends in Cycling, Walking & Injury Rates in New Zealand Tends in Cycling, Walking & Injuy Rates in New Zealand Walking and cycling, minutes/week SUMMAR Estimates of walking and cycling fom 9 Household Tavel suveys in New Zealand, conducted etween 1989 and 2012,

More information

Interior Rule of the Quebec Open 2017

Interior Rule of the Quebec Open 2017 Inteio Rule of the Quebec Open 2017 Aticle 1. The Oganize The Oganize is the club d'échecs de Sainte-Foy which will be epesented by M Chales Tenblay, chaiman of the oganizing committee Le tounoi se déoulea

More information

THE GREAT CARDBOARD BOAT RACE INTRODUCTION, BOAT BUILDING & RULES by United Way of Elkhart County

THE GREAT CARDBOARD BOAT RACE INTRODUCTION, BOAT BUILDING & RULES by United Way of Elkhart County THE GREAT CARDBOARD BOAT RACE INTRODUCTION, BOAT BUILDING & RULES by United Way of Elkhat County WHEN: Fiday August 26 2016 WHERE: LaSalle Bistol Pond Elkhat INTRODUCTION The Geat Cadboad Boat Race is

More information

MODELLING THE INTERACTION EFFECTS OF THE HIGH-SPEED TRAIN TRACK BRIDGE SYSTEM USING ADINA

MODELLING THE INTERACTION EFFECTS OF THE HIGH-SPEED TRAIN TRACK BRIDGE SYSTEM USING ADINA MODELLING THE INTERACTION EFFECTS OF THE HIGH-SPEED TRAIN TRACK BRIDGE SYSTEM USING ADINA ABSTRACT Constança Rigueio Depatment of Civil Engineeing, Polytechnic Institute of Castelo Banco Potugal Calos

More information

Complexity of Data Tree Patterns over XML Documents

Complexity of Data Tree Patterns over XML Documents Complexity of Data Tee Pattens ove XML Documents Claie David LIAFA, Univesity Pais 7 and CNRS, Fance cdavid@liafa.jussieu.f Abstact. We conside Boolean combinations of data tee pattens as a specification

More information

Trees & Routing (1) BFS

Trees & Routing (1) BFS Tees & Routing (1) BFS Why (spanning) tees? Spanning Tee Given a gaph G=(V,E), a Spanning Tee of G is an acyclic subgaph, spanning all the nodes in V. Spanning Tee Given a gaph G=(V,E), a Spanning Tee

More information

OPTIMAL SCHEDULING MODELS FOR FERRY COMPANIES UNDER ALLIANCES

OPTIMAL SCHEDULING MODELS FOR FERRY COMPANIES UNDER ALLIANCES Jounal of Maine Science and Technology, Vol. 15, No. 1, pp. 53-66 (2007) 53 OPTIMAL SCHEDULING MODELS FOR FERRY COMPANIES UNDER ALLIANCES Shangyao Yan*, Chia-Hung Chen**, Hsin-Yen Chen*** and Tze-Chiang

More information

Carnegie Mellon University Forbes Ave., Pittsburgh, PA command as a point on the road and pans the camera in

Carnegie Mellon University Forbes Ave., Pittsburgh, PA command as a point on the road and pans the camera in Panacea: An Active Senso Contolle fo the ALVINN Autonomous Diving System Rahul Sukthanka, Dean Pomeleau and Chales Thope Robotics Institute Canegie Mellon Univesity 5 Fobes Ave., Pittsbugh, PA 15213-3891

More information

Numerical study of super-critical carbon dioxide flow in steppedstaggered

Numerical study of super-critical carbon dioxide flow in steppedstaggered The 6th Intenational Supecitical CO2 Powe Cycles Symposium Mach 27-29, 2018, Pittsbugh, Pennsylvania Numeical study of supe-citical cabon dioxide flow in steppedstaggeed labyinth seals Yuming Zhu a,b,

More information

Color Encodings: srgb and Beyond

Color Encodings: srgb and Beyond IS&T's 2002 PICS Confeence Colo Encodings: srgb and Beyond Kevin E. Spaulding Eastman Kodak Company, Rocheste, New Yok Jack Holm Hewlett-Packad Company, Palo Alto, Califonia Abstact Most digital imaging

More information

Performance Characteristics of Parabolic Trough Solar Collector System for Hot Water Generation

Performance Characteristics of Parabolic Trough Solar Collector System for Hot Water Generation Intenational Enegy Jounal: Vol. 7, No. 2, June 2006 137 Pefomance Chaacteistics of Paabolic Tough Sola Collecto System fo Hot Wate Geneation www.sed.ait.ac.th/eic A. Valan Aasu and T. Sonakuma Faculty

More information

A Collision Risk-Based Ship Domain Method Approach to Model the Virtual Force Field

A Collision Risk-Based Ship Domain Method Approach to Model the Virtual Force Field A Collision Risk-Based Ship Domain Method Appoach to Model the Vitual Foce Field Tengfei Wang a,b,c, Xinping Yan a,b *, Yang Wang a,b, and Qing Wu a,b,c a Intelligent Tanspotation System Reseach Cente,

More information

Wind and extremely long bridges a challenge for computer aided design

Wind and extremely long bridges a challenge for computer aided design Wind and extemely long bidges a challenge fo compute aided design oian JANJIC anaging iecto TV / entley Systems Gaz, Austia oian Janjic, bon 960, civil engineeing degee fom the Faculty of Civil Engineeing,

More information

Motivation. Prize-Collecting Steiner Tree Problem (PCSTP) Kosten und Profite. Das Fraktionale Prize-Collecting Steiner Tree Problem auf Baumgraphen

Motivation. Prize-Collecting Steiner Tree Problem (PCSTP) Kosten und Profite. Das Fraktionale Prize-Collecting Steiner Tree Problem auf Baumgraphen Das Faktonale Pze-Collectng Stene Tee Poblem auf Baumgaphen Motvaton Gunna W. Klau (TU Wen Ivana Ljubć (TU Wen Peta Mutzel (Un Dotmund Ulch Pfeschy (Un Gaz René Weskche (TU Wen Motvaton Modell Kosten und

More information

PREDICTION OF THIRD PARTY DAMAGE FAILURE FREQUENCY FOR PIPELINES TRANSPORTING MIXTURES OF NATURAL GAS AND HYDROGEN Zhang, L. 1, Adey, R.A.

PREDICTION OF THIRD PARTY DAMAGE FAILURE FREQUENCY FOR PIPELINES TRANSPORTING MIXTURES OF NATURAL GAS AND HYDROGEN Zhang, L. 1, Adey, R.A. PREDICTION OF THIRD PARTY DAMAGE FAILURE FREQUENCY FOR PIPELINES TRANSPORTING MIXTURES OF NATURAL GAS AND HYDROGEN Zhang, L., Adey, R.A. 2 C M BEASY Ltd, Ashust Lodge, Southampton, SO4 7AA, UK, Lzhang@beasy.com

More information

ROCK HILL AQUATICS CENTER POOL SCHEDULES

ROCK HILL AQUATICS CENTER POOL SCHEDULES ROCK HILL AQUATICS CENTER POOL SCHEDULES WARM-POOL ( 8 LANE POOL) OCTOBER 2017: CHECK LIST OF CLOSURES ON EVENT DOCUMENT Monda Tuesda Wednesda Thusda Fida Satuda Sunda 5:30 8:00 am Famil Swim 1-2, Lap

More information

Example. The information set is represented by the dashed line.

Example. The information set is represented by the dashed line. Ou ast equiibium concet The ast equiibium concet we study afte Nash eqm, Subgame Pefect Nash eqm, and Bayesian Nash eqm is Pefect Bayesian Equiibium. Pefect efes to the fact that the game wi be dynamic,

More information

Project Proposal: Characterization of Tree Crown Attributes with High Resolution Fixed-Base Aerial Photography. by Rich Grotefendt and Rob Harrison

Project Proposal: Characterization of Tree Crown Attributes with High Resolution Fixed-Base Aerial Photography. by Rich Grotefendt and Rob Harrison Poject Poposal: Chaacteization of Tee Cown Attibutes with High Resolution Fixed-Base Aeial Photogaphy by Rich Gotefendt and Rob Haison Funding Acknowledgments of Past Wok Pesented Alaska Depatment of Natual

More information

Rotor Design and Analysis of Stall-regulated Horizontal Axis Wind Turbine

Rotor Design and Analysis of Stall-regulated Horizontal Axis Wind Turbine Roto Design and Analysis of Stall-egulated Hoizontal Axis Wind Tubine Xinzi Tang Univesity of Cental Lancashie, Peston, UK XTang4@uclan.ac.uk Xiongwei Liu Univesity of Cental Lancashie, Peston, UK XLiu9@uclan.ac.uk

More information

tr0 TREES Hanan Samet

tr0 TREES Hanan Samet t0 TREES Hanan Samet ompute Science epatment and ente fo utomation Reseach and Institute fo dvanced ompute Studies Univesity of Mayland ollege Pak, Mayland 074 e-mail: hjs@umiacs.umd.edu opyight 1997 Hanan

More information

I. FORMULATION. Here, p i is the pressure in the bubble, assumed spatially uniform,

I. FORMULATION. Here, p i is the pressure in the bubble, assumed spatially uniform, The natual fequency of oscillation of gas bubbles in tubes H. N. Og uz and A. Pospeetti Depatment of Mechanical Engineeing, The Johns Hopkins Univesity, Baltimoe, Mayland 21218 Received 28 July 1997; accepted

More information

An integrated supply chain design model with random disruptions consideration

An integrated supply chain design model with random disruptions consideration Afican Jounal of Business Management Vol. 4(1), pp. 393-401, 18 Septembe, 010 Available online at http://www.academicounals.og/ajbm ISSN 1993-833 010 Academic Jounals Full Length Reseach Pape An integated

More information

Bicycle and Pedestrian Master Plan

Bicycle and Pedestrian Master Plan Falmouth, Maine Bicycle and Pedestian Maste Plan Januay, 2003 Pepaed by The Falmouth Tails Advisoy Committee Tom Williams, Chai Daeby Amble Elizabeth Ehenfeld John Locke William Lund William Robinson Robet

More information

SHRiMP: Accurate Mapping of Short Color-space Reads

SHRiMP: Accurate Mapping of Short Color-space Reads SHRiMP: Accuate Mapping of Shot Colo-space Reads Stephen M. Rumble 1,2, Phil Lacoute 3,4, Adian V. Dalca 1, Mac Fiume 1, Aend Sidow 3,4, Michael Budno 1,5 * 1 Depatment of Compute Science, Univesity of

More information

PREDICTION OF ELECTRICAL PRODUCTION FROM WIND ENERGY IN THE MOROCCAN SOUTH

PREDICTION OF ELECTRICAL PRODUCTION FROM WIND ENERGY IN THE MOROCCAN SOUTH OL., NO., FEBRUARY 7 ISSN 89-668 REDICTION OF ELECTRICAL RODUCTION FROM WIND ENERGY IN THE MOROCCAN SOUTH Elyaqouti Mustapha, Ezzaidi Asma, Bouhouch Lahoussine and Ihlal Ahmed ERTAIER, ESTA, Univesity

More information

DETC A NEW MODEL FOR WIND FARM LAYOUT OPTIMIZATION WITH LANDOWNER DECISIONS

DETC A NEW MODEL FOR WIND FARM LAYOUT OPTIMIZATION WITH LANDOWNER DECISIONS Poceedings of the ASME Intenational Design Engineeing Technical Confeences& Computes and Infomation in Engineeing Confeence IDETC/CIE August 8-3,, Washington, DC, USA DETC-4777 A NEW MODEL FOR WIND FARM

More information

PlacesForBikes City Ratings Methodology. Overall City Rating

PlacesForBikes City Ratings Methodology. Overall City Rating 1 PlacesFoBikes City Ratings Methodology Oveall City Rating The PlacesFoBikes City Rating Scoe is based on five factos: Rideship, Safety, Netwok, Acceleation, and Reach. Each facto is scoed on a one to

More information

The Dockline AUGUST Board of Directors. Greetings from the Commodore. Jim Manlick

The Dockline AUGUST Board of Directors. Greetings from the Commodore. Jim Manlick The Dockline 2018 Boad of Diectos COMMODORE - Jim Manlick jmanlick@new..com 655-1460 VICE COMMODORE - Gay Kuschel gaene@hotmail.com 619-0906 REAR COMMODORE - Jim Thompson jimtsmu@icloud.com 621-2946 FLEET

More information

the Susquehanna River. Today, PFBC protects and conserves aquatic species throughout Pennsylvania.

the Susquehanna River. Today, PFBC protects and conserves aquatic species throughout Pennsylvania. Winte 2019 Wate Flows Though Pennsylvania Wate is all aound you. It is in the gound unde you feet. It flows by you in ceeks. Wate is in the sky, inside of tees and coming out of a gaden hose. When it ains,

More information

FALL PROTECTION PROGRAM

FALL PROTECTION PROGRAM FALL PROTECTION PROGRAM 13255 South St. Ceitos, CA 90703 Telephone 562-924-3364 Fax 562-924-0521 Table of Contents Fall Potection... 3 Fall Potection Is Requied... 3 Fall Potection Types... 3 Standad Guadails,

More information

Incorporating Location, Routing and Inventory Decisions in Dual Sales Channel - A Hybrid Genetic Approach

Incorporating Location, Routing and Inventory Decisions in Dual Sales Channel - A Hybrid Genetic Approach Incopoating Location, Routing and Inventoy Decisions in Dual Sales Channel - A Hybid Genetic Appoach Chia-lin Hsieh 1, Shu-hsien Liao 2, Wei-chung Ho 2 1 Depatment of Statistics and Actuaial Science, Aletheia

More information

Experimental and Numerical Studies on Fire Whirls

Experimental and Numerical Studies on Fire Whirls Expeimental and Numeical Studies on Fie Whils K. Matsuyama, N. Ishikawa 2, S. Tanaka 2, F. Tanaka, Y. Ohmiya 2, and Y. Hayashi 3 Cente fo Fie Science and Technology, Tokyo Univesity of Science, 264, Yamasaki,

More information

Tracking of High-speed, Non-smooth and Microscale-amplitude Wave Trajectories

Tracking of High-speed, Non-smooth and Microscale-amplitude Wave Trajectories Tacking of High-spee, Non-smooth an Micoscale-amplitue Wave Tajectoies Jiaech Kongthon Depatment of Mechatonics Engineeing, Assumption Univesity, Suvanabhumi Campus, Samuthpakan, Thailan Keywos: Abstact:

More information

Bubble clustering and trapping in large vortices. Part 1: Triggered bubbly jets investigated by phase-averaging

Bubble clustering and trapping in large vortices. Part 1: Triggered bubbly jets investigated by phase-averaging Intenational Jounal of Multiphase Flow 33 (2007) 1088 1110 www.elsevie.com/locate/ijmulflow Bubble clusteing and tapping in lage votices. Pat 1: Tiggeed bubbly jets investigated by phase-aveaging Rade

More information

tr0 TREES Hanan Samet

tr0 TREES Hanan Samet t0 TRS Hanan Samet ompute Science epatment and ente fo utomation Reseach and Institute fo dvanced ompute Studies Univesity of Mayland ollege Pak, Mayland 074 e-mail: hjs@umiacs.umd.edu opyight 1997 Hanan

More information

Advanced Image Tracking Approach for Augmented Reality Applications

Advanced Image Tracking Approach for Augmented Reality Applications Advanced mage Tacking Appoach fo Augmented Realit Applications evgen M. Goovi and Dmto S. Shaapov t-jim 1 Konstitucii Sq., Khakiv 6145, Ukaine ceo@it-jim.com, shaapov@it-jim.com Abstact augmented ealit

More information

EC-FRM: An Erasure Coding Framework to Speed up Reads for Erasure Coded Cloud Storage Systems

EC-FRM: An Erasure Coding Framework to Speed up Reads for Erasure Coded Cloud Storage Systems 215 44th Intenational Confeence on Paallel Pocessing EC-FRM: An Easue Coding Famewok to Speed up Reads fo Easue Coded Cloud Stoage Systems Yingxun Fu, Jiwu Shu *, and Zhiong Shen Tsinghua National Laboatoy

More information

THE IMPACTS OF CONGESTION ON COMMERCIAL VEHICLE TOUR CHARACTERISTICS AND COSTS

THE IMPACTS OF CONGESTION ON COMMERCIAL VEHICLE TOUR CHARACTERISTICS AND COSTS Figliozzi 1 THE IMPACTS OF CONGESTION ON COMMERCIAL VEHICLE TOUR CHARACTERISTICS AND COSTS Miguel Andes Figliozzi Depatment of Civil and Envionmental Engineeing Maseeh College of Engineeing and Compute

More information

Watford Half Marathon. Watford Half Marathon. Sunday February 5th Starting at 10.30am. Enjoy Your Run!!! Notice to all Entrants.

Watford Half Marathon. Watford Half Marathon. Sunday February 5th Starting at 10.30am. Enjoy Your Run!!! Notice to all Entrants. atfod Half Maathon 2017 Sunday Febuay 5th Stating at 1030am REF No 527 HELD UNDER UKA RULES ORGANISED BY atfod Half Maathon Notice to all Entants elcome to the atfod Half Maathon, oganised by atfod Haies

More information

Pennsylvania Congestion Management System: PA 100 Corridor. June 2002

Pennsylvania Congestion Management System: PA 100 Corridor. June 2002 Pennsylvania Congestion Management System: PA 100 Coido June 2002 Pennsylvania Congestion Management System PA 100 Coido June 2002 DELAWARE VALLEY REGIONAL PLANNING COMMISSION Ceated in 1965, the Delawae

More information

EcoMobility World Festival 2013 Suwon: an analysis of changes in citizens awareness and satisfaction

EcoMobility World Festival 2013 Suwon: an analysis of changes in citizens awareness and satisfaction IOSR Jounal Engineeing (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 07, Issue 03(Mach 2017), V1 PP 40-48 www.iosjen.og EcoMobility Wold Festival 2013 Suwon: an analysis changes in citizens awaeness

More information

Lecture Topics. Overview ECE 486/586. Computer Architecture. Lecture # 9. Processor Organization. Basic Processor Hardware Pipelining

Lecture Topics. Overview ECE 486/586. Computer Architecture. Lecture # 9. Processor Organization. Basic Processor Hardware Pipelining EE 486/586 ompute chitectue Lectue # 9 asic Pocesso Hadwae Pipelining Refeence: ppendix : Section.1 Lectue Topics Sping 2015 Potland State Univesity Oveview Pocesso Oganization typical computing task consists

More information

COMPUTATIONAL INTELLIGENCE AND OPTIMIZATION METHODS APPLIED TO SAFE SHIP S CONTROL PROCESS

COMPUTATIONAL INTELLIGENCE AND OPTIMIZATION METHODS APPLIED TO SAFE SHIP S CONTROL PROCESS COMPUTATIONAL INTELLIGENCE AND OPTIMIZATION METHODS APPLIED TO SAFE SHIP S CONTROL PROCESS Józef Lisowski Gdynia Maitime Academy, Poland 81-5 Gdynia, 83 Moska St., e-mail: lis@wsm.gdynia.pl ABSTRACT The

More information

READING AREA TRANSPORTATION STUDY BICYCLE AND PEDESTRIAN TRANSPORTATION PLAN ADOPTED NOVEMBER 18, 2010

READING AREA TRANSPORTATION STUDY BICYCLE AND PEDESTRIAN TRANSPORTATION PLAN ADOPTED NOVEMBER 18, 2010 READING AREA TRANSPORTATION STUDY BICYCLE AND PEDESTRIAN TRANSPORTATION PLAN ADOPTED NOVEMBER 18, 2010 READING AREA TRANSPORTATION STUDY C/o Beks County Planning Commission 633 Cout St. FL 14 Reading,

More information

Watford Half Marathon. Watford Half Marathon. Sunday February 4th Starting at 10.30am. Enjoy Your Run!!! Notice to all Entrants.

Watford Half Marathon. Watford Half Marathon. Sunday February 4th Starting at 10.30am. Enjoy Your Run!!! Notice to all Entrants. atfod Half Maathon 2018 Sunday Febuay 4th Stating at 1030am REF No 527 HEld UNdERUka RUlEs ORGANISED BY atfod Half Maathon Notice to all Entants elcome to the atfod Half Maathon, oganised by atfod Haies

More information

High Axial Load Capacity, High speed, Long life. Spherical Roller Bearings

High Axial Load Capacity, High speed, Long life. Spherical Roller Bearings High Axial Load Capacity, High speed, Long life Spheical Rolle eaings Spheical Rolle eaings High axial esistance load pefomance Intenal specifications have been optimized to geatly impove axial esistance

More information

Target Allocation Study for Formation Ship-ToAir Missile System Based on the Missile Fire. Zone Division

Target Allocation Study for Formation Ship-ToAir Missile System Based on the Missile Fire. Zone Division Taget Aocation Study fo Fomation Ship-ToAi Missie System Based on the Missie Fie Zone Division Jihua Dou and Shouquan Dong 667#, Jiefang Road, Zhongshan Distict, Daian City, China Emai: doujihua@6com Abstact

More information

AIRPLANE PAVEMENT MARKINGS

AIRPLANE PAVEMENT MARKINGS AIPLANE PAVEMENT MAKINGS 2 LANE OADWAY TAFFIC LANE GAVEL SHOULDES 4' SHLD 10-1 2 LANE OADWAY PAVED SHOULDES DESIGNE'S NOTE: SUVEYED PAY FO AIPLANE MAKE AS 2 LINE. SUVEYED 4 LANE OADWAY (UNDIVIDED) GAVEL

More information

Asteroid body-fixed hovering using nonideal solar sails

Asteroid body-fixed hovering using nonideal solar sails Reseach in Aston. Astophys. 4 Vol. X No. XX, http://www.aa-jounal.og http://www.iop.og/jounals/aa Reseach in Astonomy and Astophysics Asteoid body-fixed hoveing using nonideal sola sails Xiang-yuan Zeng,

More information

Assessment of Direct Torque Control of a Double Feed Induction Machine

Assessment of Direct Torque Control of a Double Feed Induction Machine Aement of Diect Toque Contol of a Double Feed nduction Machine A.M. Bouhentala. 1, 2 M.S. Benbouza 1 1. Depatment of electical Engineeing Batna Univeity, Rue Med El Hadj Boukhlouf, Batna 05000, Algeia.

More information

lack of resolution Gene duplication Organismal tree:

lack of resolution Gene duplication Organismal tree: Tees what might they mean Calculating a tee is compaatively easy, figuing out what it might mean is much moe difficult. If this is the pobable oganismal tee: Why could a gene tee look like this lack of

More information

Alternate stable states in coupled fishery-aquaculture systems. Melissa Orobko

Alternate stable states in coupled fishery-aquaculture systems. Melissa Orobko Altenate stable states in coupled fishey-aquacultue systems by Melissa Oobko A thesis submitted in confomity with the equiements fo the degee of Maste of Science Depatment of Ecology & Evolutionay Biology

More information

Fault tolerant oxygen control of a diesel engine air system

Fault tolerant oxygen control of a diesel engine air system Fault toleant oxygen contol of a diesel engine ai system Raine Nitsche, Matthias Bitze, Mahmoud El Khaldi, Géad Bloch To cite this vesion: Raine Nitsche, Matthias Bitze, Mahmoud El Khaldi, Géad Bloch.

More information

Three-axis Attitude Control with Two Reaction Wheels and Magnetic Torquer Bars

Three-axis Attitude Control with Two Reaction Wheels and Magnetic Torquer Bars Thee-axis Attitude Contol with Two Reaction Wheels and Magnetic Toque Bas Byce A. Robets *, Jeffey W. Kuk, Thomas B. Ake, Tom S. Engla Johns Hopkins Univesity, Baltimoe, MD 2121, USA and Bian F. Class

More information

CARDBOARD BOAT BUILDING 101

CARDBOARD BOAT BUILDING 101 CARDBOARD BOAT BUILDING 101 by United Way of Elkhat County What floats you Cadboad boat... United Way Kick Off August 28, 2015 CONSTRUCTION RULES The ENTIRE boat must be built of cadboad, duct tape, and

More information

f i r e - p a r t s. c o m

f i r e - p a r t s. c o m A M E R I C A N F L A M E A F AF-1000 Seies Manual Gas Contol Valve APPLICATION The AF-1000 Manual Gas Contol Valve is designed fo use in gas in heath poducts, wall mount funaces, and space heating appliances.

More information

A Three-Axis Magnetic Sensor Array System for Permanent Magnet Tracking*

A Three-Axis Magnetic Sensor Array System for Permanent Magnet Tracking* 16 IEEE Intenational Confeence on Multisenso Fusion and Integation fo Intelligent Systems (MFI 16) Kongesshaus Baden-Baden, Gemany, Sep. 19-1, 16 A Thee-Axis Magnetic Senso Aay System fo Pemanent Magnet

More information

POSSIBLE AND REAL POWERFLOWS IN CONNECTED DIFFERENTIAL GEAR DRIVES WITH η 0 <i pq <1/η 0 INNER RATIO

POSSIBLE AND REAL POWERFLOWS IN CONNECTED DIFFERENTIAL GEAR DRIVES WITH η 0 <i pq <1/η 0 INNER RATIO 5th INTERNATIONAL MEETING OF TE CARPATIAN REGION SPECIALISTS IN TE FIEL OF GEARS POSSIBLE AN REAL POWERFLOWS IN CONNECTE IFFERENTIAL GEAR RIVES WIT η 0

More information