lack of resolution Gene duplication Organismal tree:

Size: px
Start display at page:

Download "lack of resolution Gene duplication Organismal tree:"

Transcription

1 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 esolution e.g., 60% bootstap suppot fo bipatition (AD)(CB) long banch attaction atifact the two longest banches join togethe e.g., 100% bootstap suppot fo bipatition (AD)(CB) What could you do to investigate if this is a possible explanation use only slow positions, use an algoithm that coects fo ASRV Gene tansfe Oganismal tee: molecula tee: speciation gene tansfe Gene Tansfe Gene duplication Oganismal tee: gene duplication molecula tee: (assuming gene loss): gene duplication seq. fom B seq. fom C seq. fom D Gene duplication and gene tansfe ae equivalent explanations. The moe elatives of C ae found that do not have the blue type of gene, the less likely is the duplication loss scenaio Ancient duplication followed by Hoizontal o lateal Gene gene loss Note that scenaio B involves many moe individual events than A 1 HGT with othologous eplacement 1 gene duplication followed by 4 independent gene loss events Function, otho- and paalogy molecula tee: gene duplication seq. fom B seq. fom C seq. fom D The pesence of the duplication is a taxonomic chaacte (shaed deived chaacte in C D). The phylogeny suggests that seq and seq have simila function, and that this function was impotant in the evolution of the clade BCD. seq in B and seq in C and D ae othologs and pobably have the same function, wheeas seq and seq in BCD pobably have diffeent function (the diffeence might be in subfunctionalization of functions that seq had in A. e.g. ogan specific expession) Phylip witten and distibuted by Joe Felsenstein and collaboatos (some of the following is copied fom the PHYLIP homepage) PHYLIP (the PHYLogeny Infeence Package) is a package of pogams fo infeing phylogenies (evolutionay tees). PHYLIP is the most widely-distibuted phylogeny package, and competes with PAUP* to be the one esponsible fo the lagest numbe of published tees. PHYLIP has been in distibution since 1980, and has ove 15,000 egisteed uses. Output is witten onto special files with names like "outfile" and "outtee". Tees witten onto "outtee" ae in the Newick fomat, an infomal standad ageed to in 1986 by authos of a numbe of majo phylogeny packages. Input is eithe povided via a file called infile o in esponse to a pompt. input and output 1

2 What s in PHYLIP Pogams in PHYLIP allow to do pasimony, distance matix, and likelihood methods, including bootstapping and consensus tees. Data types that can be handled include molecula sequences, gene fequencies, estiction sites and fagments, distance matices, and discete chaactes. Phylip woks well with potein and nucleotide sequences Many othe pogams mimic the style of PHYLIP pogams. (e.g. TREEPUZZLE, phyml, potml) Many othe packages use PHYIP pogams in thei inne wokings (e.g., PHYLO_WIN) PHYLIP uns unde all opeating systems Web intefaces ae available Pogams in PHYLIP ae Modula Fo example: SEQBOOT take one set of aligned sequences and wites out a file containing bootstap samples. PROTDIST takes a aligned sequences (one o many sets) and calculates distance matices (one o many) FITCH (o NEIGHBOR) calculate best fitting o neighbo joining tees fom one o many distance matices CONSENSE takes many tees and etuns a consensus tee. modules ae available to daw tees as well, but often people use teeview o njplot The Phylip Manual is an excellent souce of infomation. Bief one line desciptions of the pogams ae hee The easiest way to un PHYLIP pogams is via a command line menu (simila to clustalw). The pogam is invoked though clicking on an icon, o by typing the pogam name at the command line. > seqboot > potpas > fitch If thee is no file called infile the pogam esponds with: [gogaten@caot gogaten]$ seqboot seqboot: can't find input file "infile" Please ente a new file name> pogam folde menu inteface Example 1 Potpas example: seqboot, potpas, consense on infile1 NOTE the bootstap majoity consensus tee does not necessaily have the same topology as the FM tee fom the oiginal data! theshold pasimony, gap symbols - vesus outfile outtee compae to distance matix analysis example: seqboot and potpas on infile1 potpas (vesus distance/fm) Extended majoity ule consensus tee CONSENSUS TREE: the numbes on the banches indicate the numbe of times the patition of the species into the two sets which ae sepaated by that banch occued among the tees, out of tees Pochlooc Synechococ Guilladia Clostidiu Themoanae Homo sapie Oyza sati Aabidopsi Synechocys Nostoc pun Nostoc sp Tichodesm Themosyne banches ae scaled with espect to bootstap suppot values, the numbe fo the deepest banch is handeled incoectly by njplot and teeview (potpas vesus) distance/fm Tee is scaled with espect to the estimated numbe of substitutions. what might be the explanation fo the ed algae not gouping with the plants If time: demo of njplot without and with coection fo ASRV emembe: this is an unooted tee! 2

3 subtee with banch lengths without and with coection fo ASRV compae to tees with FITCH and clustalw same dataset bootstap suppot ala clustal potpas (gaps as ) Phylip, Unix and Pel Rathe than typing commands at the menu, you can wite the esponses that you would need to give via the keyboad into a file (e.g. you_input.txt) You could stat and execute the pogam potpas by typing potpas < you_input.txt you input.txt might contain the following lines: infile1.txt t 10 y in a scipt you could use the line system ( potpas < you_input.txt ); The main poblem ae the owewite commands if the oufile and outtee files ae aleady existing. You can eithe ceate these befoehand, o ease them by moving (mv) thei contents somewhee else. ceate *.phy files the easiest (pobably) is to un clustalw with the phylip option: pint "# This pogam aligns all multiple sequence files with names *.fa \n # found in its diectoy using clustalw, and saves them in phyip fomat.\n ; while(defined($file=glob("*.fa"))){ # $file=$pats[0]; system("clustalw -infile=$file.fa -align -output=phylip"); }; system ("m *.dnd"); Altenatively, you could use a web vesion of eadseq this one woked geat fo me un phylip pogams fom pel An example on how to un multiple bootstap analyses is hee, the cmd files ae hee, hee, and hee: pint "# This pogam uns seqboot, potpas and consense on all multiple \n # sequence files with names *.phy\n"; while(defined($file=glob("*.phy"))){ $file=$pats[0]; system ("cp $file.phy infile"); system ("seqboot < seqboot.cmd"); system ("mv outfile infile"); system ("potpas < potpas.cmd"); system ("m outfile"); system ("mv outtee intee"); system ("consense < consense.cmd"); system ("mv outtee $file.outtee"); system ("mv outfile $file.outfile"); # cleanup: system ("m infile"); system ("m intee"); Altenative fo enteing the commands fo the menu: system ("cp A.phy infile"); system ("echo -e 'y\n9\n' seqboot"); echo etuns the sting in, i.e., y\n9\n. The e options allows the use of \n The symbol pipes the output fom echo to seqboot phyml PHYML - A simple, fast, and accuate algoithm to estimate lage phylogenies by maximum likelihood An online inteface is hee ; thee is a command line vesion that is descibed hee (not as staight fowad as in clustalw); a phylip like inteface is automatically invoked, if you type phyml the manual is hee. The pape descibing phyml is hee, a bief inteview with the authos is hee TeePuzzle ne PUZZLE TREE-PUZZLE is a vey vesatile maximum likelihood pogam that is paticulaly useful to analyze potein sequences. The pogam was developed by Kobian Stimme and And von Hasele (then at the Univ. of Munich) and is maintained by von Hasele, Heiko A. Schmidt, and Matin Vingon (contacts see 3

4 TREE-PUZZLE allows fast and accuate estimation of ASRV (though estimating the shape paamete alpha) fo both nucleotide and amino acid sequences, It has a fast algoithm to calculate tees though quatet puzzling (calculating ml tees fo quatets of species and building the multispecies tee fom the quatets). The pogam povides confidence numbes (puzzle suppot values), which tend to be smalle than bootstap values (i.e. povide a moe consevative estimate), the pogam calculates banch lengths and likelihood fo use defined tees, which is geat if you want to compae diffeent tee topologies, o diffeent models using the maximum likelihood atio test. Banches which ae not significantly suppoted ae collapsed. TREE-PUZZLE uns on "all" platfoms TREE-PUZZLE eads PHYLIP fomat, and communicates with the use in a way simila to the PHYLIP pogams. Maximum likelihood atio test If you want to compae two models of evolution (this includes the tee) given a data set, you can utilize the so-called maximum likelihood atio test. If L 1 and L 2 ae the likelihoods of the two models, d =2(logL 1 -logl 2 ) appoximately follows a Chi squae distibution with n degees of feedom. Usually n is the diffeence in model paametes. I.e., how many paametes ae used to descibe the substitution pocess and the tee. In paticula n can be the diffeence in banches between two tees (one tee is moe esolved than the othe). In pinciple, this test can only be applied if on model is a moe efined vesion of the othe. In the paticula case, when you compae two tees, one calculated without assuming a clock, the othe assuming a clock, the degees of feedom ae the numbe of OTUs 2 (as all sequences end up in the pesent at the same level, thei banches cannot be feely chosen). To calculate the pobability you can use the CHISQUARE calculato fo windows available fom Paul Lewis. TREE-PUZZLE allows (cont) TREEPUZZLE calculates distance matices using the ml specified model. These can be used in FITCH o Neighbo. PUZZLEBOOT automates this appoach to do bootstap analyses WARNING: this is a distance matix analyses! The official scipt fo PUZZLEBOOT is hee you need to ceate a command file (puzzle.cmds), and puzzle needs to be envocable though the command puzzle. You input file needs to be the enamed outfile fom seqboot A slightly modified woking vesion of puzzleboot_mod.sh is hee, and hee is an example fo puzzle.cmds. Read the instuctions befoe you un this! Maximum likelihood mapping is an excellent way to assess the phylogenetic infomation contained in a dataset. ML mapping can be used to calculate the suppot aound one Puzzle is cool, don't leave home without Sequence alignment: CLUSTALW MUSCLE ml mapping ml mapping Removing ambiguous positions: T-COFFEE FORBACK Geneation of pseudosamples: SEQBOOT Calculating and evaluating phylogenies: PROTDIST NEIGHBOR TREE-PUZZLE FITCH PROTPARS PHYML Compaing phylogenies: CONSENSE SH-TEST in TREE-PUZZLE Compaing models: Visualizing tees: ATV, njplot, teeview Maximum Likelihood Ratio Test Fom: Olga Zhaxybayeva and J Pete Gogaten BMC Genomics 2002, 3:4 Figue 5. Likelihood-mapping analysis fo two biological data sets. (Uppe) The distibution pattens. (Lowe) The occupancies (in pecent) fo the seven aeas of attaction. (A) Cytochome-b data fom ef. 14. (B) Ribosomal DNA of majo athopod goups (15). Some possible pathways fom sequence to tee, model and suppot values. Fom: Kobinian Stimme and Andt von Haesele Poc. Natl. Acad. Sci. USA Vol. 94, pp , June 1997 ml mapping can asses the topology suounding an individual banch : E.g.: If we want to know if Giadia lamblia foms the deepest banch within the known eukayotes, we can use ML mapping to addess this poblem. To apply ml mapping we choose the "highe" eukayotes as cluste a, anothe deep banching eukayote (the one that competes against Giadia) as cluste b, Giadia as cluste c, and the outgoup as cluste d. Fo an example output see this sample ml-map. An analysis of the cabamoyl phosphate synthetase domains with espect to the oot of the tee of life is hee. ml mapping can asses the not necessaily teelike histoies of genome Application of ML mapping to compaative Genome analyses see hee fo a compaison of diffeent pobability measues. Fig. 3: outline of appoach Fig. 4: Example and compaison of diffeent measues see hee fo an appoach that solves the poblem of poo taxon sampling that is usually consideed inheent with quatet analyses. Fig. 2: The pinciple of analyzing extended datasets to obtain embedded quatets Example next slides: Cluste a: 14 sequences outgoup (pokayotes) Cluste b: 20 sequences othe Eukayotes Cluste c: 1 sequences Plasmodium Cluste d: 1 sequences Giadia (a,b)-(c,d) /\ / 1 \ / 3 : 2 \ / : \ / \ (a,d)-(b,c) (a,c)-(b,d) Numbe of quatets in egion 1: 68 (= 24.3%) Numbe of quatets in egion 2: 21 (= 7.5%) Numbe of quatets in egion 3: 191 (= 68.2%) Occupancies of the seven aeas 1, 2, 3, 4, 5, 6, 7: (a,b)-(c,d) /\ / 1 \ / /\ \ / 6 4 \ / / 7 \ \ / \ / 3 : 5 : 2 \ / \ (a,d)-(b,c) (a,c)-(b,d) Numbe of quatets in egion 1: 53 (= 18.9%) Numbe of quatets in egion 2: 15 (= 5.4%) Numbe of quatets in egion 3: 173 (= 61.8%) Numbe of quatets in egion 4: 3 (= 1.1%) Numbe of quatets in egion 5: 0 (= 0.0%) Numbe of quatets in egion 6: 26 (= 9.3%) Numbe of quatets in egion 7: 10 (= 3.6%) 4

5 TREE-PUZZLE PROBLEMS/DRAWBACKS The moe species you add the lowe the suppot fo individual banches. While this is tue fo all algoithms, in TREE-PUZZLE this can lead to completely unesolved tees with only a few handful of sequences. Tees calculated via quatet puzzling ae usually not completely esolved, and they do not coespond to the ML-tee: The detemined multi-species tee is not the tee with the highest likelihood, athe it is the tee whose topology is suppoted though ml-quatets, and the lengths of the esolved banches is detemined though maximum likelihood. puzzle example The best tee might not be the tue tee. When can one conclude that a tee is a significantly wose explanation fo the data compaed to the best tee Estimate the pobability that a dataset might have esulted fom a given tee. Example: Kia s kangaoo data Usetees - SH test - go though outfile (PARS, PROTPARS and DNAPARS pefom a simila test when confonted with multiple usetees) Zhaxybayeva and Gogaten, BMC Genomics : 37 COMPARISON OF DIFFERENT SUPPORT MEASURES A: mapping of posteio pobabilities accoding to Stimme and von Haesele B: mapping of bootstap suppot values C: mapping of bootstap suppot values fom extended datasets ml-mapping vesus Moe gene families goup species accoding to envionment than accoding to 16SRNA phylogeny bootstap values fom extended datasets Bayes Theoem Likelihood descibes how well the model pedicts the data P(data model, I) P(model data, I) = P(model, I) P(data,I) Elliot Sobe s Gemlins Obsevation: Loud noise in the attic Hypothesis: gemlins in the attic playing bowling Posteio Pobability Pio Pobability Nomalizing constant Likelihood = P(noise gemlins in the attic) In contast, a themophilic achaeon has moe genes gouping with the themophilic bacteia Reveend Thomas Bayes ( ) epesents the degee to which we believe a given model accuately descibes the situation given the available data and all of ou pio infomation I descibes the degee to which we believe the model accuately descibes eality based on all of ou pio infomation. P(gemlins in the attic noise) Altenative Appoaches to Estimate Posteio Pobabilities Bayesian Posteio Pobability Mapping with MBayes (Huelsenbeck and Ronquist, 2001) Poblem: Stimme s fomula L i p i = L 1 +L 2 +L 3 only consides 3 tees (those that maximize the likelihood fo the thee topologies) Illustation of a biased andom walk Solution: Exploation of the tee space by sampling tees using a biased andom walk (Implemented in MBayes pogam) Tees with highe likelihoods will be sampled moe often p i N i N total,whee Ni - numbe of sampled tees of topology i, i=1,2,3 N total total numbe of sampled tees (has to be lage) Figue geneated using MCRobot pogam (Paul Lewis, 2001) 5

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

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

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

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

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

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

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

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

Faster Nearest Neighbors: Voronoi Diagrams and k-d Trees

Faster Nearest Neighbors: Voronoi Diagrams and k-d Trees 154 25 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

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

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 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

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

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

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

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

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

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

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

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

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

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

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

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

THE performance disparity between processor speed and the

THE performance disparity between processor speed and the This aticle has been accepted fo publication in a futue issue of this jounal, but has not been fully edited. Content may change pio to final publication., VOL. X, NO. X, MONTH X Matix Stipe Cache-Based

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

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

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

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

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

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

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

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

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

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

Multiple Vehicle Driving Control for Traffic Flow Efficiency

Multiple Vehicle Driving Control for Traffic Flow Efficiency Multiple Vehicle Diving Contol fo Taffic Flow Efficiency Seong-Woo Kim, Gi-Poong Gwon, Seung-Tak Choi, Seung-am Kang, Myoung-Ok Shin, In-Sub oo, Eun-Dong Lee, and Seung-Woo Seo Abstact The dynamics of

More information

Phase Behavior Introduction to Phase Behavior F.E. Londono M.S. Thesis (2001)

Phase Behavior Introduction to Phase Behavior F.E. Londono M.S. Thesis (2001) Natual Gas Engineeing Phase Behavio Intoduction to Phase Behavio F.E. Londono M.S. hesis (001).. Blasingame, exas &M U. Depatment of Petoleum Engineeing exas &M Univesity College Station, X 77843-3116

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

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

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

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

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

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

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

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

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

STUDY OF IRREGULAR WAVE-CURRENT-MUD INTERACTION

STUDY OF IRREGULAR WAVE-CURRENT-MUD INTERACTION STUDY OF IRREGULAR WAVE-CURRENT-MUD INTERACTION Mohsen Soltanpou, Fazin Samsami, Tomoya Shibayama 3 and Sho Yamao The dissipation of egula and iegula waves on a muddy bed with the existence of following

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

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

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

Range Extension Control System for Electric Vehicles Based on Front and Rear Driving Force Distribution Considering Load Transfer

Range Extension Control System for Electric Vehicles Based on Front and Rear Driving Force Distribution Considering Load Transfer Range Extension Contol System fo Electic Vehicles Based on and Diving Foce Distibution Consideing Load Tansfe Sho Egami and Hioshi Fujimoto The Univesity of Tokyo 5--5, Kashiwanoha, Kashiwa, Chiba, 227-856

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

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

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

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

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

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

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

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

MODEL 1000S DIGITAL TANK GAUGE

MODEL 1000S DIGITAL TANK GAUGE MODEL 1000S DIGITAL TANK GAUGE Installation Guide and Manual REVISION 5.0.0 2016 Resouce Poduction Co. Inc. 700 South Tucke Avenue Famington, NM 87401 1.800.382.1482 www.advancedtelemetics.net Advanced

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

0ur Ref:CL/Mech/ Cal /BID-01(11-12) Date: 29 July 2011

0ur Ref:CL/Mech/ Cal /BID-01(11-12) Date: 29 July 2011 0u Ref:CL/Mech/ Cal /BID-01(11-12) Date: 29 July 2011 SUBJECT: PROCUREMENT OF CALIBRATION SERVICES FOR THE EQUIPMENTS IN Cental Laboatoy (Mechanical) Dea Sis, Technical & Commecial s ae invited fo the

More information

DECO THEORY - BUBBLE MODELS

DECO THEORY - BUBBLE MODELS DECO THEORY - BUBBLE MODELS This page descibes pinciples and theoies about bubble geneation and bubble gowth in the scuba dives body and about the effect of bubble fomation on decompession and decompession

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

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 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

Use of the swim bladder and lateral line in near-field sound source localization by fish

Use of the swim bladder and lateral line in near-field sound source localization by fish 2014. Published by The Company of Biologists Ltd (2014) 217, 2078-2088 doi:10.1242/jeb.093831 RESEARCH ARTICLE Use of the swim bladde and lateal line in nea-field sound souce localization by fish Allison

More information

VIBRATION INDUCED DROPLET GENERATION FROM A LIQUID LAYER FOR EVAPORATIVE COOLING IN A HEAT TRANSFER CELL. A Thesis Presented to The Academic Faculty

VIBRATION INDUCED DROPLET GENERATION FROM A LIQUID LAYER FOR EVAPORATIVE COOLING IN A HEAT TRANSFER CELL. A Thesis Presented to The Academic Faculty VIBRATION INDUCED DROPLET GENERATION FROM A LIQUID LAYER FOR EVAPORATIVE COOLING IN A HEAT TRANSFER CELL A Thesis Pesented to The Academic Faculty By Fank Pytle III. In Patial Fulfillment Of the Requiements

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

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

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

UNIVERSITÀ DEGLI STUDI DI PADOVA. Dipartimento di Scienze Economiche Marco Fanno

UNIVERSITÀ DEGLI STUDI DI PADOVA. Dipartimento di Scienze Economiche Marco Fanno UNIVERSITÀ DEGLI STUDI DI PADOVA Dipatimento di Scienze Economiche Maco Fanno DUAL LICENSING IN OPEN SOURCE SOFTWARE MARKETS STEFANO COMINO Univesity of Udine FABIO M. MANENTI Univesity of Padova Januay

More information

Operating Instructions Compressors

Operating Instructions Compressors MAXIMATOR HIGH PRESSURE TECHNOLOGY HYDRAULICS PNEUMATICS TESTING EQUIPMENT Opeating Instuctions Compessos issue 08.2007 MAXIMATOR GmbH Walkeniede Staße 15 D-37449 Zoge Gemany Telefon 0 55 86 / 803-0 Telefax

More information

Cavitation Bubble Dynamics in Non-Newtonian Fluids

Cavitation Bubble Dynamics in Non-Newtonian Fluids Cavitation Bubble Dynamics in Non-Newtonian Fluids Emil-Alexandu Bujan Depatment of Hydaulics, Univesity Politehnica Buchaest, 060042 Buchaest, omania Cavitation phenomena play impotant oles in many aeas

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

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

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

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

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

Follow this and additional works at:

Follow this and additional works at: Lehigh Univesity Lehigh Peseve Fitz Laboatoy Repots Civil and Envionmental Engineeing 1987 Weigh-in-motion and esponse study of fou insevice bidges, U.S. Depatment of Tanspotation, Fedeal Highway Administation

More information

Prestack signal enhancement by non-hyperbolic MultiFocusing

Prestack signal enhancement by non-hyperbolic MultiFocusing Petack ignal enhancement by non-hypebolic MultiFocuing Evgeny Landa*, OPEA, Pau, Fance evgeny.landa@univ-pau.f, Alex Bekovitch, Geomage, Modi in, Iael alex@geomage.com and Kotya Deev, Geomage, Modi in,

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

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

DYNAMICS OF WATER WAVES OVER FRINGING CORAL REEFS

DYNAMICS OF WATER WAVES OVER FRINGING CORAL REEFS DYNAMICS OF WATER WAVES OVER FRINGING CORAL REEFS DYNAMICS OF WATER WAVES OVER FRINGING CORAL REEFS YAO YU 1 YAO YU SCHOOL OF CIVIL AND ENVIRONMENTAL ENGINEERING 1 Dynamics of Wate Waves ove Finging Coal

More information

ANALYSIS AND TESTING OF AN INTEGRATED REFRIGERATION AND STORAGE SYSTEM FOR LIQUID HYDROGEN ZERO BOIL-OFF, LIQUEFACTION, AND DENSIFICATION

ANALYSIS AND TESTING OF AN INTEGRATED REFRIGERATION AND STORAGE SYSTEM FOR LIQUID HYDROGEN ZERO BOIL-OFF, LIQUEFACTION, AND DENSIFICATION ANALYSIS AND TESTING OF AN INTEGRATED REFRIGERATION AND STORAGE SYSTEM FOR LIQUID HYDROGEN ZERO BOIL-OFF, LIQUEFACTION, AND DENSIFICATION By WILLIAM USILTON NOTARDONATO A DISSERTATION PRESENTED TO THE

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

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

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

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

Deception in Honeynets: A Game-Theoretic Analysis

Deception in Honeynets: A Game-Theoretic Analysis Poceedings of te 7 IEEE Woksop on Infomation Assuance United States Militay Academy, West Point, NY, - June 7 Deception in Honeynets: A Game-Teoetic Analysis Nandan Gag and Daniel Gosu Abstact Recently,

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

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

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

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

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

Session 6. Global Imbalances. Growth. Macroeconomics in the Global Economy. Saving and Investment: The World Economy

Session 6. Global Imbalances. Growth. Macroeconomics in the Global Economy. Saving and Investment: The World Economy Session 6. Global Imbalances. Gowth. v, and the Real Inteest Rate v Global Imbalances v Gowth v Intoduction to exchange ates and : The Wold Economy The eal inteest ate is the pice that equilibates saving

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

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

A Method of Hand Contour Tracking based on GVF, Corner and Optical flow Ke Du1, a, Ying Shi1,b, Jie Chen2,c, MingJun Sun1, Jie Chen1, ShuHai Quan1

A Method of Hand Contour Tracking based on GVF, Corner and Optical flow Ke Du1, a, Ying Shi1,b, Jie Chen2,c, MingJun Sun1, Jie Chen1, ShuHai Quan1 2nd Intenational Confeence on Machiney, Mateials Engineeing, Chemical Engineeing and Biotechnology (MMECEB 2015) A Method of Hand Contou Tacking based on GVF, Cone and Optical flow Ke Du1, a, Ying Shi1,b,

More information

Theoretical and Experimental Study of Gas Bubbles Behavior

Theoretical and Experimental Study of Gas Bubbles Behavior Theoetical and Expeimental Study of Gas Bubbles Behavio Lucian Mândea, Gabiela Opina, aeș-andei Chihaia, Lucia-Andeea El-Leathey, and adu Miea Abstact The pape pesents theoetical consideations on gas bubbles

More information