hi is it possible to use netlogo and opengl to make 3d agents simulations? if not which other options does exist for creating complex shapes with agents based...
There is some work starting to be done in various 3D game development engines. Second-Life is probably the easiest to get started in--it's practically a 3D...
... I had never heard of '__reload' so I tried to look it up, but couldn't find it. I did find '__reload-extensions' in the extensions manual. Where is...
... I was using 4.0final... let me look again... ... Oh. It would have helped me a great deal if I has spelled STARTUP correctly in my test model. So, there...
Hi everyone! my question concerns the import-pcolors command. I understand that by using this command agents and patches can 'sense' the imported image. How...
Hi. I visited 2 web pages at http://ccl.northwestern.edu/netlogo/models/community/ and they seemed to have problems due to changes in 4.0. Why can't old models...
Ken Kahn
toontalk@...
Oct 2, 2007 8:44 pm
6895
Hi auth, Its pretty straight forward, once you have imported the pcolors in your setup procedure, you just have to define the variables in another procedure. ...
Dear everyone, I encounter a question here as i am doing the visualization of "Ants" (free agents) walks in the "links" (the network) based on the product of...
Hi, all. We are wondering if there are existent ways to run a "headless" version of a Netlogo model. We have looked at the hub-net client stuff, but that...
Ted Carmichael
tedsaid@...
Oct 3, 2007 2:39 pm
6898
Hi! When you use import pcolors, the image is scaled to fit the patches, and the patches take their pcolors from the image. So, in your case, assuming an...
Hi, I am needing an aid in the following one, I tried to make a function if 0 variable BE of patches will have something bigger that 128, it liberates this...
lcosta@...
Oct 3, 2007 6:20 pm
6900
Hi, everyone. We are trying to port our project from Netlogo 3.1.4 to 4.0, and we have come across a couple of issues. We put in the following message loop...
Ted Carmichael
tedsaid@...
Oct 4, 2007 1:11 am
6901
Hi, I am a system administrator at Urban Data Visualization Laboratory at University of Illinois at Chicago. I have a network of Linux systems having NFS. I...
Hi, guys ... has anyone here ever designed a model or altered Netlogo so that it runs on a multi-processor machine, or on a grid of computers? We were just...
Ted Carmichael
tedsaid@...
Oct 4, 2007 1:11 am
6903
Hey, I´ve been having some problems latley in a NetLogo model. I am trying to build a model that conects economics growth and industrial...
daniel.tanis
daniel.tanis@...
Oct 4, 2007 2:45 am
6904
Daniel, You can use turtles-here to access the parameters of turtles on the same patch: ask turtles [set color mean [color] of other turtles-here] Here, the...
Hi everyone, Some months ago i got the netlogo file walkingOnLinks from the community and now i am using it for some visualization. It works fine, but i am...
Hi, Ted! There is an Java API, and ways to run NetLogo headless, but I'm not as familiar with those issues to render any advice, so I'll pass on that, and let...
Daniel, Depends on exactly what you want to do, but turtles can see each other's information using the 'of' keyword: turtles-own [ ;; some variable x ] ;; this...
David O'Sullivan
d.osullivan@...
Oct 5, 2007 11:30 am
6911
Junjun, To output data in a fixed order you need to use the sort function. This converts the turtles agentset into a list, which you iterate over with the...
David O'Sullivan
d.osullivan@...
Oct 5, 2007 11:30 am
6912
I'm using NetLogo for teaching beginners about simulation modelling of network dynamics. There's existing code for random linking, and preferential...
Dear All friends: I craet a vitual market system to simulate a so called "Cournot game". In my model, there are two companys in the market.In each period, the...
Can anyone point me to any existing material or hints on teaching kids (e.g., a 12-year-old) the basics of programming in NetLogo? Thanks, Alan...
inspired042
AlanThomas@...
Oct 6, 2007 2:29 am
6915
Dear, It needed to verify if patch where I am has one macrof and this to each 18 steps of time must try to kill one would bacteria present in patch, or if to...
lcosta@...
Oct 6, 2007 2:29 am
6916
Dear everyone, I am thinking of print every pair of nodes in the network. From Node 1 to Node n, if any of them are linked, i will print them out in the ...