;; This is a project submitted as part of a summer course taught on Agent Based Modeling System ;; at Indiana University by Dr Hamid Ekbia. ;; The project was written by M Y Chuttur, Doctoral student in Information Science, Indiana University, Bloomington, USA, Dec 2008 breed [butterflies butterfly] ;;create a breed of turtles called butterfly breed [bees bee] ;;;;create a breed of turtles called bees butterflies-own [step ] ;; to be used in spiral movement globals [ratio butterfly-patch-eaten bees-patch-eaten ] ;; global variables declared to setup ca decide-patches ;; selects users choice setup-bugs end to decide-patches ifelse patch-distribution = "random" [ setup-patches-random ] [ setup-patches-cluster ] end to setup-patches-random ;; patches are randomly assigned ask patches [set pcolor green] ask patches [if random-float 100 < patch-density ;;setting different density for food patches [ set pcolor red ]] ;;red color = food patches set ratio 0 end to setup-patches-cluster ;; patches are clustered ask patches [set pcolor green] ask patches [if random-float 1000 < patch-density ;;setting different density for food patches [ ask patches in-radius 2 [set pcolor red] ]] ;;red color = food patches set ratio 0 end to setup-bugs create-butterflies butterfly-number ;; create a given number of butterflies ask butterflies [ set shape "butterfly" set butterfly-patch-eaten 0] ;; butterfly-patch-eaten is the number of food eaten by butterflies, , initially set to 0 create-bees bee-number ;; create a given number of bees ask bees [ set shape "bee" set bees-patch-eaten 0] ;; bees-patch-eaten is the number of food eaten by bees, initially set to 0 end to go search-food ;; implementation of different search strategies: straight random walk [for bees] and combination of straight random walk and spiral movement [for butterflies] end to search-food while [not all? patches [pcolor = green] ] [ if show-trail? [pendown] ;;pendown shows the trail taken by the butterflies and bees fly-around set ratio butterfly-patch-eaten / (bees-patch-eaten + 1 ) ;;calculate ratio of food consumption of butterflies to bees do-plots ] end to fly-around if breed = bees [ fd random-float 50 rt random-float 360 if pcolor = red [set pcolor green set bees-patch-eaten bees-patch-eaten + 1] ;; random-walk movement with straight lines for bees and eat patch at each stop ] if breed = butterflies [ fd random-float 50 lt random-float 360 if pcolor = red [set pcolor green set butterfly-patch-eaten butterfly-patch-eaten + 1 ;; random-walk movement with straight lines for butterflies and eat patch at each stop, then do spiral movement set step 0.25 repeat 50 [ fd step if pcolor = red [ set pcolor green set butterfly-patch-eaten butterfly-patch-eaten + 1 ] set step step * 1.03 rt 40] ;; increasing spiral movement ] ] end to do-plots set-current-plot "Totals" ;; which plot we want to use next set-current-plot-pen "bees" ;; which pen we want to use next plot bees-patch-eaten ;; what will be plotted by the current pen set-current-plot-pen "butterflies" ;; which pen we want to use next plot butterfly-patch-eaten ;; what will be plotted by the current pen end @#$#@#$#@ GRAPHICS-WINDOW 205 10 644 470 16 16 13.0 1 10 1 1 1 0 1 1 1 -16 16 -16 16 0 0 1 ticks CC-WINDOW 5 484 653 579 Command Center 0 BUTTON 12 14 75 47 NIL setup\n NIL 1 T OBSERVER NIL NIL NIL NIL SLIDER 9 98 203 131 patch-density patch-density 1 100 24 1 1 NIL HORIZONTAL BUTTON 13 61 76 94 NIL go NIL 1 T TURTLE NIL NIL NIL NIL SLIDER 9 134 203 167 butterfly-number butterfly-number 1 10 3 1 1 NIL HORIZONTAL SLIDER 9 171 203 204 bee-number bee-number 1 10 2 1 1 NIL HORIZONTAL PLOT 5 278 205 469 Totals time totals patch eaten 0.0 10.0 0.0 10.0 true true PENS "butterflies" 1.0 0 -10899396 true "bees" 1.0 0 -2674135 true MONITOR 146 227 204 272 NIL ratio 1 1 11 MONITOR 9 227 71 272 butterfly butterfly-patch-eaten 17 1 11 MONITOR 79 227 136 272 bees bees-patch-eaten 17 1 11 SWITCH 84 14 202 47 show-trail? show-trail? 1 1 -1000 CHOOSER 83 51 202 96 patch-distribution patch-distribution "random" "clustered" 1 TEXTBOX 10 207 160 225 Food Consumption: 11 105.0 0 @#$#@#$#@ WHAT IS IT? ----------- To survive in nature, flying insects have to look for food. They often do so without any cues and hence require a sort of strategy to maximise their food gain. It has been observed that insects can have different strategies (Bell, 1990) . Two of them are: 1. Straight movement for a random distance with occasional random turn 2. Straight movement for a random distance with occasional random turn associated with spiral movement at a reduced speed when food is located. In this model, two agents are set to employ the above two strategies. We are interested in monitoring the amount of food that can be consumed using each of the above strategies. Theory (Bell, 1990) suggests that the strategy that allows for spiral movement increases the chance of better food consumption since in reality food patches tend to occur close to each other. Using this model, we would like to view this prediction. Reference: (Bell, 1990) Bell, W.J. (1990). Searching behaviour: The behavioural ecology of finding resources. London: Chapman and Hall. HOW IT WORKS ------------ The model consists of two types of agents: butterflies and bees. Initially, the food consumption for each of them is set to 0 and they are created at the centre of the patch screen. Green patches imply that their is no food whereas red patches represent food that can be consumed by the agents. The two agents [butterflies and bees] employ two different strategies to search for food. The butterflies are set to move forward randomly for a dstance between 0 and 49 units in a random direction between 0 and 359 deg and then to check whether the patch they land on is a red patch. If so, the butteflies undergo a spiral movement for a given number of time, in step of 1 unit, each time verifying whether the patch they land on is a red patch [i.e. contains food]. After a given time [set inside the codes], the butterflies set off again in a random direction for a random distance. Each time, a butterfy agent lands on a red patch, a count is incremented to keep a record of the food consumed by the butterflies after which the red patch is turned into green. For the bees agents, a different strategy is employed. They are set to move randomly for a distance between 0 and 49 units only in a random direction between 0 and 360 degrees. They do not implement the spiral movement. Everytime, a bee agent stops, the patch color on which the bee lands is verified. If it is red, the food consumption count for the bee is incremented and the patch color is turned into green again. Then the bee starts off the same straight line, random direction movemnt to search for more food. The above process is repeated until their is no more red patched [i.e food] available. The plot and the monitors provide us with a visual representation of the number of food consumed by each agents [butterflies and bees]. The 'ratio' monitor is a ratio of [amount of food consumed by butterflies] to [the amount of food consumed by bees]. HOW TO USE IT ------------- 1. If a view of the trail taken by each agent is desired, set the 'trail?' switch to ON, otherwise leave it in the OFF position. 2. Select the number of agents desired [butterflies or bees] using the corresponsing slide bar. The number of agents that can be chosen range from 1 to 10. 3. Select the 'patch-distibution' desired. Selecting 'random' will randomly distribute the red patches, whereas selecting 'clusters' will distribute the patches randomly in clusters. 4. Use the slide bar for 'patch density' to set the amount of food patches [red patches] desired. A low density will imply less food patches. 5. Click on 'setup' to initialize the Model. 6. Click on 'go' to visualize and simulate the different food search strategies. The plot shows the amount of food consumed by each agent groups [butterflies and bees]. The 'butterfly' and 'bee' monitors display the amount of food consumed. The 'ratio' monitor display the ratio of [amount of food consumed by butterflies] to [the amount of food consumed by bees]. THINGS TO NOTICE ---------------- Different food search strategy allow agents to consume different amount of food. Given that the number of both agents is kept the same, it is observed that when agents undergo spiral movement, as in the case of butterflies, the amount of food consumed is always higher than when the agents undergo straight random movement, as illustrated by the bees. This is clearly visible by the plots and the ratio value which is always > 1. However, it is noticed that as the density of food patches is increased from low to high, both strategies seem to provide for similar amount of food consumption. This can be seen by the plots getting closer to each other and the ratio value getting closer to 1. Furthermore, it is noticed that when food patches are randomly distributed in clusters, search strategies involving spiral movements perform much better in getting more food than when agents undergo only random straight line movements. This difference in amount of food consumed is however less significant when the food patches are randomly scattered. THINGS TO TRY ------------- Set the number of agents for each of butterflies and bees to 1 and Set the 'trail?' button ON. Choose an average patch density, and select 'either random' or 'clusters' from the 'patch-distribution' menu. Set the speed of the simulation to low to see how the different path trails taken by each agents vary over time. EXTENDING THE MODEL ------------------- Other search patterns such as 'parallel movement', 'expanding square' and 'brownian motion' could be applied to see how the agents behave. Furthermore, in this model, the spiral size was kept constant as well as the distance covered by the agents. Sliders could be added to convert these constants into variables and see the net effect. Moreover, the model could be extended to accomodate other real life features like : death of an agent, energy of agent, repulsion among different breeds, presence of predators, birth of agents and so on NETLOGO FEATURES ---------------- Most Netlogo models use the 'move' command to move turtles around patches. For this model, we are interested in modeling different movement styles, namely random straight lines movements with occasional random turns [for bees] and random straight lines movements with occasional random turns associated with spiral movement [for butterflies]. RELATED MODELS -------------- Despite the difference in movement mechanism for the agents, the current model can be related to the Sheep-Wolves model in NetLogo Model Library CREDITS AND REFERENCES ---------------------- The model is hosted at Indiana University, School of Library and Information Science available at http://ella.slis.indiana.edu/~mchuttur/Netlogo4/search_strategy.html. This project is part of the requirements for a Summer Workshop in Agent Based Modeling Techniques taught at the School of library and Information Science, Indiana University, USA. The instructor was Dr Hamid Ekbia. This short course has led to a full semester course in Fall 08. Full syllabus and course details available at http://www.slis.indiana.edu/syllabi/fall_2008/S604_Ekbia.html. The search strategies modeled here have been documented in "Bell, W.J. (1990). Searching behaviour: The behavioural ecology of finding resources. London: Chapman and Hall. " @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 airplane true 0 Polygon -7500403 true true 150 0 135 15 120 60 120 105 15 165 15 195 120 180 135 240 105 270 120 285 150 270 180 285 210 270 165 240 180 180 285 195 285 165 180 105 180 60 165 15 arrow true 0 Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150 bee true 0 Polygon -1184463 true false 152 149 77 163 67 195 67 211 74 234 85 252 100 264 116 276 134 286 151 300 167 285 182 278 206 260 220 242 226 218 226 195 222 166 Polygon -16777216 true false 150 149 128 151 114 151 98 145 80 122 80 103 81 83 95 67 117 58 141 54 151 53 177 55 195 66 207 82 211 94 211 116 204 139 189 149 171 152 Polygon -7500403 true true 151 54 119 59 96 60 81 50 78 39 87 25 103 18 115 23 121 13 150 1 180 14 189 23 197 17 210 19 222 30 222 44 212 57 192 58 Polygon -16777216 true false 70 185 74 171 223 172 224 186 Polygon -16777216 true false 67 211 71 226 224 226 225 211 67 211 Polygon -16777216 true false 91 257 106 269 195 269 211 255 Line -1 false 144 100 70 87 Line -1 false 70 87 45 87 Line -1 false 45 86 26 97 Line -1 false 26 96 22 115 Line -1 false 22 115 25 130 Line -1 false 26 131 37 141 Line -1 false 37 141 55 144 Line -1 false 55 143 143 101 Line -1 false 141 100 227 138 Line -1 false 227 138 241 137 Line -1 false 241 137 249 129 Line -1 false 249 129 254 110 Line -1 false 253 108 248 97 Line -1 false 249 95 235 82 Line -1 false 235 82 144 100 box false 0 Polygon -7500403 true true 150 285 285 225 285 75 150 135 Polygon -7500403 true true 150 135 15 75 150 15 285 75 Polygon -7500403 true true 15 75 15 225 150 285 150 135 Line -16777216 false 150 285 150 135 Line -16777216 false 150 135 15 75 Line -16777216 false 150 135 285 75 bug true 0 Circle -7500403 true true 96 182 108 Circle -7500403 true true 110 127 80 Circle -7500403 true true 110 75 80 Line -7500403 true 150 100 80 30 Line -7500403 true 150 100 220 30 butterfly true 0 Polygon -7500403 true true 150 165 209 199 225 225 225 255 195 270 165 255 150 240 Polygon -7500403 true true 150 165 89 198 75 225 75 255 105 270 135 255 150 240 Polygon -7500403 true true 139 148 100 105 55 90 25 90 10 105 10 135 25 180 40 195 85 194 139 163 Polygon -7500403 true true 162 150 200 105 245 90 275 90 290 105 290 135 275 180 260 195 215 195 162 165 Polygon -16777216 true false 150 255 135 225 120 150 135 120 150 105 165 120 180 150 165 225 Circle -16777216 true false 135 90 30 Line -16777216 false 150 105 195 60 Line -16777216 false 150 105 105 60 car false 0 Polygon -7500403 true true 300 180 279 164 261 144 240 135 226 132 213 106 203 84 185 63 159 50 135 50 75 60 0 150 0 165 0 225 300 225 300 180 Circle -16777216 true false 180 180 90 Circle -16777216 true false 30 180 90 Polygon -16777216 true false 162 80 132 78 134 135 209 135 194 105 189 96 180 89 Circle -7500403 true true 47 195 58 Circle -7500403 true true 195 195 58 circle false 0 Circle -7500403 true true 0 0 300 circle 2 false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 cow false 0 Polygon -7500403 true true 200 193 197 249 179 249 177 196 166 187 140 189 93 191 78 179 72 211 49 209 48 181 37 149 25 120 25 89 45 72 103 84 179 75 198 76 252 64 272 81 293 103 285 121 255 121 242 118 224 167 Polygon -7500403 true true 73 210 86 251 62 249 48 208 Polygon -7500403 true true 25 114 16 195 9 204 23 213 25 200 39 123 cylinder false 0 Circle -7500403 true true 0 0 300 dot false 0 Circle -7500403 true true 90 90 120 face happy false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 255 90 239 62 213 47 191 67 179 90 203 109 218 150 225 192 218 210 203 227 181 251 194 236 217 212 240 face neutral false 0 Circle -7500403 true true 8 7 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Rectangle -16777216 true false 60 195 240 225 face sad false 0 Circle -7500403 true true 8 8 285 Circle -16777216 true false 60 75 60 Circle -16777216 true false 180 75 60 Polygon -16777216 true false 150 168 90 184 62 210 47 232 67 244 90 220 109 205 150 198 192 205 210 220 227 242 251 229 236 206 212 183 fish false 0 Polygon -1 true false 44 131 21 87 15 86 0 120 15 150 0 180 13 214 20 212 45 166 Polygon -1 true false 135 195 119 235 95 218 76 210 46 204 60 165 Polygon -1 true false 75 45 83 77 71 103 86 114 166 78 135 60 Polygon -7500403 true true 30 136 151 77 226 81 280 119 292 146 292 160 287 170 270 195 195 210 151 212 30 166 Circle -16777216 true false 215 106 30 flag false 0 Rectangle -7500403 true true 60 15 75 300 Polygon -7500403 true true 90 150 270 90 90 30 Line -7500403 true 75 135 90 135 Line -7500403 true 75 45 90 45 flower false 0 Polygon -10899396 true false 135 120 165 165 180 210 180 240 150 300 165 300 195 240 195 195 165 135 Circle -7500403 true true 85 132 38 Circle -7500403 true true 130 147 38 Circle -7500403 true true 192 85 38 Circle -7500403 true true 85 40 38 Circle -7500403 true true 177 40 38 Circle -7500403 true true 177 132 38 Circle -7500403 true true 70 85 38 Circle -7500403 true true 130 25 38 Circle -7500403 true true 96 51 108 Circle -16777216 true false 113 68 74 Polygon -10899396 true false 189 233 219 188 249 173 279 188 234 218 Polygon -10899396 true false 180 255 150 210 105 210 75 240 135 240 house false 0 Rectangle -7500403 true true 45 120 255 285 Rectangle -16777216 true false 120 210 180 285 Polygon -7500403 true true 15 120 150 15 285 120 Line -16777216 false 30 120 270 120 leaf false 0 Polygon -7500403 true true 150 210 135 195 120 210 60 210 30 195 60 180 60 165 15 135 30 120 15 105 40 104 45 90 60 90 90 105 105 120 120 120 105 60 120 60 135 30 150 15 165 30 180 60 195 60 180 120 195 120 210 105 240 90 255 90 263 104 285 105 270 120 285 135 240 165 240 180 270 195 240 210 180 210 165 195 Polygon -7500403 true true 135 195 135 240 120 255 105 255 105 285 135 285 165 240 165 195 line true 0 Line -7500403 true 150 0 150 300 line half true 0 Line -7500403 true 150 0 150 150 pentagon false 0 Polygon -7500403 true true 150 15 15 120 60 285 240 285 285 120 person false 0 Circle -7500403 true true 110 5 80 Polygon -7500403 true true 105 90 120 195 90 285 105 300 135 300 150 225 165 300 195 300 210 285 180 195 195 90 Rectangle -7500403 true true 127 79 172 94 Polygon -7500403 true true 195 90 240 150 225 180 165 105 Polygon -7500403 true true 105 90 60 150 75 180 135 105 plant false 0 Rectangle -7500403 true true 135 90 165 300 Polygon -7500403 true true 135 255 90 210 45 195 75 255 135 285 Polygon -7500403 true true 165 255 210 210 255 195 225 255 165 285 Polygon -7500403 true true 135 180 90 135 45 120 75 180 135 210 Polygon -7500403 true true 165 180 165 210 225 180 255 120 210 135 Polygon -7500403 true true 135 105 90 60 45 45 75 105 135 135 Polygon -7500403 true true 165 105 165 135 225 105 255 45 210 60 Polygon -7500403 true true 135 90 120 45 150 15 180 45 165 90 square false 0 Rectangle -7500403 true true 30 30 270 270 square 2 false 0 Rectangle -7500403 true true 30 30 270 270 Rectangle -16777216 true false 60 60 240 240 star false 0 Polygon -7500403 true true 151 1 185 108 298 108 207 175 242 282 151 216 59 282 94 175 3 108 116 108 target false 0 Circle -7500403 true true 0 0 300 Circle -16777216 true false 30 30 240 Circle -7500403 true true 60 60 180 Circle -16777216 true false 90 90 120 Circle -7500403 true true 120 120 60 tree false 0 Circle -7500403 true true 118 3 94 Rectangle -6459832 true false 120 195 180 300 Circle -7500403 true true 65 21 108 Circle -7500403 true true 116 41 127 Circle -7500403 true true 45 90 120 Circle -7500403 true true 104 74 152 triangle false 0 Polygon -7500403 true true 150 30 15 255 285 255 triangle 2 false 0 Polygon -7500403 true true 150 30 15 255 285 255 Polygon -16777216 true false 151 99 225 223 75 224 truck false 0 Rectangle -7500403 true true 4 45 195 187 Polygon -7500403 true true 296 193 296 150 259 134 244 104 208 104 207 194 Rectangle -1 true false 195 60 195 105 Polygon -16777216 true false 238 112 252 141 219 141 218 112 Circle -16777216 true false 234 174 42 Rectangle -7500403 true true 181 185 214 194 Circle -16777216 true false 144 174 42 Circle -16777216 true false 24 174 42 Circle -7500403 false true 24 174 42 Circle -7500403 false true 144 174 42 Circle -7500403 false true 234 174 42 turtle true 0 Polygon -10899396 true false 215 204 240 233 246 254 228 266 215 252 193 210 Polygon -10899396 true false 195 90 225 75 245 75 260 89 269 108 261 124 240 105 225 105 210 105 Polygon -10899396 true false 105 90 75 75 55 75 40 89 31 108 39 124 60 105 75 105 90 105 Polygon -10899396 true false 132 85 134 64 107 51 108 17 150 2 192 18 192 52 169 65 172 87 Polygon -10899396 true false 85 204 60 233 54 254 72 266 85 252 107 210 Polygon -7500403 true true 119 75 179 75 209 101 224 135 220 225 175 261 128 261 81 224 74 135 88 99 wheel false 0 Circle -7500403 true true 3 3 294 Circle -16777216 true false 30 30 240 Line -7500403 true 150 285 150 15 Line -7500403 true 15 150 285 150 Circle -7500403 true true 120 120 60 Line -7500403 true 216 40 79 269 Line -7500403 true 40 84 269 221 Line -7500403 true 40 216 269 79 Line -7500403 true 84 40 221 269 x false 0 Polygon -7500403 true true 270 75 225 30 30 225 75 270 Polygon -7500403 true true 30 75 75 30 270 225 225 270 @#$#@#$#@ NetLogo 4.0.4 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@