Week 14 DO NOW QUESTIONS.

Slides:



Advertisements
Similar presentations
Got Gas? Jim and Michael. Problem Statement (Weight 15%) An investigation of a gas pump queue as a function of rationing policy We modeled the queue at.
Advertisements

New Mexico Computer Science For All Designing and Running Simulations Maureen Psaila-Dombrowski.
Theoretical Probability Distributions We have talked about the idea of frequency distributions as a way to see what is happening with our data. We have.
Week 13 DO NOW QUESTIONS. Suppose you had a working model of small fish feeding and living in the ocean. How could you change the code below to make the.
What are “CANDLESTICKS” And How To Use Them.
Prelude to the Research Validity Lecture A RH: is a guess about the relationships between behaviors In order to test our RH: we have to decide on a research.
Management Information Systems. Top level managers Middle level managers Low level managers Operational Tactical Strategic.
Project 2: ATM’s & Queues
Department of Computer Science What is NetLogo UH-DMML  Multi-agent programmable modeling environment  Well suited for modeling complex systems evolving.
The Writing Process Prewriting.
Artificial Intelligence CIS 479/579 Bruce R. Maxim UM-Dearborn.
2-Day Introduction to Agent-Based Modelling Day 1: Session 4 Networks.
CISC 1600 – Lecture 3.2 Simulations Complex Input & Output NetLogo.
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,
Implementing the Rule of Four Module 0 This project is sponsored, in part, by a grant from the National Science Foundation: NSF DUE Any opinions,
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.
Section 4.1 Exponential Functions
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.
New Mexico Computer Science For All Command Procedures in NetLogo Maureen Psaila-Dombrowski.
Week 2 DO NOW QUESTIONS. In this procedure the programmer intended to clear all the turtles and patches and make a new turtle of size 3 with the pen down,
Scientific Method Review.  The scientific method is used by scientists to solve problems  It is organized and reproducible (can be repeated by other.
Week 13 DO NOW QUESTIONS. to FishWiggle right random 45 left random 45 forward 1 set Fenergy Fenergy end Suppose you had a working model of small.
(9.3B) Paired Samples Objectives: Use computer output Recognize paired data Use a one-sample t-test appropriately for paired data Recognize alternate mechanics.
Laboratory Investigations Each lab group will submit a single input. All members of the group will get THE SAME grade UNLESS... You are observed goofing.
CHAPTER 1 Whole Numbers Slide 2Copyright 2012, 2008, 2004, 2000 Pearson Education, Inc. 1.1Standard Notation 1.2Addition 1.3Subtraction 1.4Multiplication.
Chapter 9 Estimating a Population Proportion Created by Kathy Fritz.
CHAPTER 5 Probability: What Are the Chances?
10 Classic Evaluation Questions to use at your meetings
Chapter 11 Asking and Answering Questions About The Difference Between Two Population Proportions Created by Kathy Fritz.
Debugging Intermittent Issues
Lesson by Ryan Benson, M.A.
Policy Writing.
CHAPTER 6 Random Variables
Debugging Intermittent Issues
Steps to solve problems
6.5 Compare Surveys, Experiments, and Observational Studies
Function- A pairing of inputs with outputs such that each input is paired with exactly one output. (the inputs can’t repeat) Domain- inputs or x values.
MIS 643 Agent-Based Modeling and Simulation 2016/2017 Fall.
CPI’s Top 10 De-Escalation Tips
BUSN 258 Competitive Success/snaptutorial.com
BUSN 258 PAPERS Lessons in Excellence--busn258papers.com.
BUSN 258 Education for Service/snaptutorial.com
BUSN 258 Teaching Effectively-- snaptutorial.com.
A Sellers Guide to Finding the Right Agent to Sell Your Home!
Learning-Focused Interactions Communication Styles
Learning-Focused Interactions
Finding rates of change from tables and graphs.
Big Data, Education, and Society
Integrating Outcomes Learning Community Call February 8, 2012
Lesson 4 – Social Skill: Giving Feedback.
Costa’s Levels of Questioning (AVID)
Scientific Method Section 2.
Global Challenge Love Heart Lesson 2.
Global Challenge Love Heart Lesson 2.
Global Challenge Love Heart Lesson 2.
Global Challenge Love Heart Lesson 2.
Modeling the Effects of Disasters on a Human Population and Resources
Global Challenge Love Heart Lesson 2.
Global Challenge Love Heart Lesson 2.
Global Challenge Love Heart Lesson 2.
Run Charts Slide 1 of 3 Run Charts Defined
The first number is posted telling what random number was selected, I did this for testing purposes, in the real thing it would not be there. Since the.
Global Challenge Love Heart Lesson 2.
1.) Come up with 10 examples of how statistics are used in the real life. Be specific and unique. 2.) Video.
Global Challenge Love Heart Lesson 2.
creating a ecosystems model in net logo
GCSE Computing:: While Loops
Global Challenge Love Heart Lesson 2.
COLDWELL BANKER VANGUARD REALTY STREET SMART
Presentation transcript:

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 traffic patterns and use of public transit. You decide to model this situation in NetLogo. What are some of your first steps?   Create a setup procedure. Decide what are the key decisions and behavior changes that might occur. Decide what to include in your model and what to ignore. Decide what turtles-own variables to create. B c and d Stockpile gasoline.    

Breed [non-humans non-human] In a burned-out building, you find a scrap of paper with only the top part of a NetLogo program as below.   Breed [humans human] Breed [non-humans non-human] Humans-own [ alive? Have-ammo? Agentset-of-friends] Non-humans-own [ #-eaten am-I-intact? Need-brains?….. What do you think the modeler was attempting to model? You can’t tell from only the custom variables. Looks like a model of a Zombie Apocalypse. A model of an epidemic or ecological system. All of the above.

Iteration means doing (almost) the same thing over and over Iteration means doing (almost) the same thing over and over. Computer models automate this work and allow us to see the changes that occur as things change after many operations. Which of the following is NOT iteration?   Ask n-of 100 turtles [ set color color + who] Repeat 1000 [set global-counter global-counter + 2] Create-turtles 500 [ setxy random 12 random 12] Let name “ralph” Breed [cows cow] D and e

After you create a model it is valuable to reflect whether you have appropriately captured the behavior of the real-world system that you are modeling. The process of building a model often helps you understand what does and what doesn’t matter. What steps can you take to see if your model is accurate?   Create sliders for key variables to see if changing them produces reasonable effects. Run the model many times with different settings Show the model to domain experts and get their feedback All of the above