globals [ day ; Simulation day, starting at 1 hour ; Hour of the day, 0 to 23 time-to-horizon ; duration of sliding time horizon phase ; Diurnal phase, either "day" or "night" ; fish-concentration ; perceived concentration of predatory fish -- moved to slider growth-p ; growth parameter that depends on food scenario attenuation ; light parameter that depends on food scenario ] turtles-own ; daphnia variables [ daphnia-mass ; somatic mass in ug daphnia-repro-mass ; mass allocated to reproduction, ug daphnia-offspring ; total number of offspring, as a fitness indicator alpha ; energy devoted to offspring daphnia-survival ; cumulative survival probability, as a fitness indicator patch-last-phase ; the patch last occupied during previous phase alpha-last-phase ; the value of alpha last selected during previous phase ] patches-own [ depth ; depth at the center of the patch, in m light-in-day ; daytime light intensity at the center of patch, umol/m2/s light-in-night ; light intensity at the center of patch at night, umol/m2/s temperature ; temperature, C destination-patches ; agentset of nearby patches a daphnia can move to ] to setup ca reset-ticks ; Set time variables set day 1 set hour 11 ; initialized to one hour less than first time step set phase "day" set time-to-horizon 240 ; sliding time horizon ; Set global parameters ; set fish-concentration 0.01 moved to slider set growth-p ifelse-value (food-scenario = "high") [0.047][0.037] set attenuation ifelse-value (food-scenario = "high") [-2.6][-1.28] ; Set patch variables ask patches [ set destination-patches patches in-radius 2 set depth -0.1 * (pycor - 1) ; depth ranges 0.1 to 1.0 m as pycor ranges 0-9 set plabel (precision depth 1) ifelse depth < 0.15 [set temperature 20.2] [ifelse depth < 0.25 [set temperature 19.6] [ifelse depth < 0.35 [set temperature 18.8] [ifelse depth < 0.45 [set temperature 16.2] [ifelse depth < 0.55 [set temperature 13.0] [ifelse depth < 0.65 [set temperature 12.0] [ifelse depth < 0.75 [set temperature 11.3] [ifelse depth < 0.85 [set temperature 10.9] [ifelse depth < 0.95 [set temperature 10.2] [ifelse depth < 1.05 [set temperature 10.0] [error (word "Temperature not set for patch " self)] ] ] ] ] ] ] ] ] ] ] ; initialize patch light levels during day and night let surface-light-day 17.9 let surface-light-night 0.1 ask patches [ set light-in-day surface-light-day * exp (depth * attenuation) set light-in-night surface-light-night * exp (depth * attenuation) ] ; set current patch light level set-light ; Create the daphnia crt 1 [ set daphnia-mass 21.5 ; somatic body mass set daphnia-repro-mass 0 ; mass allocated to reproduction, ug set daphnia-offspring 0 ; total number of offspring set daphnia-survival 1.0 ; cumulative survival probability, as a fitness indicator set size 0.5 ; display size move-into min-one-of patches [depth] ; put daphnia in top patch set patch-last-phase patch-here set alpha-last-phase 0 ; an arbitrary value ] ; set up the output file if output-to-file? [ carefully [file-delete "VertMigrationOut.csv"] [] file-open "VertMigrationOut.csv" file-print (word "Hour,Mean depth,Mean alpha,fish concentration = " fish-concentration) file-close ] end to go if ticks = 97 [ stop ] tick update-time set-light ask turtles [ select-habitat ] ask turtles [ grow ] ; ask turtles [ reproduce ] OFF for this version ; ask turtles ; this is the predation survival action OFF for this version ; [ ; if random-float 1.0 > (survival-with daphnia-mass) [ die ] ; ] update-outputs end to update-time ; a global procedure to keep track of hours and days ; and in v. 3 the diel phase ; this procedure also sets parameters that depend on food scenario so they can ; be changed during a simulation set hour hour + 1 if hour > 23 [ set hour 0 set day day + 1 ] if hour = 4 ; switch from night to day [ set phase "day" ask turtles [ set patch-last-phase patch-here set alpha-last-phase alpha ] ] if hour = 20 ; switch from day to night [ set phase "night" ask turtles [ set patch-last-phase patch-here set alpha-last-phase alpha ] ] set growth-p ifelse-value (food-scenario = "high") [0.047][0.037] set attenuation ifelse-value (food-scenario = "high") [-2.6][-1.28] end to set-light ; in v. 3, an observer procedure to color patches by the light level ; according to current phase ask patches [ ifelse phase = "day" [ set pcolor scale-color sky light-in-day 0 18 ] [ ifelse phase = "night" [ set pcolor scale-color sky light-in-night 0 18 ] [ error (word "In set-light, illegal value of phase: " phase) ] ] ] end to select-habitat ; a turtle procedure representing how daphnia move up or down ; and how they select their life history variable alpha let next-alpha 0.0 let best-alpha 0.0 let best-patch patch-here let best-fitness -999 ; temporary test output ; file-open "select-habitat-test.csv" ; file-print (word "start at depth: " depth) ; loop over all potential values of alpha while [next-alpha <= 1.0] [ ask destination-patches ; loop over all potential destinations ; because 'ask' randomizes the patches, any ties are broken randomly [ let fitness-here fitness-for myself next-alpha if fitness-here > best-fitness [ set best-fitness fitness-here set best-alpha next-alpha set best-patch self ] ; file-print (word depth "," next-alpha "," fitness-here "," best-fitness "," best-alpha) ] set next-alpha next-alpha + 0.2 ] ; file-close ; now move to best patch move-into best-patch set alpha best-alpha end to-report fitness-for [ a-daphnia an-alpha ] ; a patch procedure to calc. fitness ; in this vers. 3, daphnia project their offspring and survival until the time horizon ; considering whether each future hour is day or night ; initialize temporary variables let other-patch [patch-last-phase] of a-daphnia ; patched used by daphnia in opposite phase ; temporary variables that are updated for each predicted hour let p-hour hour ; future hour let p-phase phase ; future phase let survival 1.0 ; expected survival until time horizon let mass [daphnia-mass] of a-daphnia ; expected mass let repro-mass [daphnia-repro-mass] of a-daphnia ; expected reproductive mass let offspring [daphnia-offspring] of a-daphnia ; expected total offspring at time horizon ;file-open "fitness-test.csv" ; temporary test output -- *very* large output file ;file-print (word "Phase:," phase ",Time-to-horizon:," time-to-horizon ",Starting mass:," mass ",Repro-mass:," repro-mass ",Offspring:," offspring ",Alpha:," an-alpha) ;file-print "p-hour,p-phase,p-growth,p-survival,mass,repro-mass,offspring,survival" repeat time-to-horizon [ ; assume alpha is always 1.0 if daphnia has reached maximum size if mass >= 400 [ set an-alpha 1.0 ] ; get growth and survival for predicted hour, getting values for current ; patch or patch for opposite phase let p-growth ifelse-value (p-phase = phase) [ growth-with mass ] ; use current patch [ [growth-with mass] of other-patch ] ; use patch from opposite phase let p-survival ifelse-value (p-phase = phase) [ survival-with mass p-phase ] ; use current patch [ [survival-with mass p-phase] of other-patch] ; use patch from opposite phase ; calculate what the new mass would be set mass mass + (p-growth * (1 - an-alpha)) set repro-mass repro-mass + (p-growth * an-alpha) if mass > 400 [ set mass 400 ] ; then calculate survival and reproduction for one more time step set survival survival * p-survival if repro-mass >= 6 [ set offspring offspring + floor (repro-mass / 6) set repro-mass remainder repro-mass 6 ] ; temporary test output - should be before update time vars. ;file-print (word p-hour "," p-phase "," p-growth "," p-survival "," mass "," repro-mass "," offspring "," survival) ; update time variables set p-hour ifelse-value (p-hour < 23) [p-hour + 1] [ 0 ] set p-phase ifelse-value (p-hour > 3.5 and p-hour < 19.5 ) [ "day" ] [ "night" ] ] ;file-close report survival * offspring end to-report survival-with [a-daphnia-mass a-phase] ; a patch procedure returning a daphnia's *hourly* survival probability ; first some defensive programming if a-daphnia-mass < 6.0 or a-daphnia-mass > 400 [ error (word "Illegal mass value of " a-daphnia-mass) ] let light ifelse-value (a-phase = "day") [ light-in-day ] [ light-in-night ] let zooplankton-survival 1.0 - (0.613 * (a-daphnia-mass ^ -0.24)) let daphnia-area 0.0001 * (a-daphnia-mass ^ 0.6666667) let fish-survival exp (-2600 * light * fish-concentration * daphnia-area) ; combine survival of zooplankton and fish, and convert from daily to hourly report (zooplankton-survival * fish-survival) ^ (1 / 24) end to-report growth-with [a-daphnia-mass] ; a patch procedure returning ; a daphnia's growth during a one-hour time step ; first some defensive programming if a-daphnia-mass < 6.0 or a-daphnia-mass > 400 [ error (word "Illegal mass value of " a-daphnia-mass) ] report a-daphnia-mass * (exp ((growth-p * temperature - 0.31) / 24) - 1) end to grow ; a turtle procedure to update daphnia mass and reproductive mass ; cumulative survival is also updated here ; alpha is set to 1.0 when daphnia reaches max size if daphnia-mass >= 400 [ set alpha 1.0 ] let growth growth-with daphnia-mass set daphnia-repro-mass daphnia-repro-mass + (alpha * growth) set daphnia-mass daphnia-mass + ((1 - alpha) * growth) if daphnia-mass > 400 [ set daphnia-mass 400 ] set daphnia-survival daphnia-survival * ([survival-with ([daphnia-mass] of myself) phase] of patch-here) end to reproduce ; a turtle procedure to update number of offspring and reproductive mass if daphnia-repro-mass >= 6 [ set daphnia-offspring daphnia-offspring + floor (daphnia-repro-mass / 6) set daphnia-repro-mass remainder daphnia-repro-mass 6 ] end to move-into [ a-patch ] ; a turtle procedure that puts turtle at a random location in the patch ; only to make all daphnia visible on display setxy ([pxcor] of a-patch - 0.5 + (random-float 1.0)) ([pycor] of a-patch - 0.5 + (random-float 1.0)) end to update-outputs ; a global procedure set-current-plot "alpha values" histogram [alpha] of turtles if output-to-file? and any? turtles [ file-open "VertMigrationOut.csv" file-print (word ticks "," mean [depth] of turtles "," mean [alpha] of turtles) file-close ] end @#$#@#$#@ GRAPHICS-WINDOW 450 10 498 419 -1 -1 40.0 1 10 1 1 1 0 0 0 1 0 0 -9 0 1 1 1 ticks 30.0 BUTTON 32 19 95 52 NIL setup NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 32 60 95 93 NIL go T 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 33 101 96 134 step go NIL 1 T OBSERVER NIL NIL NIL NIL 1 MONITOR 130 24 218 69 day and hour (word day \" \" hour) 17 1 11 PLOT 34 247 235 416 alpha values alpha number of daphnia 0.0 1.4 0.0 10.0 true false "" "" PENS "default" 0.2 1 -16777216 false "" "" SLIDER 33 140 210 173 fish-concentration fish-concentration 0 .1 0.01 .001 1 fish/L HORIZONTAL SWITCH 179 183 314 216 output-to-file? output-to-file? 1 1 -1000 CHOOSER 33 181 171 226 food-scenario food-scenario "high" "low" 0 @#$#@#$#@ # Daphnia Vertical Model This code is provided to support the manuscript "State- and prediction-based theory for adaptive behaviour in individual-based population models". It implements the third version of the daphnia vertical migration model as described in Section 5.5. Patches and alpha values are selected using a fitness measure that considers the difference between day and night. The code was developed in NetLogo version 6.0.2 but should work in subsequent versions. The model is controlled and observed from the "Interface" tab. The program statements are on the "Code" tab; click the "Procedures" button to see a list of all the procedures (subroutines) in the code and go to one. This version simulates only 1 daphnia, with no mortality and no reproduction. Only the first 96 hours are simulated. ## Executing the model from the Interface 1. Click on the "setup" button to initialize the model. (This executes the "setup" procedure.) 2. Click on the "go" button to execute a complete simulation. Use the speed slider at the top of the Interface to slow down execution so it can be observed. (This button executes the "go" procedure, the model's schedule, repeatedly for the selected number of time steps.) 3. The "step" button executes just one time step each time it is clicked. 4. The above steps can be repeated as desired. ## Interface elements The Interface provides the following displays and controls, in addition to the setup, go, and step buttons described above. All the control sliders and switches must be set *before* using "setup" to initialize a model run. * The "view" (large rectangle that says "Ticks:" at the top) displays (after "setup" is executed) the 10 habitat patches and the daphnia in each. You can right-click on a habitat patch or daphnia to open an "inspector" that displays all state variables. * The "fish-concentration" slider controls the level of predation risk sensed by the daphnia; it can be changed before or during a simulation. * The "food-scenario" selector lets the user choose between the high and low food scenarios. * The "Alpha values" plot is a histogram of the current alpha values of the daphnia. * When the "file-output?" switch is on, an output file is written each time the model is run. The file is called "VertMigrationOut.csv" and is overwritten each time the model runs. The file reports the mean depth and alpha values of all daphnia at the end of each time step. (If the model generates an error statement when "go" or "step" are clicked on, it is often because this output file was left open in another program.) **This option is not available in the web version of the model.** ## Version control Last modified 15 June 2018 SF Railsback @#$#@#$#@ 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 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 sheep false 15 Circle -1 true true 203 65 88 Circle -1 true true 70 65 162 Circle -1 true true 150 105 120 Polygon -7500403 true false 218 120 240 165 255 165 278 120 Circle -7500403 true false 214 72 67 Rectangle -1 true true 164 223 179 298 Polygon -1 true true 45 285 30 285 30 240 15 195 45 210 Circle -1 true true 3 83 150 Rectangle -1 true true 65 221 80 296 Polygon -1 true true 195 285 210 285 210 240 240 210 195 210 Polygon -7500403 true false 276 85 285 105 302 99 294 83 Polygon -7500403 true false 219 85 210 105 193 99 201 83 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 wolf false 0 Polygon -16777216 true false 253 133 245 131 245 133 Polygon -7500403 true true 2 194 13 197 30 191 38 193 38 205 20 226 20 257 27 265 38 266 40 260 31 253 31 230 60 206 68 198 75 209 66 228 65 243 82 261 84 268 100 267 103 261 77 239 79 231 100 207 98 196 119 201 143 202 160 195 166 210 172 213 173 238 167 251 160 248 154 265 169 264 178 247 186 240 198 260 200 271 217 271 219 262 207 258 195 230 192 198 210 184 227 164 242 144 259 145 284 151 277 141 293 140 299 134 297 127 273 119 270 105 Polygon -7500403 true true -1 195 14 180 36 166 40 153 53 140 82 131 134 133 159 126 188 115 227 108 236 102 238 98 268 86 269 92 281 87 269 103 269 113 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 6.0.2 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ setup go day hour mean [depth] of turtles mean [alpha] of turtles mean [daphnia-mass] of turtles mean [daphnia-offspring] of turtles mean [daphnia-survival] of turtles @#$#@#$#@ @#$#@#$#@ 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 @#$#@#$#@ 0 @#$#@#$#@