New Mexico Computer Science For All Creating Turtles Maureen Psaila-Dombrowski.

Slides:



Advertisements
Similar presentations
Netlogo! NetLogo is a programmable modeling environment for simulating complex systems. Modelers can give instructions to hundreds or thousands of independent.
Advertisements

New Mexico User Test Starlogo TNG September 16, 2006 Starlogo TNG September 16, 2006.
Exploring Water Water has properties that can be observed and described. How would you describe the color of water? How would you describe the ‘shape’
New Mexico Computer Science For All Designing and Running Simulations Maureen Psaila-Dombrowski.
Week 7 DO NOW QUESTIONS. Question: In the following segment of code, “food-location” is a ___? breed [ foragers forager ] breed [ followers follower ]
Wurzer, Lorenz, Popov: „NetLogo Workshop (Part 1)“, in eCAADe 2012 Prague, Slide 1 „Netlogo First Steps (Artif. Societies) “, in Social Simulation Conference.
New Mexico Computer Science For All
New Mexico Computer Science For All Local Variables in Netlogo Maureen Psaila-Dombrowski.
New Mexico Computer Science for All Agent-based modeling By Irene Lee December 27, 2012.
New Mexico Computer Science For All Breeds and Shapes in NetLogo Maureen Psaila-Dombrowski.
Agent-based model of a simple stable economy Alexandre Lomovtsev Advisor: Dr. Russell Abbott, Ph.D. California State University, Los Angeles Department.
Agent-based model of a simple stable economy Alexandre Lomovtsev Adviser: Dr. Russ Abbott.
Agent-based model of a simple stable economy Alexandre Lomovtsev Advisor: Dr. Russell Abbott, Ph.D. California State University, Los Angeles Department.
New Mexico Computer Science For All More Looping in NetLogo Maureen Psaila-Dombrowski.
Teaching Contemporary Mathematics Conference January 25, 2013 Christine Belledin NC School of Science and Mathematics.
Department of Computer Science What is NetLogo UH-DMML  Multi-agent programmable modeling environment  Well suited for modeling complex systems evolving.
Working with Graphics. Objectives Understand bitmap and vector graphics Place a graphic into a frame Work with the content indicator Transform frame contents.
An Introduction to NetLogo given by Gabriel Wurzer. ,
Repast Simphony Presented by Michael J. North, MBA, Ph. D.
New Mexico Computer Science For All Statements and Expressions in NetLogo Maureen Psaila-Dombrowski.
ABM Frameworks Dr Andy Evans With additions from Dr Nick Malleson.
NetLogo Dr. Feng Gu. NetLogo NetLogo is a programmable modeling environment for simulating natural and social phenomena, authored by Uri Wilensky in 1999.
CISC 1600 – Lecture 3.2 Simulations Complex Input & Output NetLogo.
Simulation of Global Warming in the Continental United States Using Agent-Based Modeling By Marika Lohmus.
Week 11 DO NOW QUESTIONS. An ask turtles block is a set of instructions that is issued to every turtle. Even though computers can do things very quickly,
New Mexico Computer Science For All Population Dynamics: Birth and Death Maureen Psaila-Dombrowski.
Week 14 DO NOW QUESTIONS. You have been asked by a leader of your community to think about how a sudden increase in fuel price (gas= $12/gal) will affect.
Bridges To Computing General Information:  This document was created for use in the "Bridges to Computing" project of Brooklyn College.  You are invited.
New Mexico Computer Science For All Interface Input in NetLogo Maureen Psaila-Dombrowski.
An Introduction to NetLogo Gabriel Wurzer, Vienna University of Technology AnthropologischeGesellschaftWien.
computer
Who Gets the Cabbage? Designer Cabbage © Mobile Area Education Foundation Cabbage White Butterfly.
New Mexico Computer Science For All Interface Output in NetLogo (Part 1) Maureen Psaila-Dombrowski.
Week 9 DO NOW QUESTIONS. Question: If the following procedure is executed after 1 turtle is created in the program, what shape is created on the NetLogo.
Area of Rectangles & Squares Geometry Mr. Bower BowerPower.net.
Agent-Based Modeling and Simulation (ABMS) Bertan Badur Department of Management Information Systems Boğaziçi University.
New Mexico Computer Science For All Command Procedures in NetLogo Maureen Psaila-Dombrowski.
Patterns of Inheritance. I: Mendel's laws Two factors called genes control each trait For each gene, organisms receive one allele (form) from each parent.
DECOI: Social Simulation - August Social Simulation Branimir Cace, Carlos Grilo, Arne Handt, Pablo Rabanal & Scott Stensland.
Week 10 DO NOW QUESTIONS. A programmer has created 100 turtles of random colors and randomly distributes green patches. Every time the turtles land on.
New Mexico Computer Science For All Variables and Scope Maureen Psaila-Dombrowski.
New Mexico Computer Science For All Sorting Algorithms Maureen Psaila-Dombrowski.
Logo Programming Fall 2011 – Session 7 Programming Class Teacher: M. Taghizadeh Sobhan Highschool.
New Mexico Computer Science For All Patches and Agent/Environment Interactions Maureen Psaila-Dombrowski.
Mendelian Genetics The Basics. Gregor Mendel Mendel was an Austrian monk who published his research on the inheritance of pea plant characteristics in.
Associative Property of Addition
New Mexico Computer Science For All Search Algorithms Maureen Psaila-Dombrowski.
Objective: What is the purpose of a test- cross in genetics? Do Now: Black hair: B Blonde hair: b What would the gene combination look like for someone.
Inherited Traits and Learned Behaviors
Area of Rectangles & Squares Geometry Mr. Bower BowerPower.net.
M10 WS11:Krankenhausbedarfsplanung The World as We See It given by Gabriel Wurzer and Wolfgang E. Lorenz
Starter: Write a short paragraph, refer to picture. Measuring Length 17 SEP Measuring Length 17 SEP
M10 WS11:Krankenhausbedarfsplanung More, More and Even-More More given by Gabriel Wurzer and Wolfgang E. Lorenz
An Introduction to NetLogo given by Gabriel Wurzer and Wolfgang E
AnthropologischeGesellschaftWien
Management Information Systems
Management Information Systems
Do it now activity Last lesson we used Flowol to create a solution to a problem a computer could solve. Identify what each symbol does:
An introduction to Netlogo agent-based software
Welcome to Computer Science Jeopardy
6-3The Central Limit Theorem.
Hands-On given by Gabriel Wurzer and Wolfgang E. Lorenz
Equine Science Quiz 1.
Simulation of Global Warming in the Continental United States Using Agent-Based Modeling By Marika Lohmus.
Special Products of Polynomials
creating a ecosystems model in net logo
Counting Shapes.
Divide 9 × by 3 ×
Week 2 Vocab 1.1 & Science 5. observation 2. Inference 6. controlled experiment 3. Hypothesis 7. responding variable 4.manipulated variable 8. controlled.
Presentation transcript:

New Mexico Computer Science For All Creating Turtles Maureen Psaila-Dombrowski

Agents in Netlogo Observer – no specific location, looks over entire Netlogo World Turtle Agents – Mobile agents ▫Can have different shapes and names (breeds) Patches – Stationary agents ▫Netlogo World is divided into a grid work of small squares or patches Links - Agents that connect two turtles

Three Ways to Create Turtles Create command – Observer creates turtles create-turtles # Creates # new turtles at the origin Turtles have a random color and direction

Three Ways to Create Turtles Sprout Command – Patches create turtles sprout # Creates # turtles on a selected patch Turtles have a random color and direction

Three Ways to Create Turtles Hatch Command – Turtles create turtles hatch # Must be an existing turtle Creates # new turtles at the same location as the “parent” turtle Each new turtle inherits of all the “parent” turtle properties

Three Ways to Create Turtles More Information: create-turtles.htmlhttp://ccl.northwestern.edu/netlogo/docs/dict/ create-turtles.html sprout.htmlhttp://ccl.northwestern.edu/netlogo/docs/dict/ sprout.html hatch.htmlhttp://ccl.northwestern.edu/netlogo/docs/dict/ hatch.html