NetLogo is a multi-agent programmable modeling environment.
0
votes
0answers
16 views
Sort a list by a to-report procedure
So I'm trying to sort a list by its value when computed with a reporter procedure I created. Here is the code:
globals [ goal Smin Smax distWeight colorWeight ]
turtles-own [ S Ac ]
to setup
ca
...
0
votes
0answers
17 views
How to save graph from NetStream to gexf file?
I am trying to save a GraphStream/NetStream from NetLogo do *.gexf file. Graph has constant number of edges and vertices. Thing that is changing is parameters of nodes/'turtles'. Currently, after each ...
0
votes
0answers
12 views
this code can't be run by a patch
This error comes up when I try to determine to nearest patch that would take the turtle to its destination.
this code can't be run by a patch
error while turtle 0 running DISTANCE
called by ...
1
vote
1answer
16 views
Can someone please explain ask and ask-concurrent in layman's term?
I'm really having a hard time grasping this concept. When I use it, it doesn't really seem like it's performing it at the same time.
0
votes
0answers
10 views
Is there a NetLogo model that shows collision detection realistically?
I'm working on a simulation of pedestrian motion and I can't find examples in the library or online that shows collision detection perfectly (like no triangular agents intersect with another agent's ...
-1
votes
0answers
34 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 ...
0
votes
0answers
19 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 ...
0
votes
1answer
32 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
78 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
57 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
49 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
48 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
78 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
35 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
188 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
18 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
61 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
68 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
27 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
58 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
45 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
31 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
41 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
50 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
38 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
92 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
87 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
55 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
158 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
118 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
36 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
91 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
86 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
73 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
75 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
296 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
115 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
74 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
114 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
101 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
73 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
118 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
301 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
61 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
80 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
75 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
260 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
77 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
39 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
205 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 ...

