CAM Final Report John Scheele Advisor: Paul Ohmann I. Introduction

Size: px
Start display at page:

Download "CAM Final Report John Scheele Advisor: Paul Ohmann I. Introduction"

Transcription

1 CAM Final Report John Scheele Advisor: Paul Ohmann I. Introduction Herds are a classic complex system found in nature. From interactions amongst individual animals, group behavior emerges. Historically the interactions of predator and prey have been modeled using systems of differential equations. Recently though it has become possible to model the behavior of individual animals. In doing so, it is possible to find the optimal movement model for a herd of animal that will increase its survivability. In nature many animals herd together to increase their protection, which is encapsulated in the Selfish Herd theory (Hamilton 1971). Previous papers have looked at how the application of random motion (noise) to a movement model helps herd survivability against a predator (Ose and Ohmann 2017) and optimizes a herd s ability to forage (Kay 2018). Our current project is meant to combine these separate ideas into the same system and evaluate which movement rules best optimize herd survivability as they traverse a barrier full of predators. It is hoped that in doing so the results will shed light on how foraging herds interact with predators. II. Overview In Nick Ose and Paul Ohmanns paper The selfish herd: Noise effects in Local Crowded Horizon and Voronoi Models, they examined how noise effects the survivability of a herd. They used two different tests based on ideas from Hamilton and from Vine to evaluate the effect of noise on a herd s survivability. Hamilton connected predation risk with the area around an animal that is exclusively closest to it, or Domain of Danger (DOD) (Hamilton 1971). While Vine pointed out the need to consider predators from outside of the herd (Vine 1971). To find the DOD for each animal in the herd, Ose and Ohmann used Voronoi tessellations. A Voronoi tessellation is comprised of individual voronoi cells, which encapsulate the area around an animal that is exclusively closest to it.

2 (Figure -1: A Voronoi tessellation for 20 animals. The area inside of the borders for each blue dot is the animals DOD.) To find the change in DOD for each animal in Ose and Ohmann, they calculated the area of the Voronoi cells at the beginning and end of a simulation. The percent change in the Voronoi area for the herd was used to evaluate how effective a movement rule was. Ose and Ohmanns paper examined how different movement rules, with and without noise, effected the DOD and predation risk of herd members. For modeling herd behavior, two movement models, the Local Crowded Horizon (LCH), and Voronoi (V) movement models were evaluated. These two models have differing approaches to modeling the motions of animals in a herd. The LCH model is a weighted distance function that creates a movement vector for a herd member based on a weighted distance to every other animal in the herd. The LCH model comes from observations of fiddler crabs (Viscido et al, 2002).

3 (Figure 2: A diagram illustrating the weighted vectors to other herd members and the combined movement vector for the LCH rule) For a herd member following the LCH movement model a weighted distance vector is created using the equation f(x) = 1 1+kx where x is the distance from the ith animal to its neighbor for each animal. This process is done for each animal in the herd so that for n animals there are n 1 movement vectors. These vectors are combined to make the movement vector for each animal. Rather than look at every other herd members position, as in the LCH model, the V model focuses only on the animals voronoi neighbors. A herd members voronoi neighbors are the herd members that are in adjacent Voronoi cells to the animal. The voronoi tessellations used are the same as those used to calculate a herd memebrs DOD. An example tessellation can be seen below.

4 (Figure 3: An example of the voronoi movement rule. The red area is the current animal and the animals in green are its voronoi neighbors.) In their paper, Ose and Ohmann (2017) evaluated the LCH and V movement models effectiveness w/ w/out noise using two tests, Domain of Danger (DOD) and Mixed Herd. In DOD tests, they looked at how the DOD of one hundred animals improved for both movement rule with and without noise. These simulations highlighted the importance of noise in promoting a cohesive herd and minimizing the herds overall DOD. For Mixed Herd simulations, two herds were spawned which would follow separate movement rules, while still interacting between them. They moved following their respective movement rules for a set amount of time steps before a predator was spawned outside of the herd. This predator than moved towards the nearest herd member until it caught it. In mixed herd runs, the movement rule with the most deaths was considered the less successful of the two. In both simulations, Ose and Ohmann (2017) found that noise improved the herd s survivability for both movement rules. In the recent paper A Matlab user-interface tool for modeling herds by Scheele, Ohmann and Green (2018), this idea is taken a step further by building a User Interface (UI) that

5 facilitates the running of different simulations with ease. This UI allows a person to set up a simulation without having to change the underlying code, and simultaneously makes it easier to collect and interpret data. (Figure 4: User Interface from Scheele et al using the UI makes it possible to run the code and collect data much more efficiently then without.) The other addition to Ose and Ohmann that comes from the UI is the ability to vary the noise weight for different simulations. This allows the evaluation of how much noise is needed to optimize the movement rules. Kay and Ohmann (2018) looks at how herds move and forage with three influences acting on each individual: Voronoi neighbors, a destination and random motion. From their simulations they found that a noise weight greater than the other influences optimized a herd s movement speed and ability to forage while traveling towards a destination. III. Methods To build upon the previous work we will continue to use MATLAB to code our herding models for complex simulations. We are using MATLAB because the previous work on herd behavior is coded in MATLAB and because of our familiarity with the coding language. MATLAB also has built in functions for calculating and plotting voronoi tessellations that can be used instead of coding them from scratch. We are also using MATLAB to process and save data

6 from the runs with built in functions when possible and by coding our own analysis code when nessacery. In order to facilitate multiple simulations without changing the underlying code we will also be rebuilding the old UI for Scheele et al for use with new code. We are also perusing journals online to find new ideas and/or examples of the system we want to model. This allows us to tie in our research with existing observations and ideas on animal behaviors. In doing so we can test our models on the computer versus events that actually happen in the wild. IV. Current Work For our research project, we started by using the EJP code as a starting point and incorporated Kay and Ohmann s usage of a destination for the herd. This destination is the foraging zone for an animal herd that they will try to reach by crossing a barrier full of predators. (Figure 5: Plot of a herd crossing a barrier that contains one predator while there is food on the other side.) By having, the herd spawn on one side of a barrier and travel across it to eat from these food sources using different strategies; we will try to find which strategies optimize a herd s ability to cross a barrier with predator to reach food sources on the other side.

7 We began with an overhaul of the UI from Scheele et al to incorporate new features for modeling more herd behaviors. These new features allows us to control settings for the predator, herd, foraging and barrier crossing strategies. By running simulations, using various settings it is then possible for us to look at which strategies are effective in promoting herd survivability. We also changed the UI from two to three columns to have room for all of the new controls that are needed. (Figure 6: Revised UI with controls for each aspect of the simulation. The revised UI still allows us to view data as it is collected from the simulations. ) Along with updating the UI, we had to change the underlying code to allow new runs to be carried out. This meant that everything needed for our new herd model has to have a corresponding function in the code; other functions previously used also had to be modified or removed. The major changes in new the code from the one in Scheele et al is that mixed herd testing is no longer supported. This allows us to focus on the optimal strategy for a single herd s survivability. For the new simulations, we added a food budget for each herd member. This food budget is used in combination with a foraging threshold to determine when a herd member will switch from herding to foraging behavior. Every time step the animals food budget will decrease based on what it did, moving costs an animal more food than if it stood still, and if a herd

8 member runs out of food it will die. We use this decreasing food budget only as a way to get the animals to begin crossing the barrier to eat food and replenish their reserves. As the food budget decreases, an animal is more inclined to travel to a food source than to herd. A scattered food spawn is used to spread the specified amount of food chosen in the UI around the foraging zone for an animal to eat. Each food source is worth 10% of an animal s food budget. When a food source is eaten, a new food source s then randomly spawned so that there is always the same amount of food in the foraging zone. While there are herd members in the barrier, each predator will move towards the nearest animal to it inside the barrier. During their time inside the barrier, there are different strategies that a herd member can follow to improve its survivability. Each of these different strategies are controlled in the UI and change which components of the movement vector a herd will follow inside the barrier between the span and the food. It is also possible for the herd member to move directly across the barrier ignoring any other movement vector. V. Results Currently, we have coded most of the simulation tools we need to examine which of the various strategies for herds crossing a barrier are optimal. The UI and code are currently able to carry out a simulation that has a herd cross the central barrier to get food with different settings. However, there are a few things left to do before we can begin collecting data with the UI. There are still a few simulation tools that need to be added to the code and UI. We still have to fine tune the simulation and set up test parameters for the runs that reflect a general situation. Even though the UI is incomplete, we are still able to use it to get a better feel for the research problem as a whole. By doing simulations with the current features we can see if there are any patterns or flaws in the strategies used by the herd. This allows us to better focus our literature search to find information necessary realistically model natural systems. In doing so we are able to see how our model can be improved or simplified to better match the real world. VI. Future Ideas While we have a good start on the research task, there is still a large amount of work to be done on the research project before we can begin collecting data to search for optimal

9 movement strategies. The current simulation types need to be expanded in order to reflect different foraging strategies. For example, we may incorporate a food density based foraging method where a herd member will travel to the nearest patch of food above a set density. We are also looking how to run simulations where the predator, prey and food are all present in the same region. Instead of looking for optimal barrier, crossing strategies we would be looking for which movement strategies optimized the survival of the herd. This will be accomplished by one of two methods: having a single spawn region that they all spawn in or by allowing predators to spawn in the foraging and prey starting zones. Even though the predators spawn locations is changed, we will not change its movement or eating functionality so that we can continue to focus on optimal herd strategies. VII. Bibliography Hamilton, W. D. (1971).Geometry for the selfish herd. J. Theor. Biol. 31, John Scheele et al 2018 Eur. J. Phys. N.J. Ose and P.R. Ohmann (2017), Journal of Theoretical Biology 424, T.M. Kay, P.R. Ohmann, Effects of random motion in traveling and grazing herds, Journal of Theoretical Biology (2018) Vine, I. (1971). Risk of Visual Detection and Pursuit by a Predator and the Selective Advantage of Flocking Behavior. J. Theor. Biol. 30, Viscido, S. V., Miller, M. & Wethey, D. S. (2002). The Dilemma of the Selfish Herd: The Search for a Realistic Movement Rule. J. Theor. Biol. 217,

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher Mini-project 3 Tennis ball launcher Mini-Project 3 requires you to use MATLAB to model the trajectory of a tennis ball being shot from a tennis ball launcher to a player. The tennis ball trajectory model

More information

PHYS Tutorial 7: Random Walks & Monte Carlo Integration

PHYS Tutorial 7: Random Walks & Monte Carlo Integration PHYS 410 - Tutorial 7: Random Walks & Monte Carlo Integration The goal of this tutorial is to model a random walk in two dimensions and observe a phase transition as parameters are varied. Additionally,

More information

Energy capture performance

Energy capture performance Energy capture performance Cost of energy is a critical factor to the success of marine renewables, in order for marine renewables to compete with other forms of renewable and fossil-fuelled power generation.

More information

Predator-Prey Interactions: Bean Simulation. Materials

Predator-Prey Interactions: Bean Simulation. Materials Predator-Prey Interactions: Bean Simulation Introduction Interactions between predators and their prey are important in 1) determining the populations of both predators and prey, and 2) determining and

More information

Lab: Predator-Prey Simulation

Lab: Predator-Prey Simulation Lab: Predator-Prey Simulation A Simulation of Jackrabbit and Mountain Lion Interactions Name Biology Pd Background: During the 1920s, as the story goes, the people of the northern Arizona and southern

More information

Lab 4: Root Locus Based Control Design

Lab 4: Root Locus Based Control Design Lab 4: Root Locus Based Control Design References: Franklin, Powell and Emami-Naeini. Feedback Control of Dynamic Systems, 3 rd ed. Addison-Wesley, Massachusetts: 1994. Ogata, Katsuhiko. Modern Control

More information

Modeling Population Decline

Modeling Population Decline Modeling Population Decline Objectives: Students will be able to: Develop, use, and refine models to illustrate how anthropogenic changes in the environment (e.g., habitat destruction, pollution, introduction

More information

Courses of Instruction: Controlling and Monitoring of Pipelines

Courses of Instruction: Controlling and Monitoring of Pipelines Courses of Instruction: Controlling and Monitoring of Pipelines Date December 2010 Dr. Peter Eschenbacher Partner Angergraben 4 85250 Altomünster Germany Tel. +49-(0)8254 / 99 69 57 Fax +49-(0)8254 / 99

More information

A Hare-Lynx Simulation Model

A Hare-Lynx Simulation Model 1 A Hare- Simulation Model What happens to the numbers of hares and lynx when the core of the system is like this? Hares O Balance? S H_Births Hares H_Fertility Area KillsPerHead Fertility Births Figure

More information

In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007.

In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007. Acknowledgement In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007. There are many others without whom I could not have completed

More information

Five Great Activities Using Spinners. 1. In the circle, which cell will you most likely spin the most times? Try it.

Five Great Activities Using Spinners. 1. In the circle, which cell will you most likely spin the most times? Try it. Five Great Activities Using Spinners 1. In the circle, which cell will you most likely spin the most times? Try it. 1 2 3 4 2. Marcy plays on her school basketball team. During a recent game, she was fouled

More information

Deer Population Student Guide

Deer Population Student Guide Deer Population Student Guide In many places, deer have become nuisance animals because they are so numerous. In some areas, a hunting season has been introduced or lengthened to reduce the number of deer.

More information

Proceedings of Meetings on Acoustics

Proceedings of Meetings on Acoustics Proceedings of Meetings on Acoustics Volume 9, 2010 http://acousticalsociety.org/ 159th Meeting Acoustical Society of America/NOISE-CON 2010 Baltimore, Maryland 19-23 April 2010 Session 1pBB: Biomedical

More information

CHECKS AND BALANCES. OVERVIEW Students become managers of a herd of animals in a paper-pencil, discussionbased

CHECKS AND BALANCES. OVERVIEW Students become managers of a herd of animals in a paper-pencil, discussionbased CHECKS AND BALANCES 5 OVERVIEW Students become managers of a herd of animals in a paper-pencil, discussionbased activity. BACKGROUND White Tailed Deer White-tailed deer have always been a part of the forest

More information

Queue analysis for the toll station of the Öresund fixed link. Pontus Matstoms *

Queue analysis for the toll station of the Öresund fixed link. Pontus Matstoms * Queue analysis for the toll station of the Öresund fixed link Pontus Matstoms * Abstract A new simulation model for queue and capacity analysis of a toll station is presented. The model and its software

More information

Exploration of design solutions for the enhancement of crowd safety

Exploration of design solutions for the enhancement of crowd safety Australasian Transport Research Forum 2011 Proceedings 28-30 September 2011, Adelaide, Australia Publication website: http://www.patrec.org/atrf.aspx Exploration of design solutions for the enhancement

More information

Traffic circles. February 9, 2009

Traffic circles. February 9, 2009 Traffic circles February 9, 2009 Abstract The use of a traffic circle is a relatively common means of controlling traffic in an intersection. Smaller Traffic circles can be especially effective in routing

More information

CS 4649/7649 Robot Intelligence: Planning

CS 4649/7649 Robot Intelligence: Planning CS 4649/7649 Robot Intelligence: Planning Differential Kinematics, Probabilistic Roadmaps Sungmoon Joo School of Interactive Computing College of Computing Georgia Institute of Technology S. Joo (sungmoon.joo@cc.gatech.edu)

More information

A Game Theoretic Study of Attack and Defense in Cyber-Physical Systems

A Game Theoretic Study of Attack and Defense in Cyber-Physical Systems The First International Workshop on Cyber-Physical Networking Systems A Game Theoretic Study of Attack and Defense in Cyber-Physical Systems ChrisY.T.Ma Advanced Digital Sciences Center Illinois at Singapore

More information

UNIVERSITY OF WATERLOO

UNIVERSITY OF WATERLOO UNIVERSITY OF WATERLOO Department of Chemical Engineering ChE 524 Process Control Laboratory Instruction Manual January, 2001 Revised: May, 2009 1 Experiment # 2 - Double Pipe Heat Exchanger Experimental

More information

LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS

LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS Date: Name: LABORATORY EXERCISE 1 CONTROL VALVE CHARACTERISTICS OBJECTIVE: To demonstrate the relation between valve stem position and the fluid flow through a control valve, for both linear and equal

More information

Background Summary Kaibab Plateau: Source: Kormondy, E. J. (1996). Concepts of Ecology. Englewood Cliffs, NJ: Prentice-Hall. p.96.

Background Summary Kaibab Plateau: Source: Kormondy, E. J. (1996). Concepts of Ecology. Englewood Cliffs, NJ: Prentice-Hall. p.96. Assignment #1: Policy Analysis for the Kaibab Plateau Background Summary Kaibab Plateau: Source: Kormondy, E. J. (1996). Concepts of Ecology. Englewood Cliffs, NJ: Prentice-Hall. p.96. Prior to 1907, the

More information

Black Sea Bass Encounter

Black Sea Bass Encounter Black Sea Bass Encounter Below is an adaptation of the Shark Encounter (Lawrence Hall of Science: MARE 2002) lesson plan to be about Black Sea Bass and to incorporate information learned from Dr. Jensen

More information

Evaluating the Influence of R3 Treatments on Fishing License Sales in Pennsylvania

Evaluating the Influence of R3 Treatments on Fishing License Sales in Pennsylvania Evaluating the Influence of R3 Treatments on Fishing License Sales in Pennsylvania Prepared for the: Pennsylvania Fish and Boat Commission Produced by: PO Box 6435 Fernandina Beach, FL 32035 Tel (904)

More information

Oh Deer! Objectives. Background. Method. Materials

Oh Deer! Objectives. Background. Method. Materials Oh Deer! Objectives Students will (1) identify and describe food, water, and shelter as three essential components of habitat; (2) describe factors that influence carrying capacity; (3) define limiting

More information

Epidemics and zombies

Epidemics and zombies Epidemics and zombies (Sethna, "Entropy, Order Parameters, and Complexity", ex. 6.21) 2018, James Sethna, all rights reserved. This exercise is based on Alemi and Bierbaum's class project, published in

More information

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Jehyun Cho a, Ghang Lee a, Jongsung Won a and Eunseo Ryu a a Dept. of Architectural Engineering, University of Yonsei,

More information

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski MEETPLANNER DESIGN DOCUMENT IDENTIFICATION Project Name: MeetPlanner Project Manager: Peter Grabowski OVERVIEW Swim coaches are often faced with a dilemma while planning swim meets. On the one hand, they

More information

International Journal of Technical Research and Applications e-issn: , Volume 4, Issue 3 (May-June, 2016), PP.

International Journal of Technical Research and Applications e-issn: ,  Volume 4, Issue 3 (May-June, 2016), PP. DESIGN AND ANALYSIS OF FEED CHECK VALVE AS CONTROL VALVE USING CFD SOFTWARE R.Nikhil M.Tech Student Industrial & Production Engineering National Institute of Engineering Mysuru, Karnataka, India -570008

More information

2012 Diamond Complex Assessment BLM administered: Battle Mountain, Ely, Elko districts

2012 Diamond Complex Assessment BLM administered: Battle Mountain, Ely, Elko districts 2012 Diamond Complex Assessment BLM administered: Battle Mountain, Ely, Elko districts wild horse removal scheduled January 2013 Horse Canyon, Diamond HMA July 2012 Preliminary Report (Final Version) of

More information

Huntsman Polyurethanes smart simulation software. Process optimization by simulation

Huntsman Polyurethanes smart simulation software. Process optimization by simulation Huntsman Polyurethanes smart simulation software Process optimization by simulation Understanding material behavior is fundamental to the design of new products. For non-linear materials such as molding

More information

Designing a Traffic Circle By David Bosworth For MATH 714

Designing a Traffic Circle By David Bosworth For MATH 714 Designing a Traffic Circle By David Bosworth For MATH 714 Abstract We all have had the experience of sitting in a traffic jam, or we ve seen cars bunched up on a road for some no apparent reason. The use

More information

CS 351 Design of Large Programs Zombie House

CS 351 Design of Large Programs Zombie House CS 351 Design of Large Programs Zombie House Instructor: Joel Castellanos e-mail: joel@unm.edu Web: http://cs.unm.edu/~joel/ Office: Electrical and Computer Engineering building (ECE). Room 233 2/23/2017

More information

Anthropogenic Noise and the Marine Environment

Anthropogenic Noise and the Marine Environment Anthropogenic Noise and the Marine Environment R. Hillson and H.-J. Shyu Information Technology Division Introduction: The impact of anthropogenic noise on the marine environment is a subject of increasing

More information

New Mexico Supercomputing Challenge

New Mexico Supercomputing Challenge Oryx Populations at White Sands Missile Range New Mexico Supercomputing Challenge Final Report April 2, 2008 Team 68 Melrose High School Team Members: Kyle Jacobs Richard Rush Randall Rush Teachers: Alan

More information

Lesson 20: Estimating a Population Proportion

Lesson 20: Estimating a Population Proportion Student Outcome Students use data from a random sample to estimate a population proportion. Lesson tes In this lesson, students continue to work with random samples and the distribution of the sample proportions.

More information

Evolution by Natural Selection 1

Evolution by Natural Selection 1 Evolution by Natural Selection 1 I. Mice Living in a Desert 1. What is happening in these figures? Describe how the population of mice is different in figure 3 compared to figure 1. Explain what happened

More information

intended velocity ( u k arm movements

intended velocity ( u k arm movements Fig. A Complete Brain-Machine Interface B Human Subjects Closed-Loop Simulator ensemble action potentials (n k ) ensemble action potentials (n k ) primary motor cortex simulated primary motor cortex neuroprosthetic

More information

Roundabout Design 101: Roundabout Capacity Issues

Roundabout Design 101: Roundabout Capacity Issues Design 101: Capacity Issues Part 2 March 7, 2012 Presentation Outline Part 2 Geometry and Capacity Choosing a Capacity Analysis Method Modeling differences Capacity Delay Limitations Variation / Uncertainty

More information

DIGITAL SOLUTIONS TRAINING CATALOGUE. QRA and CFD simulation. Phast, Safeti and KFX SAFER, SMARTER, GREENER

DIGITAL SOLUTIONS TRAINING CATALOGUE. QRA and CFD simulation. Phast, Safeti and KFX SAFER, SMARTER, GREENER DIGITAL SOLUTIONS TRAINING CATALOGUE QRA and CFD simulation Phast, Safeti and KFX SAFER, SMARTER, GREENER 02 PHAST, SAFETI AND KFX Training catalogue Global training Our increased focus on global training,

More information

EEB 122b PRACTICE SECOND MIDTERM

EEB 122b PRACTICE SECOND MIDTERM EEB 122b PRACTICE SECOND MIDTERM Page 1 1. You are interested in conducting an experiment with two competing species of plants. Below are the zero-growth isoclines for the two species. C D a) Draw the

More information

Motion Control of a Bipedal Walking Robot

Motion Control of a Bipedal Walking Robot Motion Control of a Bipedal Walking Robot Lai Wei Ying, Tang Howe Hing, Mohamed bin Hussein Faculty of Mechanical Engineering Universiti Teknologi Malaysia, 81310 UTM Skudai, Johor, Malaysia. Wylai2@live.my

More information

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research 1 Ranger Walking Initiation Stephanie Schneider sns74@cornell.edu 5/15/2012 Final Report for Cornell Ranger Research Abstract I joined the Biorobotics Lab this semester to gain experience with an application

More information

Workshop on Predation Thomas Herbert, Ph.D. (revised by Dana Krempels in 2013)

Workshop on Predation Thomas Herbert, Ph.D. (revised by Dana Krempels in 2013) Workshop on Predation Thomas Herbert, Ph.D. (revised by Dana Krempels in 2013) Pre-Workshop Preparation: Read Chapter 53, pages 1159-1171 of Biology by Campbell. Also, read the articles at http://www.bio.miami.edu/dana/dox/lynx_hare.html.

More information

Online Companion to Using Simulation to Help Manage the Pace of Play in Golf

Online Companion to Using Simulation to Help Manage the Pace of Play in Golf Online Companion to Using Simulation to Help Manage the Pace of Play in Golf MoonSoo Choi Industrial Engineering and Operations Research, Columbia University, New York, NY, USA {moonsoo.choi@columbia.edu}

More information

Jeffrey M. Ver Steeg Colorado Parks and Wildlife. December 14, 2016

Jeffrey M. Ver Steeg Colorado Parks and Wildlife. December 14, 2016 Jeffrey M. Ver Steeg Colorado Parks and Wildlife December 14, 2016 If the proposals make sense, seem worth the financial investment and have the potential to inform future wildlife management If the two

More information

An Application of Signal Detection Theory for Understanding Driver Behavior at Highway-Rail Grade Crossings

An Application of Signal Detection Theory for Understanding Driver Behavior at Highway-Rail Grade Crossings An Application of Signal Detection Theory for Understanding Driver Behavior at Highway-Rail Grade Crossings Michelle Yeh and Jordan Multer United States Department of Transportation Volpe National Transportation

More information

EE 364B: Wind Farm Layout Optimization via Sequential Convex Programming

EE 364B: Wind Farm Layout Optimization via Sequential Convex Programming EE 364B: Wind Farm Layout Optimization via Sequential Convex Programming Jinkyoo Park 1 Introduction In a wind farm, the wakes formed by upstream wind turbines decrease the power outputs of downstream

More information

Computer Integrated Manufacturing (PLTW) TEKS/LINKS Student Objectives One Credit

Computer Integrated Manufacturing (PLTW) TEKS/LINKS Student Objectives One Credit Computer Integrated Manufacturing (PLTW) TEKS/LINKS Student Objectives One Credit Suggested Time Ranges First Six Weeks History of Manufacturing PFD 1.1(A) The student will describe why and how manufacturing

More information

Agenda. 2 sessions 13:30-15:00 Game Analysis. 15:00-15:30 Ask A Head Referee

Agenda. 2 sessions 13:30-15:00 Game Analysis. 15:00-15:30 Ask A Head Referee FIRST Game Analysis Agenda 2 sessions 13:30-15:00 Game Analysis 15:00-15:30 Ask A Head Referee Who are we? Anne Shade 22nd year in FIRST Former FIRST Chesapeake Regional Director Former 2377 General Manager

More information

A STUDY OF SIMULATION MODEL FOR PEDESTRIAN MOVEMENT WITH EVACUATION AND QUEUING

A STUDY OF SIMULATION MODEL FOR PEDESTRIAN MOVEMENT WITH EVACUATION AND QUEUING A STUDY OF SIMULATION MODEL FOR PEDESTRIAN MOVEMENT WITH EVACUATION AND QUEUING Shigeyuki Okazaki a and Satoshi Matsushita a a Department of Architecture and Civil Engineering, Faculty of Engineering,

More information

ZIN Technologies PHi Engineering Support. PHi-RPT CFD Analysis of Large Bubble Mixing. June 26, 2006

ZIN Technologies PHi Engineering Support. PHi-RPT CFD Analysis of Large Bubble Mixing. June 26, 2006 ZIN Technologies PHi Engineering Support PHi-RPT-0002 CFD Analysis of Large Bubble Mixing Proprietary ZIN Technologies, Inc. For nearly five decades, ZIN Technologies has provided integrated products and

More information

by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada

by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada Manual for FISH 4.0 by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada Brief Introduction FISH 4.0 is a microworld exercise designed by University of Victoria professor

More information

Toothpick Birds. Modeling Predator Behavior in an Outdoor Lab

Toothpick Birds. Modeling Predator Behavior in an Outdoor Lab Modeling Predator Behavior in an Outdoor Lab PURPOSE In this activity you will observe how protective coloration helps some animals to survive in nature. You will model predatory behavior by feeding on

More information

Pedestrian Dynamics: Models of Pedestrian Behaviour

Pedestrian Dynamics: Models of Pedestrian Behaviour Pedestrian Dynamics: Models of Pedestrian Behaviour John Ward 19 th January 2006 Contents Macro-scale sketch plan model Micro-scale agent based model for pedestrian movement Development of JPed Results

More information

BOSTON REGION METROPOLITAN PLANNING ORGANIZATION

BOSTON REGION METROPOLITAN PLANNING ORGANIZATION PLANNING ORGANIZATIO BOSTON REGION MPO NMETROPOLITAN BOSTON REGION METROPOLITAN PLANNING ORGANIZATION Stephanie Pollack, MassDOT Secretary and CEO and MPO Chair Karl H. Quackenbush, Executive Director,

More information

Computer Simulation Helps Improve Vertical Column Induced Gas Flotation (IGF) System

Computer Simulation Helps Improve Vertical Column Induced Gas Flotation (IGF) System JOURNAL ARTICLES BY FLUENT SOFTWARE USERS JA187 Computer Simulation Helps Improve Vertical Column Induced Gas Flotation (IGF) System Computer simulation has helped NATCO engineers make dramatic improvements

More information

Three New Methods to Find Initial Basic Feasible. Solution of Transportation Problems

Three New Methods to Find Initial Basic Feasible. Solution of Transportation Problems Applied Mathematical Sciences, Vol. 11, 2017, no. 37, 1803-1814 HIKARI Ltd, www.m-hikari.com https://doi.org/10.12988/ams.2017.75178 Three New Methods to Find Initial Basic Feasible Solution of Transportation

More information

Spatial sorting and collective motion in mixed shoals of fish

Spatial sorting and collective motion in mixed shoals of fish IT15074 Examensarbete 15 hp October 2015 Spatial sorting and collective motion in mixed shoals of fish Markus Eriksson Institutionen för informationsteknologi Department of Information Technology Abstract

More information

Lab # 03: Visualization of Shock Waves by using Schlieren Technique

Lab # 03: Visualization of Shock Waves by using Schlieren Technique AerE545 Lab # 03: Visualization of Shock Waves by using Schlieren Technique Objectives: 1. To get hands-on experiences about Schlieren technique for flow visualization. 2. To learn how to do the optics

More information

knn & Naïve Bayes Hongning Wang

knn & Naïve Bayes Hongning Wang knn & Naïve Bayes Hongning Wang CS@UVa Today s lecture Instance-based classifiers k nearest neighbors Non-parametric learning algorithm Model-based classifiers Naïve Bayes classifier A generative model

More information

Modeling Planned and Unplanned Store Stops for the Scenario Based Simulation of Pedestrian Activity in City Centers

Modeling Planned and Unplanned Store Stops for the Scenario Based Simulation of Pedestrian Activity in City Centers Modeling Planned and Unplanned Store Stops for the Scenario Based Simulation of Pedestrian Activity in City Centers Jan Dijkstra and Joran Jessurun Department of the Built Environment Eindhoven University

More information

A STUDY OF THE LOSSES AND INTERACTIONS BETWEEN ONE OR MORE BOW THRUSTERS AND A CATAMARAN HULL

A STUDY OF THE LOSSES AND INTERACTIONS BETWEEN ONE OR MORE BOW THRUSTERS AND A CATAMARAN HULL A STUDY OF THE LOSSES AND INTERACTIONS BETWEEN ONE OR MORE BOW THRUSTERS AND A CATAMARAN HULL L Boddy and T Clarke, Austal Ships, Australia SUMMARY CFD analysis has been conducted on a 100m catamaran hull

More information

Determining Occurrence in FMEA Using Hazard Function

Determining Occurrence in FMEA Using Hazard Function Determining Occurrence in FMEA Using Hazard Function Hazem J. Smadi Abstract FMEA has been used for several years and proved its efficiency for system s risk analysis due to failures. Risk priority number

More information

LAB. NATURAL SELECTION OF STRAWFISH

LAB. NATURAL SELECTION OF STRAWFISH Period Date LAB. NATURAL SELECTION OF STRAWFISH You have already been introduced to the idea that when an organism is selected by nature to survive, it then has the opportunity to reproduce and pass on

More information

Modeling Traffic Patterns using Java

Modeling Traffic Patterns using Java The College at Brockport: State University of New York Digital Commons @Brockport Lesson Plans CMST Institute 5-2005 Modeling Traffic Patterns using Java Kim Meek The College at Brockport Follow this and

More information

Planning and Design of Proposed ByPass Road connecting Kalawad Road to Gondal Road, Rajkot - Using Autodesk Civil 3D Software.

Planning and Design of Proposed ByPass Road connecting Kalawad Road to Gondal Road, Rajkot - Using Autodesk Civil 3D Software. Planning and Design of Proposed ByPass Road connecting Kalawad Road to Gondal Road, Rajkot - Using Autodesk Civil 3D Software. 1 Harshil S. Shah, 2 P.A.Shinkar 1 M.E. Student(Transportation Engineering),

More information

At each type of conflict location, the risk is affected by certain parameters:

At each type of conflict location, the risk is affected by certain parameters: TN001 April 2016 The separated cycleway options tool (SCOT) was developed to partially address some of the gaps identified in Stage 1 of the Cycling Network Guidance project relating to separated cycleways.

More information

Wind Movement and Global and Local Winds

Wind Movement and Global and Local Winds Wind Movement and Global and Local Winds In previous lessons, you learned that the uneven heating of Earth s surface by the Sun causes some areas to be warmer than others. This uneven heating of land forms

More information

Roundabout Design Aid PREPARED BY TRAFFIC AND SAFETY

Roundabout Design Aid PREPARED BY TRAFFIC AND SAFETY Roundabout Design Aid PREPARED BY TRAFFIC AND SAFETY May 2018 Engineering Manual Preamble This manual provides guidance to administrative, engineering, and technical staff. Engineering practice requires

More information

AIS data analysis for vessel behavior during strong currents and during encounters in the Botlek area in the Port of Rotterdam

AIS data analysis for vessel behavior during strong currents and during encounters in the Botlek area in the Port of Rotterdam International Workshop on Next Generation Nautical Traffic Models 2013, Delft, The Netherlands AIS data analysis for vessel behavior during strong currents and during encounters in the Botlek area in the

More information

Implementing Provisions for Art. 411 of the ICR Ski Jumping

Implementing Provisions for Art. 411 of the ICR Ski Jumping JUMPING HILLS CONSTRUCTION NORM 2018 Implementing Provisions for Art. 411 of the ICR Ski Jumping Author: Hans-Heini Gasser (SUI) EDITION NOVEMBER 2018 Table of Contents Page 1. Preliminary Remarks 3 2.

More information

March Madness Basketball Tournament

March Madness Basketball Tournament March Madness Basketball Tournament Math Project COMMON Core Aligned Decimals, Fractions, Percents, Probability, Rates, Algebra, Word Problems, and more! To Use: -Print out all the worksheets. -Introduce

More information

IDeA Competition Report. Electronic Swimming Coach (ESC) for. Athletes who are Visually Impaired

IDeA Competition Report. Electronic Swimming Coach (ESC) for. Athletes who are Visually Impaired IDeA Competition Report Electronic Swimming Coach (ESC) for Athletes who are Visually Impaired Project Carried Out Under: The Department of Systems and Computer Engineering Carleton University Supervisor

More information

ENHANCED PARKWAY STUDY: PHASE 2 CONTINUOUS FLOW INTERSECTIONS. Final Report

ENHANCED PARKWAY STUDY: PHASE 2 CONTINUOUS FLOW INTERSECTIONS. Final Report Preparedby: ENHANCED PARKWAY STUDY: PHASE 2 CONTINUOUS FLOW INTERSECTIONS Final Report Prepared for Maricopa County Department of Transportation Prepared by TABLE OF CONTENTS Page EXECUTIVE SUMMARY ES-1

More information

Pressure Sensor Bridge Configurations

Pressure Sensor Bridge Configurations Pressure Sensor Bridge Configurations 1. Purpose Describe different pressure sensor bridge configurations, when each can and cannot be used, and the advantages and disadvantages of each. 2. Introduction

More information

Evolution by Natural Selection 1

Evolution by Natural Selection 1 Evolution by Natural Selection 1 I. Mice Living in a Desert These drawings show how a population of mice on a beach changed over time. 1. Describe how the population of mice is different in figure 3 compared

More information

NCCP Swimming 301 Course Summary

NCCP Swimming 301 Course Summary 1 INTRODUCTION 3:30 This module provides coaches with an overview of the 301 course, what is expected of the coaches and most importantly what coaches can expect to get out of attending the 301 course.

More information

High-Resolution Measurement-Based Phase-Resolved Prediction of Ocean Wavefields

High-Resolution Measurement-Based Phase-Resolved Prediction of Ocean Wavefields DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. High-Resolution Measurement-Based Phase-Resolved Prediction of Ocean Wavefields Dick K.P. Yue Center for Ocean Engineering

More information

Well Control Modeling Software Comparisons with Single Bubble Techniques in a Vertical Well

Well Control Modeling Software Comparisons with Single Bubble Techniques in a Vertical Well Well Control Modeling Software Comparisons with Single Bubble Techniques in a Vertical Well Jace R. Larrison, P.E. Blowout Engineers, LLC Recent advances in well control modeling simulators have incorporated

More information

Characterizing Ireland s wave energy resource

Characterizing Ireland s wave energy resource Snapshots of Doctoral Research at University College Cork 2011 Characterizing Ireland s wave energy resource Brendan Cahill Hydraulics & Maritime Research Centre, UCC Introduction In theory, the energy

More information

A physicist, an engineer and a programmer were in a car driving over a steep alpine pass when the brakes failed. The car was getting faster and

A physicist, an engineer and a programmer were in a car driving over a steep alpine pass when the brakes failed. The car was getting faster and A physicist, an engineer and a programmer were in a car driving over a steep alpine pass when the brakes failed. The car was getting faster and faster, they were struggling to get round the corners and

More information

ASSESSING THE RELIABILITY OF FAIL-SAFE STRUCTURES INTRODUCTION

ASSESSING THE RELIABILITY OF FAIL-SAFE STRUCTURES INTRODUCTION ASSESSING THE RELIABILITY OF FAIL-SAFE STRUCTURES Abraham Brot * Abstract: A computer simulation method is described, that can be used to assess the reliability of a dual-path fail-safe design. The method

More information

Models for Pedestrian Behavior

Models for Pedestrian Behavior arxiv:cond-mat/9805089v1 [cond-mat.stat-mech] 7 May 1998 Models for Pedestrian Behavior Dirk Helbing II. Institut für Theoretische Physik Universität Stuttgart http://www.theo2.physik.uni-stuttgart.de/helbing.html

More information

SHOT ON GOAL. Name: Football scoring a goal and trigonometry Ian Edwards Luther College Teachers Teaching with Technology

SHOT ON GOAL. Name: Football scoring a goal and trigonometry Ian Edwards Luther College Teachers Teaching with Technology SHOT ON GOAL Name: Football scoring a goal and trigonometry 2006 Ian Edwards Luther College Teachers Teaching with Technology Shot on Goal Trigonometry page 2 THE TASKS You are an assistant coach with

More information

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3 Tutorial for the Total Vertical Uncertainty Analysis Tool in NaviModel3 May, 2011 1. Introduction The Total Vertical Uncertainty Analysis Tool in NaviModel3 has been designed to facilitate a determination

More information

Hydroacoustic surveys of Otsego Lake s pelagic fish community,

Hydroacoustic surveys of Otsego Lake s pelagic fish community, Hydroacoustic surveys of Otsego Lake s pelagic fish community, 2010 1 Holly A. Waterfield 2 and Mark Cornwell 3 INTRODUCTION Hydroacoustic surveys were conducted in May and November 2010 to estimate pelagic

More information

Olympus Production Contour Plot

Olympus Production Contour Plot Olympus Production Contour Plot Overview An alternative to the Scale Scenario calculation is the Contour Diagram. The conditions defined in the Scale Scenario are specific to production locations (wellhead,

More information

The Application of Pedestrian Microscopic Simulation Technology in Researching the Influenced Realm around Urban Rail Transit Station

The Application of Pedestrian Microscopic Simulation Technology in Researching the Influenced Realm around Urban Rail Transit Station Journal of Traffic and Transportation Engineering 4 (2016) 242-246 doi: 10.17265/2328-2142/2016.05.002 D DAVID PUBLISHING The Application of Pedestrian Microscopic Simulation Technology in Researching

More information

R E V I S E D D A T E 0 4 /

R E V I S E D D A T E 0 4 / R E V I S E D D A T E 0 4 / 2 0 0 9 Guidelines Growing Oysters with the OysterGro System (OGS) Congratulations, you have just invested in one of the most efficient oyster growing system there is, the OysterGro.

More information

Literature Review: Final

Literature Review: Final Jonathan Sigel Section A December 19 th, 2016 Literature Review: Final Function and Purpose of a Roundabout: Roundabouts are a location in which multiple roads are joined together in a circle, with an

More information

ScienceDirect. Rebounding strategies in basketball

ScienceDirect. Rebounding strategies in basketball Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 72 ( 2014 ) 823 828 The 2014 conference of the International Sports Engineering Association Rebounding strategies in basketball

More information

Developments in managing small pelagic fisheries

Developments in managing small pelagic fisheries Developments in managing small pelagic fisheries Prof Ray Hilborn Your essential event for networking and information Impacts of fishing forage fish on their predators: Progress report October 2017 Ray

More information

Is lung capacity affected by smoking, sport, height or gender. Table of contents

Is lung capacity affected by smoking, sport, height or gender. Table of contents Sample project This Maths Studies project has been graded by a moderator. As you read through it, you will see comments from the moderator in boxes like this: At the end of the sample project is a summary

More information

Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams

Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams Chapter 2: Pure Substances a) Phase Change, Property Tables and Diagrams In this chapter we consider the property values and relationships of a pure substance (such as water) which can exist in three phases

More information

Protect Our Reefs Grant Interim Report (October 1, 2008 March 31, 2009) Principal investigators: Donald C. Behringer and Mark J.

Protect Our Reefs Grant Interim Report (October 1, 2008 March 31, 2009) Principal investigators: Donald C. Behringer and Mark J. Investigating the role of the spotted spiny lobster (Panulirus guttatus) in the recovery of the long spined sea urchin (Diadema antillarum) on the coral reefs of the Florida Keys Protect Our Reefs Grant

More information

Get it here. Page 1 of 7 Date:Jan 8, 2014

Get it here. Page 1 of 7 Date:Jan 8, 2014 Step 1 We are going to use Scratch 2.0 from now on so everyone should download Scracth 2.0 before starting this exercise. Get it here http://scratch.mit.edu/scratch2download/ Create a new project, delete

More information

March Madness Basketball Tournament

March Madness Basketball Tournament March Madness Basketball Tournament Math Project COMMON Core Aligned Decimals, Fractions, Percents, Probability, Rates, Algebra, Word Problems, and more! To Use: -Print out all the worksheets. -Introduce

More information

THESE DAYS IT S HARD TO MISS the story that Americans spend

THESE DAYS IT S HARD TO MISS the story that Americans spend WHICH COMES FIRST: THE NEIGHBORHOOD OR THE WALKING? BY SUSAN HANDY AND PATRICIA MOKHTARIAN THESE DAYS IT S HARD TO MISS the story that Americans spend more time stuck in traffic than ever, that they re

More information

CHAPTER 1 INTRODUCTION TO RELIABILITY

CHAPTER 1 INTRODUCTION TO RELIABILITY i CHAPTER 1 INTRODUCTION TO RELIABILITY ii CHAPTER-1 INTRODUCTION 1.1 Introduction: In the present scenario of global competition and liberalization, it is imperative that Indian industries become fully

More information