CSCE782 Project-Omor Sharif - page 1

Size: px
Start display at page:

Download "CSCE782 Project-Omor Sharif - page 1"

Transcription

1 globals[ link-table node-coordinates link-travel-time-by-link-id origin-table water-level breed [cars car breed [nodes node nodes are intersections breed [bridges bridge breed [vmss vms variable message signs operated by Traffic Management Center (TMC) cars-own[ origin destination shortest-path shortest-path-nodes counter -time my-od-travel-time speed links-own[ id link-travel-time my-patch-set nodes-own [cost bridges-own [bridge-id pof pof - probability of failure vmss-own [message message tmc displays currently to setup (for this model to work with NetLogo's new plotting features, clear-all-and-reset-ticks should be replaced with clear-all at the beginning of your setup procedure and reset-ticks at the of the procedure.) clear-all-and-reset-ticks file-close-all random-seed seed ask patches [set pcolor white setup-network setup-cars setup-bridges setup-reroute-links setup-vmss my-update-plots to setup-network setup-nodes setup-links CSCE782 Project-Omor Sharif - page 1

2 to setup-nodes set node-coordinates [[0 5 18[ [ [ [ [ [ [ [8 45 2[ [ create-nodes 11 foreach node-coordinates [ ask node (item 0?) [ setxy item 1? item 2? set shape "circle" set size 1.4 set color gray set label-color yellow set label who to setup-links set link-table [[1 0 1[2 0 2[3 0 9[4 1 3[5 2 3[6 1 4[7 2 5[8 3 5[9 3 4[10 4 6[ [12 5 6[13 1 7[14 7 4[15 2 8[16 8 5[17 9 3[ [19 9 1[20 9 2[ [ foreach link-table [ ask node (item 1?) [ create-link-to node (item 2?) [set id item 0? set thickness 0.75 set color gray set label-color black set label id ask links [generate-my-patch-set ask links [ifelse (dynamic-shortest-path?) [set link-travel-time 0 [set link-traveltime link-length ask links [set link-travel-time-by-link-id map[[link-travel-time of? (sort-by[[id of?1 < [id of?2 links) to generate-my-patch-set foreach sort links [ ask? [ let i 0 let ps nobody let one-patch nobody while [i <= floor link-length - 1 [let lh link-heading ask 1 [set one-patch patch-at-heading-and-distance lh (i + 1) set ps (patch-set ps one-patch) CSCE782 Project-Omor Sharif - page 2

3 set i i + 1 set my-patch-set ps to layout layout-spring nodes links if mouse-down? [ let nearest-turtle min-one-of turtles [distancexy mouse-xcor mouse-ycor while [mouse-down? [ ask nearest-turtle [setxy mouse-xcor mouse-ycor ask turtles [ set heading towardsxy 0 0 forward random 5 to setup-cars create-cars num-of-cars [ setup-origin-destination move-to origin set speed random-float 0.9 to setup-origin-destination set origin one-of (list node 0) (list node 0 node 1 node 2) set origin-table map[[origin of? (sort cars) set destination node 6 to compute-shortest-path dijktra's algorithm for shortest path let y 0 let solved-node-set (list origin) initialize set of solved nodes let shortest-path-tree [ ask origin [set cost 0 assign cost 0 to the origin let min-length 1000 let node-to-add 0 let i 1 while [i <= count nodes - 1 [ foreach solved-node-set [ if (any? my-links with [not member? other- solved-node-set) [ ask? [ if (any? my-out-links with [not member? other- solved-node-set) [ let x min [link-travel-time of my-out-links with [not member? other- solvednode-set let closest-unsolved-node [other- of one-of my-out-links with [link-traveltime = x and not member? other- solved-node-set let length-of-path-to-unsolved-node ([cost of self + x) if (length-of-path-to-unsolved-node <= min-length) [ set min-length length-of-path-to-unsolved-node CSCE782 Project-Omor Sharif - page 3

4 set node-to-add closest-unsolved-node set y? set shortest-path-tree lput link ([who of y) ([who of node-to-add) shortest-pathtree ask node-to-add [set cost min-length set min-length 1000 set solved-node-set lput node-to-add solved-node-set set i i + 1 show shortest-path-tree ask links with [member? self shortest-path-tree [set color blue show solved-node-set Extract shortest path between origin and destination from shortest path tree let en destination let s origin let t 0 set shortest-path [ while [en!= s [ ask en [ask my-in-links with [member? self shortest-path-tree [ set t self the link ask en [set en [other- of t ask myself [set shortest-path fput t shortest-path set shortest-path-nodes [ set shortest-path-nodes map [[1 of? shortest-path set shortest-path-nodes lput [2 of (last shortest-path) shortest-path-nodes show shortest-path-nodes to setup-bridges set bridge-1 patches with [(pxcor <= 33) and (pxcor >= 30) and (pycor = 18) set bridge-2 patches with [(pxcor <= 73) and (pxcor >= 70) and (pycor = 18) let bridges (patch-set bridge-1 bridge-2) ask bridges [set pcolor green create-bridges 2 ask bridge (count nodes + count cars) [setxy ask first sort bridges [setxy set bridge-id "B1" set pof 0 ask bridge (count nodes + count cars + 1) [setxy ask item 1 sort bridges [setxy set bridge-id "B2" set pof 0 ask bridges [set shape "square" set color 38 set size 1.75 set label-color black set label bridge-id to setup-reroute-links CSCE782 Project-Omor Sharif - page 4

5 let set1 (turtle-set node 1 node 2) let set2 (turtle-set node 4 node 5) ask item 0 sort bridges [create-links-to set1 ask node 9 [create-links-to set1 [set color ask item 1 sort bridges [create-links-to set2 ask node 10 [create-links-to set 2 ask bridges [ask my-out-links [ set thickness 0.50 set color 38 set label-color black set id "" set label id ask bridges [ask my-out-links [generate-my-patch-set ask bridges [ask my-out-links [ifelse (dynamic-shortest-path?) [set link-travel-time 0 [set link-travel-time link-length ask links with [1 = one-of bridges [set link-travel-time-by-link-id map[[linktravel-time of? (sort-by[[id of?1 < [id of?2 links) to setup-vmss if (TMC?) [ create-vmss 1[ set shape "computer workstation" set color brown set size 2 setxy 78 1 set message "Have a nice day!" set label-color black set label message to go water-agent-do-your-thing bridges-do-your-thing tmc-do-your-thing ask cars [ if (dynamic-shortest-path?) [update-link-travel-time dynamic shortest path implies travel time of links are updated based on traffic condition, static means just use link-length ask cars [ check any warning message displayed at vms issued by TMC if (tmc? = true and [message of one-of vmss = "B2 closed- reroute whenever possible") [ask link 10 6 [set link-travel-time arrived at a bridge? If the bridge is found inoperative, reroute from that node if (one-of bridges-here!= nobody) [let brg one-of bridges-here CSCE782 Project-Omor Sharif - page 5

6 ifelse ([color of brg = blue) set origin one-of nodes-here [ask link 10 6 [set link-travel-time [ask link 10 6 [set link-travel-time link-length arrived at an intersection? set origin to current intersection and re-compute shortest path if arrived at destination move to actual origin if (one-of nodes-here!= nobody) [let t one-of nodes-here ifelse (t!= destination) [set origin t [calculate-my-od-travel-time set origin item (who - count nodes) origin-table move-to item (who - count nodes) origin-table compute-shortest-path move-forward ask links [set label precision link-travel-time 2 my-update-plots tick to move-forward determine new heading of cars when they arrive at an intersection according to the current shortest-path-nodes if (one-of nodes-here!= nobody) [let t one-of nodes-here move-to t realign if (t!= destination) [let p position t shortest-path-nodes face item (p + 1) shortest-path-nodes if (t = item (who - count nodes) origin-table) [face item 1 shortest-path-nodes car transmission - car following behavior ifelse (car-following-behavior? = true) [ let my-view (patch-set patch-ahead 1 patch-right-and-ahead 45 1 patch-right-andahead 90 1 patch-left-and-ahead 45 1 patch-left-and-ahead 90 1) let my-view patches in-cone let car-ahead one-of cars-on my-view if (car-ahead = one-of other cars) [set speed [speed of car-ahead set speed speed - deceleration if (car-ahead = nobody or car-ahead = self) [set speed speed + acceleration if speed < 0 [ set speed 0 if speed > 1 [ set speed 1 fd speed [ifelse (not any? cars-on patch-ahead 1 or one-of cars-on patch-ahead 1 = self) [fd 1 CSCE782 Project-Omor Sharif - page 6

7 [fd 0 to update-link-travel-time count number of cars at each tick and update link-travel-time of link accordingly if (link-travel-time-update-strategy = "count-cars-on-link") [ ask links [set link-travel-time (count cars-on my-patch-set + 1) + round link-length whenever a car arrives at an intersection it reports its travel time of the last traversed link if (link-travel-time-update-strategy = "just-arrived-at-intersection") [ if (one-of nodes-here!= nobody) [let t one-of nodes-here if (t!= origin) [ let p position t shortest-path-nodes p is number set p item (p - 1) shortest-path-nodes p is node agent ask link ([who of p) ([who of t) [set link-travel-time (ticks - [counter of myself) set counter ticks to calculate-my-od-travel-time if (one-of nodes-here!= nobody) [let t one-of nodes-here if(t = item (who - count nodes) origin-table) [set start-time ticks if(t = destination) if (ticks > -time) [set my-od-travel-time ticks - -time set -time ticks to reroute set heading towards one-of (list node 4 node 5) water agent procedures to water-agent-do-your-thing import gage readings file-open "Gage Height Data 11 Nov.txt" ifelse (not file-at-?) [if ((ticks mod 30) - 0 = 0) [ set water-level file-readreport water level every 15 ticks [file-close bridge agent procedures to bridges-do-your-thing CSCE782 Project-Omor Sharif - page 7

8 ask bridges with [bridge-id = "B2" [ifelse (water-level >= threshold) [set pof 80 set color blue [set pof random 80 set color 38 to tmc-do-your-thing ask vmss [ let btwo one-of bridges with [bridge-id = "B2" ifelse ([pof of btwo >= 80) [set message "B2 closed- reroute whenever possible" set label message [set message "Have a Nice Day!" set label message to my-update-plots set-current-plot "Travel Time" plot (sum [my-od-travel-time of cars) set-current-plot "Water Gage Readings" set-current-plot-pen "Water Level" plot water-level set-current-plot-pen "Threshold" plot threshold CSCE782 Project-Omor Sharif - page 8

NETLOGO 6.0 QUICK GUIDE

NETLOGO 6.0 QUICK GUIDE Agents NETLOGO 6.0 QUICK GUIDE Luis R. Izquierdo (http://luis.izqui.org) The NetLogo world is made up of agents. Agents are beings that can follow instructions. There are four types of agents: Turtles.

More information

Complex Systems Made Simple

Complex Systems Made Simple Complex Systems Made Simple 1. Introduction 2. A Complex Systems Sampler 3. Commonalities a. What is NetLogo? b. Graphical interface c. Programming concepts d. Termites NetLogo project? Fall 2015 René

More information

Exercise 1.1 A First NetLogo Session Turtle commands and properties

Exercise 1.1 A First NetLogo Session Turtle commands and properties Exercise 1.1 A First NetLogo Session NetLogo is an interpreted language meaning you can type commands directly into a command line and see the results. In order to introduce NetLogo we will first type

More information

Modelers can give instructions to hundreds or thousands of independent "agents" all operating in parallel.

Modelers can give instructions to hundreds or thousands of independent agents all operating in parallel. Netlogo! NetLogo is a programmable modeling environment for simulating complex systems. Modelers can give instructions to hundreds or thousands of independent "agents" all operating in parallel. This makes

More information

Procedures: Algorithms and Abstraction

Procedures: Algorithms and Abstraction Procedures: Algorithms and Abstraction 5 5.1 Objectives After completing this module, a student should be able to: Read and understand simple NetLogo models. Make changes to NetLogo procedures and predict

More information

An Introduction to NetLogo

An Introduction to NetLogo An Introduction to NetLogo given by Gabriel Wurzer*, *not a mathematician www.iemar.tuwien.ac.at Netlogo free* agent-based simulation environment by Uri Wilensky, Northwestern University, which is based

More information

Agents That Move. NetLogo Guide 2. Turtles - Breeds. John Hayward Church Growth Modelling

Agents That Move. NetLogo Guide 2. Turtles - Breeds. John Hayward Church Growth Modelling Agents That Move NetLogo Guide 2 Turtles - Breeds John Hayward Church Growth Modelling www.churchmodel.org.uk 2 Turtles An agent is an individual entity, or being, that can follow instructions and modify

More information

Lab 4: NetLogo Experiments in the Random Walk and Wiggle Walk

Lab 4: NetLogo Experiments in the Random Walk and Wiggle Walk Lab 4: NetLogo Experiments in the Random Walk and Wiggle Walk In this lab, you will be writing program that lets you experiment with two different types of turtle movement: the random walk and the wiggle

More information

Network Science with Netlogo Tutorial

Network Science with Netlogo Tutorial By Tom Brughmans First version: March 2016 This version created 05/07/2017 Netlogo version used: 6.0.1 Network Science with Netlogo Tutorial Extension used: nw (pre-packaged with Netlogo 6.0.1) https://github.com/netlogo/nw-extension

More information

An Extensible NetLogo Model for Visualizing Message Routing Protocols

An Extensible NetLogo Model for Visualizing Message Routing Protocols ARL-SR-0380 AUG 2017 US Army Research Laboratory An Extensible NetLogo Model for Visualizing Message Routing Protocols by Robert P Winkler and Somiya Metu NOTICES Disclaimers The findings in this report

More information

NetLogo Lab 3 Tutorial: Finding Peaks

NetLogo Lab 3 Tutorial: Finding Peaks NetLogo Lab 3 Tutorial: Finding Peaks You've already been exposed to the three types of agents you can give commands to in NetLogo: turtles, patches, and the observer. As you start to write your own procedures,

More information

Art, Nature, and Patterns Introduction

Art, Nature, and Patterns Introduction Art, Nature, and Patterns Introduction to LOGO Describing patterns with symbols This tutorial is designed to introduce you to some basic LOGO commands as well as two fundamental and powerful principles

More information

CS108L Computer Science for All Module 8: Recursion and the Fractal Tree

CS108L Computer Science for All Module 8: Recursion and the Fractal Tree CS108L Computer Science for All Module 8: Recursion and the Fractal Tree Fig 1: Program in its final stage of development. Model Overview: In this NetLogo model, the goal is to create a recursive program

More information

NetLogo Tutorial Series: Langton's Ant. Nicholas Bennett Grass Roots Consulting

NetLogo Tutorial Series: Langton's Ant. Nicholas Bennett Grass Roots Consulting NetLogo Tutorial Series: Langton's Ant Nicholas Bennett Grass Roots Consulting nickbenn@g-r-c.com July 2010 Copyright Copyright 2010, Nicholas Bennett. All rights reserved. NetLogo Tutorial Series: Langton's

More information

The following procedure implements the process described above:

The following procedure implements the process described above: Natural Order Creating Fractals in NetLogo Introduction: In this lab you will learn how to make fractals using NetLogo. Fractals are figures that are self-similar on all scales. This means that if the

More information

How to Build an Agent Model

How to Build an Agent Model How to Build an Agent Model We have seen the cooperation model and have taken a look at its code. How did that code come to be? In other words, what are the steps in building and using such a model? Sketch

More information

TSTATES Library in Netlogo

TSTATES Library in Netlogo 1 Introduction TSTATES Library in Netlogo Manual Ilias Sakellariou November 2011, Revised Jun 2013 The present document is a draft of the manual for the TSTATES DSL for NetLogo. The TSTATES allows specification

More information

Introduction to NetLogo

Introduction to NetLogo Introduction to NetLogo Lecture 2016 Stéphane GALLAND Université de Bourgogne Franche-Comté - UTBM 90010 Belfort cedex, France - http://www.multiagent.fr Goals of this Lecture 2 During this lecture, I

More information

NetLogo User Manual

NetLogo User Manual Table of Contents What is NetLogo?...1 Features...1 Copyright Information...3 What's New?...5 Version 2.0.0 (December 10, 2003)...5 Version 1.3.1 (September 2003)...8 Version 1.3 (June 2003)...9 Version

More information

SWARMATHON 1 INTRO TO BIO-INSPIRED SEARCH

SWARMATHON 1 INTRO TO BIO-INSPIRED SEARCH SWARMATHON 1 INTRO TO BIO-INSPIRED SEARCH 1 SWARM ROBOTS ON MARS nasa.gov 1.1 BACKGROUND The Moses Biological Computation Lab at the University of New Mexico builds and does research with robots. The robots

More information

Reteaching. Solids. These three-dimensional figures are space figures, or solids. A cylinder has two congruent circular bases.

Reteaching. Solids. These three-dimensional figures are space figures, or solids. A cylinder has two congruent circular bases. 9- Solids These three-dimensional figures are space figures, or solids A B C D cylinder cone prism pyramid A cylinder has two congruent circular bases AB is a radius A cone has one circular base CD is

More information

NetLogo User Manual

NetLogo User Manual Table of Contents What is NetLogo?...1 Features...1 Copyright Information...3 What's New?...5 Version 2.0.2 (August 6, 2004)...5 Version 2.0.1 (May 7, 2004)...6 Version 2.0.0 (December 10, 2003)...7 Version

More information

NetLogo User Manual

NetLogo User Manual Table of Contents What is NetLogo?...1 Features...1 Copyright Information...3 Third party licenses...3 What's New?...7 Version 3.1.1 (June 16, 2006)...7 Version 3.1 (April 14, 2006)...7 Version 3.0 (September

More information

NetLogo 1.1 User Manual

NetLogo 1.1 User Manual Table of Contents What is NetLogo?...1 Features...1 What's New?...3 Version 1.1 Rev D (August 2002)...3 Version 1.1 (July 2002)...4 Version 1.0 (April 2002)...6 Beta 10 (March 2002)...6 Beta 9 (December

More information

Ad hoc and Sensor Networks Topology control

Ad hoc and Sensor Networks Topology control Ad hoc and Sensor Networks Topology control Goals of this chapter Networks can be too dense too many nodes in close (radio) vicinity This chapter looks at methods to deal with such networks by Reducing/controlling

More information

NetLogo User Manual

NetLogo User Manual Table of Contents What is NetLogo?...1 Features...1 Copyright Information...3 Third party licenses...3 What's New?...7 Version 3.1.5 (December 5, 2007)...7 Version 3.1.4 (February 16, 2007)...7 Version

More information

How to Save Google Maps Offline to a Mobile Phone

How to Save Google Maps Offline to a Mobile Phone How to Save Google Maps Offline to a Mobile Phone How to Download Google Maps Offline 1. Make sure your device (laptop) has an Internet connection, and sign into your Google account. 2. Open the Google

More information

Stage 1 Preparation (PLC)

Stage 1 Preparation (PLC) Stage 1 Preparation (PLC) Grade Level Content Standard(s)/Standard(s) for Mathematical Practice N-Q.2 Define appropriate quantities for the purpose of descriptive modeling. G-MG Modeling with Geometry,

More information

CMSC/BIOL 361: Emergence Cellular Automata: Introduction to NetLogo

CMSC/BIOL 361: Emergence Cellular Automata: Introduction to NetLogo Disclaimer: To get you oriented to the NetLogo platform, I ve put together an in-depth step-by-step walkthrough of a NetLogo simulation and the development environment in which it is presented. For those

More information

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius.

12 m. 30 m. The Volume of a sphere is 36 cubic units. Find the length of the radius. NAME DATE PER. REVIEW #18: SPHERES, COMPOSITE FIGURES, & CHANGING DIMENSIONS PART 1: SURFACE AREA & VOLUME OF SPHERES Find the measure(s) indicated. Answers to even numbered problems should be rounded

More information

Chapter Eight: Contents

Chapter Eight: Contents Volume Three Modules 01 March 2002 i Chapter Eight: Contents (Output Visualizer 04 March 2002 LA-UR-00-1725 TRANSIMS 3.0) 1. INTRODUCTION...1 1.1 OVERVIEW... 1 1.2 REQUIREMENTS... 1 2. USING THE OUTPUT

More information

Ideally your algorithms for both parts should run in linear time. You will receive partial credit for a polynomial-time algorithm.

Ideally your algorithms for both parts should run in linear time. You will receive partial credit for a polynomial-time algorithm. HW 7: Extra problems Instructor: Sariel Har-Peled CS/ECE 374: Algorithms & Models of Computation, Fall 2017 Version: 1.0 1 Consider a directed graph G, where each edge is colored either red, white, or

More information

NetLogo User Manual

NetLogo User Manual Table of Contents What is NetLogo?...1 Features...1 Copyright Information...3 What's New?...7 Version 2.1 (December 13, 2004)...7 Version 2.0.2 (August 6, 2004)...9 Version 2.0 (December 10, 2003)...10

More information

Calypso Construction Features. Construction Features 1

Calypso Construction Features. Construction Features 1 Calypso 1 The Construction dropdown menu contains several useful construction features that can be used to compare two other features or perform special calculations. Construction features will show up

More information

RITIS Training Module 10 Script. To return to the Florida Analytics main page, select Florida Analytics Tools in the upper left corner of the page.

RITIS Training Module 10 Script. To return to the Florida Analytics main page, select Florida Analytics Tools in the upper left corner of the page. RITIS Training Module 10 Script Welcome to the Regional Integrated Transportation Information System or RITIS Module 10 CBT. To begin, select the start button or press Shift+N on your keyboard. To return

More information

NetLogo User Manual

NetLogo User Manual Table of Contents What is NetLogo?...1 Features...1 Copyright Information...3 Third party licenses...3 MersenneTwisterFast...3 Colt...4 MRJ Adapter...4 Quaqua...4 JHotDraw...4 MovieEncoder...4 JpegImagesToMovie...5

More information

MULTI-AGENT APPROACH TO TRAFFIC SIMULATION IN NETLOGO ENVIRONMENT LEVEL CROSSING MODEL

MULTI-AGENT APPROACH TO TRAFFIC SIMULATION IN NETLOGO ENVIRONMENT LEVEL CROSSING MODEL 5 th International Conference Transport Systems Telematics TST`05 Silesian University of Technology Faculty of Transport Aleš JANOTA 1 Karol RÁSTOČNÝ 1 Jiří ZAHRADNÍK 1 Multi-agent, NetLogo, complex system,

More information

Programming for Blood, Spring 2008 Set #3 P. N. Hilfinger. ±0.d 1 d m 2 e,

Programming for Blood, Spring 2008 Set #3 P. N. Hilfinger. ±0.d 1 d m 2 e, Programming for Blood, Spring 2008 Set #3 P. N. Hilfinger 1. An m-bit floating-point number is a value ±0.d 1 d m 2 e, where e is an integer (i.e., positive or negative), and each d i is either 0 or 1.

More information

Using Inspiration 7 I. How Inspiration Looks SYMBOL PALETTE

Using Inspiration 7 I. How Inspiration Looks SYMBOL PALETTE Using Inspiration 7 Inspiration is a graphic organizer application for grades 6 through adult providing visual thinking tools used to brainstorm, plan, organize, outline, diagram, and write. I. How Inspiration

More information

User Guide. SmartTruckRoute Android Navigation App for Truck Drivers. Introduction: Installation - Activation

User Guide. SmartTruckRoute Android Navigation App for Truck Drivers. Introduction: Installation - Activation User Guide SmartTruckRoute Android Navigation App for Truck Drivers Introduction: Installation - Activation Download SmartTruckRoute from Google Play. Use the app free of charge from 1-2 PM and 1-2 AM

More information

Egress: Lisi User Guide

Egress: Lisi User Guide Egress: Lisi User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without the

More information

Name Date Period. Multiple Choice

Name Date Period. Multiple Choice Name Date Period Worksheet 3.6 Optimization Show all work. Calculator permitted. Show all set-ups and analysis. Report all answers to 3 decimals and avoid intermediate rounding error. Multiple Choice 1.

More information

University of Massachusetts Lowell : Organization of Programming Languages Spring 2004 Problem Set 4. Henderson Picture Language

University of Massachusetts Lowell : Organization of Programming Languages Spring 2004 Problem Set 4. Henderson Picture Language University of Massachusetts Lowell 91.301: Organization of Programming Languages 91.301 Spring 2004 Problem Set 4 Henderson Picture Language Issued: Thursday, 4 March 2004 Due: Thursday, 11 March 2004;

More information

Class VIII Chapter 10 Visualising Solid Shapes Maths

Class VIII Chapter 10 Visualising Solid Shapes Maths Exercise 10.1 Question 1: For each of the given solid, the two views are given. Match for each solid the corresponding top and front views. The given solids, matched to their respective side view and top

More information

Numeracy Practice Test Year 9 - Answers

Numeracy Practice Test Year 9 - Answers Numeracy Practice Test Year 9 - Answers 00 Practice Test Calculator Allowed Student Details First Name Last Name Today s Date is: Test Instructions You have 40 minutes to complete this test. You are allowed

More information

1. One-third of 105 is the same as seven-sixths of what number? 1.

1. One-third of 105 is the same as seven-sixths of what number? 1. Blitz, Page. One-third of 05 is the same as seven-sixths of what number?. 2. A rectangle has length 6 and width 2. What is the radius of the 2. units circle that passes through the four vertices of the

More information

Dulwich College. SAMPLE PAPER Mathematics

Dulwich College. SAMPLE PAPER Mathematics 1+ Dulwich College YEAR 9 ENTRANCE AND SCHOLARSHIP EXAMINATION SAMPLE PAPER Mathematics 1 HOUR 0 MINUTES Use a calculator where appropriate. Answer all the questions. Show all your working. Marks for parts

More information

Data Sheet for Joysticks

Data Sheet for Joysticks Shallow installation depth < 26 mm Service-friendly due to connectors Available interfaces include USB, Dual Output and Voltage Regulator Ideally suited for applications in CCTV, robotics, medical technology

More information

Name Class Date. Draw a net that you think will make a cube on your graph paper, and then cut it out. Can you fold it into a cube?

Name Class Date. Draw a net that you think will make a cube on your graph paper, and then cut it out. Can you fold it into a cube? Name Class Date 8-7 1 Surface Area Going Deeper Essential question: How can you use nets to find surface areas? A net is a two-dimensional pattern of shapes that can be folded into a three-dimensional

More information

RadianceIES: Radiance Images

RadianceIES: Radiance Images RadianceIES: Radiance Images IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without

More information

NAVIGATION USER MANUAL

NAVIGATION USER MANUAL NAVIGATION USER MANUAL POWERED by Welcome Dear Customer, Thank you for selecting NDrive as your navigation software. This guide is created so that you can find quick and simple answers to your questions,

More information

form_script.workshop Turing proposed the idea that two or more re- In today s project we are building on the repel

form_script.workshop Turing proposed the idea that two or more re- In today s project we are building on the repel Alan Turing, 1952, The Chemical Basis of Morphogenesis, phil. Trans R Soc B, 237 37-72 (transactions of the royal society) Turing proposed the idea that two or more re- acting chemicals in a diffusion

More information

TMIS. Traffic Management Interface System

TMIS. Traffic Management Interface System Traffic Management Interface System Technical Overview General The main task of TMIS is to provide the TMC Operations and Management with an overview of the state of the traffic management system in real-time.

More information

Create an Adorable Hedgehog with Basic Tools in Inkscape Aaron Nieze on Sep 23rd 2013 with 5 Comments

Create an Adorable Hedgehog with Basic Tools in Inkscape Aaron Nieze on Sep 23rd 2013 with 5 Comments Create an Adorable Hedgehog with Basic Tools in Inkscape Aaron Nieze on Sep 23rd 2013 with 5 Comments Tutorial Details Software: Inkscape Difficulty: Beginner Completion Time: 2 hours View post on Tuts+

More information

What is a Dashboard visualisation? (Speed dial and traffic light)

What is a Dashboard visualisation? (Speed dial and traffic light) What is a Dashboard visualisation? (Speed dial and traffic light) A dashboard consists of a number of graphs, plots and tables that are generally financial and reproduce information or key performance

More information

Static Routing NETWORK INFRASTRUCTURES NETKIT - LECTURE 4 MANUEL CAMPO, MARCO SPAZIANI

Static Routing NETWORK INFRASTRUCTURES NETKIT - LECTURE 4 MANUEL CAMPO, MARCO SPAZIANI Static Routing NETWORK INFRASTRUCTURES NETKIT - LECTURE 4 MANUEL CAMPO, MARCO SPAZIANI Routing Routing is the process of selecting a path for traffic in a network. This process defines the shortest or

More information

Guidelines for Setting Auto-Peak Width in ApexTrack Processing Methods and its Effect on USP Resolution and USP Plate Count

Guidelines for Setting Auto-Peak Width in ApexTrack Processing Methods and its Effect on USP Resolution and USP Plate Count TECN10008147 New Doc. No. Rev. 01 Page 1 of 6 Guidelines for Setting Auto-Peak Width in ApexTrack Processing Methods and its Effect on USP Resolution and USP Plate Count The information in this article

More information

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page Creating a Web Page using Mozilla Composer- A Free Open Source Application Emily Hebard IT Lab School of Information University of Texas at Austin Spring 2003 Objectives Orient to the Mozilla Composer

More information

Brand Identity Standards

Brand Identity Standards Brand Identity Standards User Information This guide will serve as a tool on how to use the basic identity elements. Within this guide you will be shown the basic elements of Witham Health Services identity

More information

40. Sim Module - Common Tools

40. Sim Module - Common Tools HSC Sim Common Tools 15021-ORC-J 1 (33) 40. Sim Module - Common Tools Table of Contents 40.1. Drawing flowsheets and adding tables to flowsheets... 2 40.1.1. Drawing units... 2 40.1.2. Drawing streams...

More information

COMOSS FEPCI Series Network Adapter Data Sheet. Overview. 1 COMOSS Electronic Co., LTD 4F, No.11, Chung-Hsin St. Shu-Lin 238 Taiwan R.O.C.

COMOSS FEPCI Series Network Adapter Data Sheet. Overview. 1 COMOSS Electronic Co., LTD 4F, No.11, Chung-Hsin St. Shu-Lin 238 Taiwan R.O.C. IEEE 1394b Series Dongle COMOSS FEPCI Series Adapter COMOSS FEPCI Series Network Adapter Data Sheet Version 3.0 Layer 2, 100Base-FX for PCs to POF(Plastic Optical Fiber) Network Adapter. Provides High-Speed

More information

Pen Tool, Fill Layers, Color Range, Levels Adjustments, Magic Wand tool, and shadowing techniques

Pen Tool, Fill Layers, Color Range, Levels Adjustments, Magic Wand tool, and shadowing techniques Creating a superhero using the pen tool Topics covered: Pen Tool, Fill Layers, Color Range, Levels Adjustments, Magic Wand tool, and shadowing techniques Getting Started 1. Reset your work environment

More information

Draw beautiful and intricate patterns with Python Turtle, while learning how to code with Python.

Draw beautiful and intricate patterns with Python Turtle, while learning how to code with Python. Raspberry Pi Learning Resources Turtle Snowflakes Draw beautiful and intricate patterns with Python Turtle, while learning how to code with Python. How to draw with Python Turtle 1. To begin, you will

More information

Possibility to hide or show a group devices

Possibility to hide or show a group devices Dispatching - Map The menu Map allows you to have a full overview, in real-time, on (all/a part of) your fleet. By scrolling the mouse, using the arrow keys or selecting a part of the map (by moving the

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *1750626544* MATHEMATICS 0580/22 Paper 2 (Extended) May/June 2018 Candidates answer on the Question

More information

CENG 477 Introduction to Computer Graphics. Ray Tracing: Shading

CENG 477 Introduction to Computer Graphics. Ray Tracing: Shading CENG 477 Introduction to Computer Graphics Ray Tracing: Shading Last Week Until now we learned: How to create the primary rays from the given camera and image plane parameters How to intersect these rays

More information

Skills Practice Skills Practice for Lesson 6.1

Skills Practice Skills Practice for Lesson 6.1 Skills Practice Skills Practice for Lesson.1 Name Date As the Crow Flies Properties of Spheres Vocabulary Define each term in your own words. 1. sphere A sphere is the set of all points in space that are

More information

Potential Function. Homework #3. Part I: Star Algorithm

Potential Function. Homework #3. Part I: Star Algorithm Homework #3 Potential Function Part I: Star Algorithm I have implemented the Star Algorithm to compute the 2-dimensional configuration space Q starting from the workspace W and the robot shape R. The obstacles

More information

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7)

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) Graph as a XY Scatter Chart, add titles for chart and axes, remove gridlines. A. Select

More information

ROWTEST TDR200 ROTOR REFLECTOMETER TDRPLOT SOFTWARE

ROWTEST TDR200 ROTOR REFLECTOMETER TDRPLOT SOFTWARE ROWTEST TDR200 ROTOR REFLECTOMETER TDRPLOT SOFTWARE USER GUIDE Issue 2 October 2014 ROWTest Ltd., 64, Courthill House,Water Lane, Wilmslow, Cheshire. SK9 5AJ. UK Phone/Fax +44 - (0) - 1625-418722 Email:

More information

Coordinates - Activity 1 Plotting whole number ordered pairs.

Coordinates - Activity 1 Plotting whole number ordered pairs. Name: Class: p 3 Maths Helper Plus Resource Set 1. Copyright 2002 Bruce A. Vaughan, Teachers Choice Software Coordinates - Activity 1 Plotting whole number ordered pairs. 1) Start Maths Helper Plus and

More information

Cylinders and Quadric Surfaces A cylinder is a three dimensional shape that is determined by

Cylinders and Quadric Surfaces A cylinder is a three dimensional shape that is determined by Cylinders and Quadric Surfaces A cylinder is a three dimensional shape that is determined by a two dimensional (plane) curve C in three dimensional space a line L in a plane not parallel to the one in

More information

BehringerMods.com. Instructions for modification of Behringer SRC analog inputs and outputs

BehringerMods.com. Instructions for modification of Behringer SRC analog inputs and outputs BehringerMods.com Instructions for modification of Behringer SRC analog inputs and outputs The following instructions will cover the details of fully modifying a unit with analog output and analog input

More information

In this lesson you are going to create a drawing program similar to Windows Paint. 1. Start with a new project and remove the default cat sprite.

In this lesson you are going to create a drawing program similar to Windows Paint. 1. Start with a new project and remove the default cat sprite. Drawing Program In this lesson you are going to create a drawing program similar to Windows Paint. 1. Start with a new project and remove the default cat sprite. 2. Create a new sprite. 3. The new sprite

More information

(Refer Slide Time: 00:02:00)

(Refer Slide Time: 00:02:00) Computer Graphics Prof. Sukhendu Das Dept. of Computer Science and Engineering Indian Institute of Technology, Madras Lecture - 18 Polyfill - Scan Conversion of a Polygon Today we will discuss the concepts

More information

Call Center - Agent Assistant Application User Manual (BGC)

Call Center - Agent Assistant Application User Manual (BGC) Forum 700 Call Center Agent Assistant Application User Manual (BGC) Legal notice: Belgacom and the Belgacom logo are trademarks of Belgacom. All other trademarks are the property of their respective owners.

More information

TABLE OF CONTENTS INTRODUCTION... 2 OPENING SCREEN BEGIN ANALYSIS... 4 Start a New File or Open a Previously Saved File... 4

TABLE OF CONTENTS INTRODUCTION... 2 OPENING SCREEN BEGIN ANALYSIS... 4 Start a New File or Open a Previously Saved File... 4 3D-BLAST August 2010 TABLE OF CONTENTS INTRODUCTION... 2 OPENING SCREEN... 3 BEGIN ANALYSIS... 4 Start a New File or Open a Previously Saved File... 4 PROGRAM TOOLBAR... 5 NAVIGATING IN THE PROGRAM...

More information

RITIS Training Module 9 Script

RITIS Training Module 9 Script RITIS Training Module 9 Script Welcome to the Regional Integrated Information System or RITIS Module 09 CBT. To begin, select the start button or press Shift+N on your keyboard. This training module will

More information

CPM-200 User Guide For Lighthouse for MAX

CPM-200 User Guide For Lighthouse for MAX CPM-200 User Guide For Lighthouse for MAX Contents Page Number Opening the software 2 Altering the page size & Orientation 3-4 Inserting Text 5 Editing Text 6 Inserting Graphics 7-8 Changing the Colour

More information

D-Cut Master MANUAL NO. OPS639-UM-153 USER'S MANUAL

D-Cut Master MANUAL NO. OPS639-UM-153 USER'S MANUAL D-Cut Master MANUAL NO. OPS639-UM-153 USER'S MANUAL Software License Agreement Graphtec Corporation ( Graphtec ) grants the user permission to use the software (the software ) provided in accordance with

More information

1. If the sum of the measures of two angles is 90, then the angles are complementary. In triangle ABC, m A = 25, m B = 65, m C = 90.

1. If the sum of the measures of two angles is 90, then the angles are complementary. In triangle ABC, m A = 25, m B = 65, m C = 90. 1. If the sum of the measures of two angles is 90, then the angles are complementary. In triangle ABC, m A = 25, m B = 65, m C = 90. Which valid conclusion follows directly from the previous statements?

More information

COMOSS FECON Series Media Converter Data Sheet. Overview

COMOSS FECON Series Media Converter Data Sheet. Overview IEEE 1394b Series Dongle COMOSS FECON Series Converter COMOSS FECON Series Media Converter Data Sheet Version 3.0 Layer 2, 100Base-FX for UTP to POF(Plastic Optical Fiber) Network Converter. Provides High-Speed

More information

Inserting and Editing Pictures in Dreamweaver 8. Terminal Objective: To insert and edit an image into Dreamweaver 8.

Inserting and Editing Pictures in Dreamweaver 8. Terminal Objective: To insert and edit an image into Dreamweaver 8. Inserting and Editing Pictures in Dreamweaver 8 Terminal Objective: To insert and edit an image into Dreamweaver 8. Information: If you have already inserted your image, go to page 3 to begin the process

More information

Automated Measurement of Viscosity with Ubbelohde Viscometers, Camera Unit and Image Processing Software

Automated Measurement of Viscosity with Ubbelohde Viscometers, Camera Unit and Image Processing Software Santiago de Querétaro, México, Automated Measurement of Viscosity with Ubbelohde Viscometers, Camera Unit and Image Processing Software Will, J.C., Hernández, I., Trujillo, S. km 4,5 Carretera a Los Cués,

More information

User Manual. Call Center - Agent Assistant Application

User Manual. Call Center - Agent Assistant Application User Manual Call Center Agent Assistant Application Release 9.2 October 2013 Legal notice: Alcatel, Lucent, AlcatelLucent and the AlcatelLucent logo are trademarks of AlcatelLucent. All other trademarks

More information

Cabrillo College Engineering 1A - Surveying LABORATORY NO. 4 --- THEODOLITE: ANGLE ABOUT A POINT Objectives: To measure the angles about a point by repetition using a theodolite. Equipment: Theodolite,

More information

Network Visualization

Network Visualization Network Visualization Presented by Shahed Introduction Introduction Basic building blocks Node Links (relationship between nodes) Spatial information Network data 3 Introduction http://zeeb.library.cmu.edu:7850/joss/article.html

More information

Network Visualization. Introduction. Introduction. Introduction. Paper List. Paper List. Shahed. Basic building blocks

Network Visualization. Introduction. Introduction. Introduction. Paper List. Paper List. Shahed. Basic building blocks Network Visualization Presented by Shahed Basic building blocks Node Links (relationship between nodes) Spatial information Network data 3 http://zeeb.library.cmu.edu:7850/joss/article.html 4 Paper List

More information

Service Calibrations 5

Service Calibrations 5 5 Service Calibrations 5-3 ing the Service Calibrations Menu 5-4 1. Scan-Axis Calibration 5-7 2. Service Station Calibration 5-11 3. Accuracy Calibration 5-14 Carriage Height Calibration 5-18 Calibration

More information

Edupen Pro User Manual

Edupen Pro User Manual Edupen Pro User Manual (software for interactive LCD/LED displays and monitors) Ver. 3 www.ahatouch.com Some services in Edupen Pro require dual touch capability. In order to use dual touch, your computer

More information

Access to the Online Booking Tool

Access to the Online Booking Tool Welcome to KDS Corporate Start-up Guide This leaflet shows you the main features of the travel module. The information in this leaflet corresponds to the tool s generic features and depends on your company

More information

1. Sorting (assuming sorting into ascending order) a) BUBBLE SORT

1. Sorting (assuming sorting into ascending order) a) BUBBLE SORT DECISION 1 Revision Notes 1. Sorting (assuming sorting into ascending order) a) BUBBLE SORT Make sure you show comparisons clearly and label each pass First Pass 8 4 3 6 1 4 8 3 6 1 4 3 8 6 1 4 3 6 8 1

More information

Document Editor Basics

Document Editor Basics Document Editor Basics When you use the Document Editor option, either from ZP Toolbox or from the Output option drop-down box, you will be taken to the Report Designer Screen. While in this window, you

More information

Volume of Cylinders. Volume of Cones. Example Find the volume of the cylinder. Round to the nearest tenth.

Volume of Cylinders. Volume of Cones. Example Find the volume of the cylinder. Round to the nearest tenth. Volume of Cylinders As with prisms, the area of the base of a cylinder tells the number of cubic units in one layer. The height tells how many layers there are in the cylinder. The volume V of a cylinder

More information

NetLogo User Manual

NetLogo User Manual Table of Contents What is NetLogo?...1 Features...1 Copyright and License Information...3 How to reference...3 Acknowledgments...3 NetLogo license...3 BehaviorSpace license...3 Extension licenses...3 Third

More information

Vocabulary. Term Page Definition Clarifying Example. apothem. center of a circle. center of a regular polygon. central angle of a regular polygon

Vocabulary. Term Page Definition Clarifying Example. apothem. center of a circle. center of a regular polygon. central angle of a regular polygon CHAPTER 9 Vocabulary The table contains important vocabulary terms from Chapter 9. As you work through the chapter, fill in the page number, definition, and a clarifying example. apothem Term Page Definition

More information

Skills Practice Skills Practice for Lesson 6.1

Skills Practice Skills Practice for Lesson 6.1 Skills Practice Skills Practice for Lesson.1 Name Date As the Crow Flies Properties of Spheres Vocabulary Define each term in your own words. 1. sphere 2. diameter of a sphere 3. radius of a sphere 4.

More information

Extract from the online catalog

Extract from the online catalog Please note that the data given here has been taken from the online catalog. For comprehensive information and data, please refer to the user documentation at http://www.download.phoenixcontact.com. The

More information

Solving Problems using Search

Solving Problems using Search Solving Problems using Search Artificial Intelligence @ Allegheny College Janyl Jumadinova September 11, 2018 Janyl Jumadinova Solving Problems using Search September 11, 2018 1 / 35 Example: Romania On

More information

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB Strain gauge Measuring Amplifier GSV-1A8 Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB GSV-1A8USB SubD1 (front side) GSV-1A8USB M12 (front side) GSV-1A16USB (rear side) GSV-1A8USB K6D (front side)

More information