Week 13 DO NOW QUESTIONS. to FishWiggle right random 45 left random 45 forward 1 set Fenergy Fenergy - 0.1 end Suppose you had a working model of small.

Slides:



Advertisements
Similar presentations
Week 7 DO NOW QUESTIONS. Question: In the following segment of code, “food-location” is a ___? breed [ foragers forager ] breed [ followers follower ]
Advertisements

Populations.
Brooke Ard 5 th Grade Math/Science Griggs Road Elementary.
Understanding Populations Chapter 8. What is a Population? A population is a reproductive group because organisms usually breed with members of their.
What is a Population A population is a group of organisms of the same species that live in a specific geographical area and interbreed. A population is.
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.
Population Simulation
Limits on Population can the world be taken over by one organism?
Define Habitat a. Place where organisms live b. A trait that an animal possesses in order to live in a certain environment. c. All the populations that.
ECOSYSTEMS 1 WATER SOIL. Everything in the natural world is connected. An ecosystem is a community of living and non-living things that interact and work.
Energy flow in the Ecosystem By Fredrick Rodrigues.
Populations Chapter 8.
Population Control.  What makes populations of organisms increasing or decreasing in size…  When new predators come  When organisms leave the food.
Populations Chapter 8. Population Definition – all the members of a species living in the same place at the same time. Species – What? Place – Where?
Why do chipmunks in the Great Smoky Mountains survive?
2-Day Introduction to Agent-Based Modelling Day 1: Session 4 Networks.
Fishing BY: Joshua Fannin. why fishing is a great thing to do? Great way to release stress Way to spend time out doors after long week. Gain information.
Chapter 8 Understanding Populations
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,
Chapter 21 Clickers Conceptual Integrated Science Second Edition © 2013 Pearson Education, Inc. Ecology.
Ecology REVIEW JEOPARDY S2C06 Jeopardy Review Ways Organisms Get energy Ecology Living and non Living factors SymbiosisEcologyagain
New Mexico Computer Science For All Population Dynamics: Birth and Death Maureen Psaila-Dombrowski.
Why have these animals died? What will happen to these dead animals?
1. An example of a biotic factor is A. The number of worms in the soil B. The amount of leaf liter (dead leaves) in the soil C. The pH of the soil D. Both.
SQUADS #4 Learning Intentions - Today, I am going to address these College Readiness Standards in Science: 1.Scientific Investigation – Scientific.
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.
Copyright © by Holt, Rinehart and Winston. All rights reserved. ResourcesChapter menu Section 1 How Populations Change in Size Objectives Describe the.
Mission Pledge: As part of HMS I will seek to create a positive learning environment in which all students will excel today, tomorrow, and forever. K-W-L:Energy.
Food Chains Name_______________________#____ Date______ K.Duda2010 We will be learning all about food chains! First, we will begin our educational journey.
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,
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.
Scientists found that, over a period of 200 years, a mountain pond was transformed into a meadow. During that time, several communities of organisms were.
Population/ Limiting Factors State Standards Learning Targets  I will be able to determine the size of a population.  I will be able to describe population.
ECOSYSTEMS (relationships and competition for limiting factors )
Enzymes Activity: Chew on This!
Vocabulary Relationships Ecosystems Energy Flow Levels of Organization
Census and Reapportionment Review Mr. Lummel’s second period class is much bigger than Ms. Zeins’ second period class. Should his class get more supplies.
Week 4 DO NOW QUESTIONS. Question: Predict a turtle’s heading after this procedure is run once. to go ask turtles [ forward 1 set heading random 45 right.
Studying Populations and Limiting Factors. Population density The number of individuals in a specific area.
Populations.
Ecology Review. Environment Living Things Energy Types of Interactions Misc. $100 $200 $300 $400 $500.
Populations and Communities Section 3 Section 3: Shaping Communities Preview Bellringer Key Ideas Carving a Niche Competing for Resources Ecosystem Resiliency.
Week 3 DO NOW QUESTIONS. In this setup procedure the programmer intended to create one turtle of each color: red, green, and blue. What went wrong? to.
Biodiversity and Limiting Factors in Ecosystems. Biodiversity -measure of the number of different species presenting a given area. -i.e. classroom = 1.
AP STATS: WARM UP I think that we might need a bit more work with graphing a SAMPLING DISTRIBUTION. 1.) Roll your dice twice (i.e. the sample size is 2,
Interactions with the Environment Limiting Factors and Carrying CapacityLimiting Factors and Carrying Capacity.
Producers, Consumers & Decomposers
Week 12 DO NOW QUESTIONS. In NetLogo, monitors are output windows that allow you to keep track of how a something (a variable, a reporter or an expression.
Population Dynamics. Relationships in an Ecosystem.
Chapter 20 Interactions of Living Things. Environment Living Things Energy Types of Interactions Misc. $100 $200 $300 $400 $500.
Ecosystems Summarize the composition of an ecosystem, considering both biotic factors (including populations to the level or microorganisms and communities)
What determines population?
Ecosystems 5.L.4B.4 Construct scientific arguments to explain how limiting factors (including food, water, space, and shelter) or a newly introduced.
Three main factors determine whether a population increases or decreases: number of births, number of deaths, or number of individuals that move into.
Week 14 DO NOW QUESTIONS.
Food water shelter coyote
A. food B. shelter C. space D. water
Section 3: Shaping Communities
Studying Populations Key Terms: Population Population Size
Populations.
Name an organism that may be placed at level A
Bbb BANANAS.
ENERGY FLOW IN ECOSYSTEMS
Populations.
Chapter 8 Understanding Populations
1st 6 Weeks Vocab Review Changes to Ecosystems.
creating a ecosystems model in net logo
Limiting Factors Chapter 10.2.
Population Dynamics Notes
Presentation transcript:

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 fish feeding and living in the ocean. How could you change the code above to make the model more general so that you could explore without having to change the actual code each time? a.Change the name of the procedure to BigFishWiggle b.Change line iv “Forward 2” c.Add a slider and change line v “set Fenergy Fenergy – newSlider” d.Include a line that “Ask fishes [ set size 3 ]” e.Create a new procedure for each new scenario.

Breeds” allow programmers to have different kinds of turtles with different custom variables. The names also help programmers keep track of which agentset they are working with. What does the following command do? breeds [sharks shark] a.Immediately Creates 100 sharks b.Allows you to use the command “create-sharks” later in your code c.Allows to use a command like sharks-own [hungry?] later in your code. d.Using breeds will likely make your code more understandable and readable. e.b, c and d above.

to FishDie if Fenergy <= 0 [die] end In a model that has fish that are moving and expending energy; eating and gaining energy; why might you want to have the code above? a.To punish the fish for not doing what you say. b.To model the consequences of running out of food. c.To make a more accurate model of sustainability—fish die when resources are depleted. d.To keep fish from getting too much Fenergy e.B and C

The concept of “carrying capacity” is important in biology. It means that a given environment only has enough food (or space, etc.) to support a certain number of organisms. In a model that has fish moving (spending energy), eating (gaining energy), and reproducing when they have gained enough energy. What limits the fish population? a.The amount of food available b.The number of other fish c.The amount of energy that they need to reproduce. d.The amount of energy gained from the food e.All of the above

You have created a simple fish ecosystem model with fish and plankton. Not you want to add a predator, say a shark. What things do you need to include? a.A new breed perhaps called shark b.An interaction between the shark and the fish c.Procedures that allow the shark to move around, give birth and die. d.Nothing, you just need to put the shark into the model and let nature take its course e.a, b and c