Questions tagged [repast-simphony]

Repast Simphony is a cross platform Java-based modeling system that runs under Microsoft Windows, Apple Mac OS X, and Linux. It supports the development of extremely flexible models of interacting agents for use on workstations and small computing clusters.

Repast Simphony is a tightly integrated, richly interactive, cross platform Java-based modeling system that runs under Microsoft Windows, Apple Mac OS X, and Linux. It supports the development of extremely flexible models of interacting agents for use on workstations and small computing clusters.

Repast Simphony models can be developed in several different forms including the ReLogo dialect of Logo, point-and-click flowcharts, Groovy, or Java, all of which can be fluidly interleaved. NetLogo models can also be imported.

119 questions
8
votes
1 answer

Unexpected results using Repast Simphony

I need to develop a Java version of the Iterated Prisoner Dilemma using Repast Simphony as simulator. The ideas is that each Player is an agent, and we have a n x n grid of Player that can't be moved. Each Player has to play with 4 neighbours…
StepTNT
  • 3,705
  • 5
  • 34
  • 77
4
votes
1 answer

Repast - call simulation from java program without GUI

I am following the instruction to test calling my simulation model from another java program. package test; //import repast.simphony.runtime.RepastMain; public class UserMain { public UserMain(){}; public void start(){ String[] args = new…
Jack
  • 1,131
  • 1
  • 8
  • 17
4
votes
2 answers

Making cylindrical space in Repast Simphony?

I am trying to model the interior of an epithelial space and am stuck on movement around the interior edges of a cylindrical space. Basically, I'm trying to implement StickyBorders and keep agents on those borders in a cylindrical space that I am…
Catherine
  • 83
  • 4
4
votes
1 answer

How to generate different 2D displays in Repast Simphony (gui or style code?)?

I have built a 3D model in repast simphony and it is working (fairly) well. However, due to the nature of the model, agents tend to form dense clumps. I was wondering if there is a way to generate a 2D slice or cross section through the middle of…
Catherine
  • 83
  • 4
4
votes
2 answers

Agent decision making in repast simphony using java uses a lot of memory

I am building a model with a number of autonomous agents. They make decisions on which object to choose within their immediate environment or "neighborhood". They do this retrieving the objects, add them to a list, sort the list based on…
Taylor Marie
  • 325
  • 1
  • 14
3
votes
1 answer

How to get Repast Simphony started in Eclipse now that Groovy compiler 2.4 is officially unavilable?

I am trying to get the Repast Simphony to work with the instructions from here https://repast.github.io/download.html#update-site-install which clearly states that it would work only with Groovy Compiler version 2.4.x However, in October 2020,…
avinaba123
  • 33
  • 4
3
votes
1 answer

Is there an easy way to temporarily turn off parts of the scenario?

My aim is to temporarily turn off some of the Text Sinks for a specific batch run. My motive is that I want to save processing time and disk space. My wider aim is to easily switch not only between different text sinks but also parameter files, data…
Qualmy
  • 105
  • 4
3
votes
1 answer

Is it possible to visualize display using server launcher?

I recently noticed that repast gives the possibility to use a server launcher. On this manual is reported: New in Repast Simphony 2.7 is the ability to run your model using a web browser as the user interface. The browser-based GUI has the…
g. tu
  • 138
  • 9
3
votes
1 answer

java - NSException error when running repast simphony from Eclipse

I am experiencing an error that prevents repast simphony from running when prompted from Eclipse. Instead of running a model when prompted, the window disappears and an error message appears within Eclipse. The steps I've followed to this point on…
Leo W.
  • 55
  • 2
3
votes
1 answer

Repast Simphony 3D GIS

I am using Repast Simphony for a project that involves airspace and would like to have agents move in 3D continuous space above a GIS projection that has static ground-based agents. Currently, I have separate Geography and ContinuousSpace…
aliaksei
  • 676
  • 1
  • 9
  • 22
3
votes
1 answer

Implement Mouse Click in Repast Simphony(Java)

I want to implement the a model including a functionality that allows me to do various things by clicking the mouse on its interface. However I am not able to find any out if mouse click is possible to be implemented on the Repast Simphony based…
Akshit
  • 103
  • 5
2
votes
1 answer

Shortest distance on Repast Simphony?

I wanted to get shortest distance from point a to b on a road network. Is there a way to do that using GeoTools or otherwise? Can we create network projection from road shapefile?
GEO_ABM
  • 21
  • 1
2
votes
1 answer

Visualization of simulation after batch run

Are there any methods to visualize simulation runs from a batch run after the fact? I would like to view the spatial layout of agents from different runs at the last tick. I think freezedrying would work, but it is a very large complex system. Once…
apetruc
  • 23
  • 3
2
votes
1 answer

Does repast allow floating point coordinates for agents?

Netlogo allows floating point coordinates for an agent that is on a patch that has integer coordinates. I would like to be able to do the same in repast.
2
votes
1 answer

Can I display in the run-GUI the order of the parameters defined in parameters.xml?

For example, for the following parameters defined in the parameters.xml, can I explicitly define the order of the parameters that they appear in the running GUI? I do not thing they are ordered alphabetically.
1
2 3 4 5 6 7 8