diff --git a/Source/main.nlogo b/Source/main.nlogo index 56d156b..2d55c0c 100644 --- a/Source/main.nlogo +++ b/Source/main.nlogo @@ -123,7 +123,7 @@ travel-cost travel-cost 0 10 -2 +0.4 0.1 1 NIL @@ -240,7 +240,7 @@ season-uncertainty season-uncertainty 0 20 -20 +4.9 0.1 1 NIL @@ -255,7 +255,7 @@ d-max d-max 0 30 -30 +12 1 1 NIL diff --git a/Source/vmodel.nls b/Source/vmodel.nls index 5374754..4cfcb93 100644 --- a/Source/vmodel.nls +++ b/Source/vmodel.nls @@ -16,6 +16,7 @@ to setup-spots end to setup-beekeepers + let temp 1 file-open "beekeepers-initial-location.txt" while [not file-at-end?] [ @@ -25,7 +26,8 @@ to setup-beekeepers [ set shape "person" set size 1 move-to one-of centroids-on patches with [ county-name = location-bk ] - if trace-on [ set color red pd ] ] + if trace-on [ set color temp pd ] ] + set temp temp + 3 ] file-close end