Biology or Social studies: individual vs. collective movement Day 11 COLQ 201 Multiagent modeling Harry Howard Tulane University.

Slides:



Advertisements
Similar presentations
Short introduction to the use of PEARL General properties First tier assessments Higher tier assessments Before looking at first and higher tier assessments,
Advertisements

1 Microsoft Access 2002 Tutorial 9 – Automating Tasks With Macros.
Intro to Scientific Inquiry 2
Earth sciences: diffusion Day 4 COLQ 201 Multiagent modeling Harry Howard Tulane University.
Chapter 1 - An Introduction to Computers and Problem Solving
Programming recap. Do you know these? LOW LEVEL 1 st generation: machine language (110011) 2 nd generation: assembly language (ADD, SUB) HIGH LEVEL 3.
Esterel Overview Roberto Passerone ee249 discussion section.
Operating Systems Simulator Jessica Craddock Kelvin Whyms CPSC 410.
The Scientific Method.
UNIT 1: BIOLOGY & LIVING THINGS Lesson 1: Scientific Method Do Now: What is the first step in every scientific experiment?
2-Day Introduction to Agent-Based Modelling Day 2: Session 5 Variables and Debugging.
Department of Computer Science What is NetLogo UH-DMML  Multi-agent programmable modeling environment  Well suited for modeling complex systems evolving.
© 2010 OpenLink Software, All rights reserved. Linked Data Visualization Using HTML5 based PivotViewer By Kingsley IdehenKingsley Idehen Twitter
Testing. Definition From the dictionary- the means by which the presence, quality, or genuineness of anything is determined; a means of trial. For software.
CS 0004 –Lecture 8 Jan 24, 2011 Roxana Gheorghiu.
Slides created by: Professor Ian G. Harris Test and Debugging  Controllability and observability are required Controllability Ability to control sources.
Spreadsheet-Based Decision Support Systems Chapter 22:
Biology: flocking, herding & schooling Day 5 COLQ 201 Multiagent modeling Harry Howard Tulane University.
Study Guide For Test Chapter 5, 6,& 7 Test is Friday, May 15th.
Structured programming 4 Day 34 LING Computational Linguistics Harry Howard Tulane University.
If you use Macromedia Flash Player 8 & your course folder not in the ‘Trusted Location’ list of Macromedia you have to follow the following steps to run.
A Look Inside Some NetLogo Simulations Bruce Edmonds Centre for Policy Modelling Manchester Metropolitan University.
More switches, Comparison Day 7 Computer Programming through Robotics CPST 410 Summer 2009.
Using the Internet to Conduct Academic Research Gove N. Allen A. B. Freeman School of Business Tulane University.
Q4 Day 19 COLQ 201 Multiagent modeling Harry Howard Tulane University.
Models in NetLogo Day 3 COLQ 201 Multiagent modeling Harry Howard Tulane University.
Scientific Method Test Review. What is the six step process used by scientists to solve problems.
SCRIPTS & FUNCTIONS DAY /06/14 LING 3820 & 6820 Natural Language Processing Harry Howard Tulane University.
MIPS coding. slt, slti slt $t3, $t1, $t2 – set $t3 to be 1 if $t1 < $t2 ; else clear $t3 to be 0. – “Set Less Than.” slti $t3, $t1, 100 – set $t3 to be.
Business and Management Research WELCOME. Lecture 7.
WEB TEXT DAY /14/14 LING 3820 & 6820 Natural Language Processing Harry Howard Tulane University.
Lecture 2 Conditional Statement. chcslonline.org Conditional Statements in PHP Conditional Statements are used for decision making. Different actions.
Program Design. The design process How do you go about writing a program? –It’s like many other things in life Understand the problem to be solved Develop.
Review for test! Alice Chapter 1&2 Test is tomorrow! - March 26 th March 25th.
Concurrency Properties. Correctness In sequential programs, rerunning a program with the same input will always give the same result, so it makes sense.
MIPS coding. slt, slti slt $t3, $t1, $t2 – set $t3 to be 1 if $t1 < $t2 ; else clear $t3 to be 0. – “Set Less Than.” slti $t3, $t1, 100 – set $t3 to be.
The Development Process Compilation. Compilation - Dr. Craig A. Struble 2 Programming Process Problem Solving Phase We will spend significant time on.
Programming. Exam Validation 1-10 Technical words such as Method of validation Do not use “Something”.
Observation vs. Inferences The Local Environment.
Biology: foraging Day 6 COLQ 201 Multiagent modeling Harry Howard Tulane University.
Social studies: traffic Day 10 COLQ 201 Multiagent modeling Harry Howard Tulane University.
Part III How to use SHAKEN. How to Use SHAKEN These slides walk you through each item in SHAKEN’s main menu We will show how each item works with a demo.
LV & HV Updates Vasileios Martos. Start / Stop GapsCheck Script Instead of using Browser or the Console Manager to Start/Stop The Script.
Adding Sounds Games Programming in Scratch. Games Programming in Scratch L6 Adding Sounds Learning Objectives Learn how to add sound to a Scratch game.
Introduction to Scratch We will be using the Scratch Environment today, so please log in to the Scratch website (scratch.mit.edu)
Introduction to the course Aug 30, Day 1 Object-oriented Programming thru Video Games TIDE 1840 Harry Howard Tulane University.
Do-more Technical Training
Science Experiment Title
Management Information Systems
Windows Server 2012 missing WMVCore dll
IS IT EFFECTIVE TO RUN ONLINE DATING BACKGROUND CHECKS YOURSELF?
Biology: migration Day 7
Ecology: predator-prey models Day 15
Algorithms and Flow Charts
Compilation VS Interpretation
Regular expressions 2 Day /23/16
PROGRAMMING What is it?.
control 4 Day /01/14 LING 3820 & 6820 Natural Language Processing
Control 3 Day /05/16 LING 3820 & 6820 Natural Language Processing
NLP 2 Day /07/16 LING 3820 & 6820 Natural Language Processing
Objective of the lesson
Design and Implementation
TAYLOR UNIVERSITY | MY MAJOR
Regular expressions 3 Day /26/16
Introduction to Syntax ANTH 3590/7590 Harry Howard Tulane University
SAG Infotech Private Limited
The Scientific Method.
How to allow the program to know when to stop a loop.
In Today’s Class.. General Kernel Responsibilities Kernel Organization
Control 1 Day /30/16 LING 3820 & 6820 Natural Language Processing
Presentation transcript:

Biology or Social studies: individual vs. collective movement Day 11 COLQ 201 Multiagent modeling Harry Howard Tulane University

5-Feb-2010COLQ 201, Prof. Howard, Tulane University2 Course organization 

Independence vs. mimetism online

5-Feb-2010COLQ 201, Prof. Howard, Tulane University4 How to fix the first error  What does output-write do?  When in doubt read the instructions:   Programming Guide > Output  Find other examples of output-write in the program.  What should output-write "sim " simulations do?  Solution: output-write simulations  Add a comment that you fixed it.

5-Feb-2010COLQ 201, Prof. Howard, Tulane University5 How to fix the 2nd error  What should your first step be?  The observer is the aspect of the program that executes a procedure when nothing else does.  Look at the procedures dependent and independent.  What executes them?  The macaques are asked to.  Solution: ask the macaques to check mimetism: ask macaques [ ifelse mimetism? [dependent] [independent] ]

5-Feb-2010COLQ 201, Prof. Howard, Tulane University6 Look at the interface  Where is the go button?  What does mimetism mean?  Run the simulation with and without mimetism. What is the difference?

Programming NetLogo

5-Feb-2010COLQ 201, Prof. Howard, Tulane University8 Play with this model  Can you change "simulate" to "run"?  Can you make the monkey image bigger?

5-Feb-2010COLQ 201, Prof. Howard, Tulane University9 Starting form scratch 

5-Feb-2010COLQ 201, Prof. Howard, Tulane University10 Next time  Q3  Biology: communication  Quorum sensing