NetLogo is a multi-agent programmable modeling environment.

learn more… | top users | synonyms

0
votes
0answers
19 views

Netlogo wind cellular automata

I am building a fire model in netlogo for fire spread. I have gone through quite a few papers in regards to fire spread in the direction of the wind. Based on what I have read, when the wind-direction ...
1
vote
0answers
10 views

System Dynamic Modeler in Netlogo

I m using System Dynamic Modeler tool in NetLogo to create an aggregate model. My model is about epidemic disease spreading in small-world network. I have a set of differential equations for SIR ...
-1
votes
0answers
42 views

how to program a condition for passing a ball to nearest friend using only one ball in netlogo

hye..i newbie in netlogo program..i have a project to submit..My target is to create the program which only one agent can set one-of it neighbors to red color. I had already try using the id-number ...
0
votes
1answer
29 views

Agent-Modelling System on GAE

I am starting on a project to simulate agents on the google app engine. I plan to have a control panel like so: My question is during simulation, the server has to process tasks again and again and ...
1
vote
0answers
57 views

Ask all turtles but apply to every turtle differently - NetLogo

I'm using net logo and I want to ask all turtles something but apply it to every turtle individually: to setup-t ask turtles [ if color = white [ set t 99 ] if color = red [ set t ...
0
votes
1answer
35 views

Weighted directed graph in netlogo

I want to create a directed graph with weights in netlogo. I searched documentions but I couldn't find a way to put weights on my links. Here is my code: to setup clear-all ;; ...
0
votes
1answer
42 views

How to change plot background color in NetLogo

Is there a way to change the background color of a plot window in NetLogo? (I want turtles to be black and white, and I'd like plot pens for statistics on the two kinds of turtles to match their ...
0
votes
1answer
40 views

How can I compute the distance between two patches?

I need to find the minimum distance between patches in front of my agent to a certain patch (goal), in order to select the patch that would create the most optimal (shortest) path. The primitive ...
0
votes
1answer
66 views

Count neighbors turtles of a specific patch and report true or false

Hello i will try to be quick I have a room with a fire that expands , and i have two exits , all i want to do is say to agents that if a door is blocked by fire then to go to the other one. i came up ...
1
vote
1answer
27 views

What is the difference between face and towards?

I have used face in NetLogo without any problems, but isn't towards just the same? (in the context of an agent facing towards the direction of a patch/agent) towards towards agent Reports the ...
3
votes
2answers
138 views

Netlogo, creating obstacle avoidance algorithm

I am simulating pedestrian motion in NetLogo, and am having trouble creating an obstacle avoidance algorithm from scratch. There are algorithms online but they are not suited for moving obstacles ...
0
votes
1answer
15 views

Clearing File Data before writing in Netlogo

I am trying to output some data in a file and I can output the data in file easily. But when I output data second time in file, it gets appended with the previous data. What I want to do is to clear ...
1
vote
2answers
49 views

NetLogo permission oddities

I'm having issues with my netlogo program. Code follows: globals[ growth-param money-size-ratio ] turtles-own[ location tsize bbalance ] to setup ca reset-ticks ask patches[set pcolor ...
0
votes
0answers
53 views

how to calculate cumulative average of infected turtles in netlogo

im trying to calculate cumulative average of infected turtles in netlogo i dont know what code exactly i should use and where to put it in the netlogo code i did some tests and try to calculte the ...
0
votes
1answer
26 views

Getting the count of a mode of a list

I am trying to get the value of a mode of a list. I know I can get the mode of a list by using the mode operator in a way such as "show modes [1 2 2 2 2 3 4]" which will report 2 as the mode, but how ...
0
votes
1answer
46 views

Variable specific to turtle and patch

In NetLogo, I can create turtle-specific variables with turtles-own, and patch-specific variables with patches-own. But how can I create variables that are specific to a turtle AND a patch? ...
0
votes
1answer
38 views

Netlogo: Iterating Over Lists

I would like to use this part of code in NetLogo: foreach [2 4 6] [ crt ? show "created " + ? + " turtles" ] It comes from documentation – Iterating over lists. But when I run code, this ...
0
votes
1answer
28 views

Trying to check color patch ahead and make decision based on patch color of patch ahead

I am trying to have a turtle check the color of the patch ahead and make a decision on where to move. If the patch ahead isn't white then the turtle to rotate left or right and moves. I am getting an ...
0
votes
1answer
38 views

Placing turtles on certain color patches

I am trying to place turtles of type beacon (a type I made) on all patches that are Red in Netlogo with one beacon placed per red patch. Here is my current code, but I can't figure out how to get the ...
1
vote
1answer
38 views

Check surrounding patch colors in Netlogo

How would I go about checking the patch colors of the patches that are above, below, to the left and to the right of each patch? I know I would embed it in a ask patches [ insert code here ] ...
0
votes
1answer
33 views

Netlogo Agents error

I am implementing an evacuation simulation of a lecture hall.And i have two types of students those who sit on tables and extra students who allocated randomly inside the class.So i created two ...
0
votes
0answers
87 views

Agentset differences with n-of turtles list in Netlogo

I came across one of the question that was already answered in the stackoverflow, however my problem seems slightly different. I try to distribute N% turtles in a specific patches list (let's call it ...
0
votes
1answer
83 views

Extracting subgraphs (cliques) within graph on Netlogo

I have a netlogo question. I have some graph structures of nodes connected with (undirected) links. I need to figure out which is the smallest subgraph within one of these structures. Basically ...
0
votes
2answers
50 views

Dividion by zero while trying to plot in Netlogo

I'm fairly new to Netlogo and I'm trying to do a plot for my model. I want to plot the average of links with respect to turtles (count links) / (count turtles). When I click on setup for the model ...
0
votes
2answers
150 views

Netlogo code problems, turtles can't find patch-at 0,0

I am trying to create a simulation along the same sort of lines as this video (1:29 - 1:45) https://www.youtube.com/watch?v=pqBSNAOsMDc I thought a simple way to achieve an infinite circling ...
0
votes
1answer
102 views

Adding the number of link-neighbors in Netlogo

I want to add the number of link-neighbors of a particular color a turtle in Netlogo. I did this on the to go procedure: ask one-of turtles [ set num-vecinos sum [count turtles] of link-neighbors ...
0
votes
1answer
35 views

Trying to get factions to arrange in segments? NetLogo code advice

I've made a model that aranges factions (turtles in different colours) in a circle. At the moment they arrange randomly, was wondering if someone could help me arrange them so, for example, red ...
0
votes
1answer
78 views

Netlogo coding help - split turtles into factions, follow above faction, avoid below

I'm new to netlogo and have been combining the codes from a faction model and follow/avoid model. I've split my turtles into factions ( displayed as different colours) and I'm trying to get them to ...
0
votes
1answer
80 views

Sublime Text 2 (or other) syntax highlighter for NetLogo

Does anyone know of a syntax highlighter, ideally for Sublime Text 2, for NetLogo? I'd rather not write my code directly in NetLogo and prefer to use editors I'm more used to, but I can't seem to ...
0
votes
1answer
59 views

Is it possible to create classes in NetLogo?

I searched this on the internet, but could not find any answer. I want to create classes in NetLogo, but as far as it seems, the only way to do so is to create an extension using Java. Is is ...
0
votes
2answers
68 views

Comparing two agent variables

I am currently making a simulation (for homework) using genetic algorithms. What I want to do is compare the fitness of agents on a specific patch and the one with the lowest fitness will die. I have ...
2
votes
1answer
276 views

MATLAB: Data points not smooth enough, use Excel?

I'm currently working on my undergraduate thesis regarding Traffic Simulation via Netlogo. My simulation involves the drive cycles of vehicles after some set time. I export the data (in the form of ...
1
vote
1answer
100 views

NetLogo AgentSet substraction

I got the error message: MEMBER? expected input to be a string or list or agentset but got the number 0 instead. during running following NetLogo Code: to find-flockmates ;; turtle reporter ;; ...
0
votes
1answer
69 views

NetLogo dynamic Manhattan distance

I am trying to implement some form of AI into my Net Logo game. I am planning on calculating the Manhattan distance from a zombie turtle to a human turtle. So far I have managed to calculate the ...
2
votes
3answers
109 views

How to recognise numbers in images using Netlogo programming sudoku

Hi everyone i have a problem of being able to identify numnbers in an image using netlogo programming, Please any ideas or techniques on how to be able to identify numbers in a cell? I am making a ...
1
vote
1answer
97 views

How do I count turtle above, below, and diagonal using netlogo?

I am working on creating a connect four game using netlogo for an assignment. I am having trouble keeping track of how many reds or blues are in a row. (determining the winner) This is pretty much ...
0
votes
2answers
71 views

Netlogo programming: How to code a “repulsive” motion?

I am running out of fuel thinking how to code a "repulsive" motion in netlogo. Here it is: We are trying to set up a model in which sheepdog herd a group of sheep. When the dog is close to the sheep ...
0
votes
1answer
105 views

netlogo calculate distance from selected point to all directions

I have looked here: Example code Description NetLogo project with vector map data I am using vector map where is roads. Then i draw links where road is. In image where starting point is, that is ...
1
vote
1answer
281 views

simple NetLogo setxy for list of coordinates

For some reason I'm failing abominably at asking turtles to go to xy coordinates in a list. I've tried several approaches and though I can see why some of them are wrong I can't identify what's ...
2
votes
0answers
55 views

I want to extract coordinate data from NetLogo using the RNetLogo package

I'm using the sample Flocking code as an example to play with if anyone is familiar NLCommand("set population 1") NLCommand("setup") nruns <- 10 timedata <- list() for(i in 1:nruns) { ...
0
votes
1answer
74 views

How can I include the effect of patches age in netlogo?

How can I accomplish the following in the code below: patches change color reflective of their distance from the row "min-pycor" For example, colors alternate from yellow to red and then to ...
0
votes
0answers
73 views

Netlogo about empty spaces between turtles and patches

Hey Here I'm trying to setup patches (say white) on the last row ("min-pycor") with precentage 9-1 to blank (which means we have randomly 90% white patches on the last row and blank 10%). I did that. ...
1
vote
1answer
230 views

Netlogo - Filling neighboring patches with specific colored turtles until full

I'm trying to ask white turtles to create yellow turtles to one of the 8 empty neighboring spaces. If there is no free space the turtle should produce nothing. Note: white turtles stay white and ...
0
votes
1answer
70 views

NetLogo - transferring data between neighboring turtles

Is there any way to transfer data between turtles? I would like to send and receive data between a turtle and its neighboring turtles, but I don't know how...
0
votes
1answer
36 views

NetLogo - check to see if a file has changed

What is an efficient method to check if a file has changed and only print the new data? Originally, I leaned towards a readline approach comparing line counts but that seemed very inefficient. My ...
0
votes
1answer
189 views

Comparing Turtle Color In Netlogo

I am trying to do something I imagine is relatively simply but for some reason I am having a heck of a time figuring it out and all my searches are turning up blank. I want to query the color of a ...
0
votes
1answer
76 views

reporting changes of turtle heading in NetLogo

I need to learn concurrently when a turtle changes its heading. Namely, when the turtle changes its direction, a procedure or a reporter will change the value of a boolean. But this reporter won't be ...
0
votes
2answers
313 views

ABM under python with advanced visualization

sorry if this all seem nooby and unclear, but I'm currently learning Netlogo to model agent-based collective behavior and would love to hear some advice on alternative software choices. My main thing ...
0
votes
0answers
85 views

Netlogo increase memory limit

I want to run Netlogo program from Java. It runs sample models. But my model use 640*480 world and it could't run it. It gives : " java.lang.OutOfMemoryError: Java heap space" bug. As I researched , I ...
0
votes
1answer
201 views

Grouping RGB colors for NXT brick

I am trying to write an extension in netlogo for Nxt brick . To connect the brick , I am using Lejos. I have a problem with color sensor. I want to write a simple method which returns sensor color as ...

1 2