Hello. I'm a 4th year physicist at the University of Leicester and very happy to see such enthusiasm for agent modelling! I started using NetLogo about a week...
... iainweaver192> Hello. I'm a 4th year physicist at the University of iainweaver192> Leicester and very happy to see such enthusiasm for iainweaver192> agent...
Hi everyone, I have recently started using netlogo and I think it's great. I am trying to assign "memory" to the turtles, does anybody have an idea? The...
I would first make some new local variables for the things you want to remember. Then during the update routine for each cycle of the simulation, do some...
Tulu, This is easily done. The first step is declaring that turtles (or a specific breed of turtles) "own" additional attributes (variables), beyond those that...
I can't think of anything off the top of my head but this is an interesting problem. My gut instinct would be a series of IF THEN ELSE statements though there...
hello everyone, I am quite new at Netlogo and now I'm trying to make a turtle reach a goal just facing it and go forward, however when it comes in front a big...
Hello I have just explored the features of Netlogo latest version. I would appreciate if some one can give my basic questions that would be much helpful to use...
I am pretty new to Netlogo and I am having some troubles. I am trying to make it so the turtles will only pick from 13 of the base colors (red, orange, green...
To pick one of several things in a list, use one-of: let $color one-of [red orange green] Note that building a list with brackets requires the elements to be ...
You could put the 13 color choices in a list, and then select from the list using "item" and "random 14" Also, the Netlogo-users group is much more active than...
109
James Steiner
netlogo@...
Feb 23, 2010 5:50 pm
Hi! There two ways that spring to mind. One mathematical. The other list-based. Here is the mathmatical way: set color 5 + 10 * random 14 ; including gray set...
Is it possible to make patches operate with imported raster pcolors? I can easily make turtles work with imported files such as the Collision Avoidance...
111
James Steiner
netlogo@...
Apr 12, 2010 2:33 pm
Yes this is possible...easy even. Import-pcolors scales the image. This may make some of your patches gray. For best results, the image and the patches...
I am pretty new to Netlogo. I have a model that I want students to play around. I would like to capture all interactions of the students (parameter setting,...
Dear Members, I'm new to this application. I want to simulate a Cellular Automata model using this. Can any one help me to define the patch sizes and number of...
Thanks, Seth Tisue. I already tried the NetLogo logging application. This is a stand-alone client application. I would like to run an experiment by embedding...
Hello all, I have 4 sublist in one big list and want to get random one element from each sublists let say list [ [ 1 2 3 4] [5 6 7 8 9][ 10 11 12 13 14 15 16]...
... Greetings, This is quite easy to do with 'map'. to test let $list [ [ 1 2 3 4] [5 6 7 8 9][ 10 11 12 13 14 15 16] [17 18 19 20] ] print map [one-of ?]...
120
James Steiner
netlogo@...
Jul 12, 2010 2:32 pm
HELP! MAP! SAVE US! ;; tah dah!! let new-list MAP [ one-of ? ] old-list Ahhhh. MAP is an amazing and powerful reporter when working with lists. You can read...
Does anyone know of an introductory programing text that introduces simulation and NetLogo? I know of "Simulation for the Social Scientist", but this text is...
In the party model I am trying to make a maximum size of group members for the groups. I was wondering if anybody knows the extension to put in to achieve...
Hello to everyone! I am running a variation of the Ants Model of NetLogo. I want to have one food pile, the nest, and one "obstacle" (i.e. a circular area...
I would like to let interested people know that Volker Grimm and I will conduct a one-week class on teaching agent-based modeling with NetLogo. The class is...
Hello, I am going to give an one hour introduction to NetLogo. I want to explain the NetLogo basics, a bit of the NetLogo programming language and give some...
I`vw just started to study it and i need help. my question is : i created a button and slider and wrote this code breed [sun] breed [rays] to go ca ask patches...
Dear friend, good material is provided in Gabriel Wurzer's channel in youtube: http://www.youtube.com/user/gabrielwurzer. Aristotelis Gkiolmas, Athens, Greece....