Overfishing
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
WHAT IS IT?
(a general understanding of what the model is trying to show or explain)
HOW IT WORKS
(what rules the agents use to create the overall behavior of the model)
HOW TO USE IT
(how to use the model, including a description of each of the items in the Interface tab)
THINGS TO NOTICE
(suggested things for the user to notice while running the model)
THINGS TO TRY
(suggested things for the user to try to do (move sliders, switches, etc.) with the model)
EXTENDING THE MODEL
(suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.)
NETLOGO FEATURES
(interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features)
RELATED MODELS
(models in the NetLogo Models Library and elsewhere which are of related interest)
CREDITS AND REFERENCES
(a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links)
Comments and Questions
turtles-own [ energy ] breed [fishes fish] breed [fishermen boat3] breed [drones drone] to go reset-ticks tick ask fishes [ if pcolor = green [ set pcolor blue set energy energy + 5 ] ifelse show-energy? [ set label energy ] [ set label "" ] ] ask fishes [ right random 360 forward 1 set energy energy - 1 ] ask fishermen [ right random 360 forward 1 set energy energy - 1 ] ask drones [ right random 360 forward 1 ] end to setup clear-all create-fishes 10 [set color white] create-fishermen 20 [ set shape "fishermen" set color 0 set size 2; easier to see set energy 10 ] reset-ticks ask patches [set pcolor blue] create-drones 50 [set color grey set shape "drone"] end to reproduce ask fishes [ if energy > 100 [ set energy energy - 100 hatch 1 [set energy 100] ] ] ask fishermen [ if energy > 1 [ set energy energy - 100 hatch 10 [set energy 100] ] ] end to death if energy < 0 [die] end to regrow-kelp ask patches [ if random 100 < 50 [set pcolor green] ] end to eat-fishes ; fishermen procedure let prey one-of fishes-here ;grab a random fishes end
There are 4 versions of this model.
Attached files
No files
This model does not have any ancestors.
This model does not have any descendants.