Questions tagged [one-simulator]

Questions about The ONE (Opportunistic Network Environment) simulator.

The ONE - The Opportunistic Network Environment simulator

The ONE is a simulation environment that is capable of:

  • generating node movement using different movement models

  • routing messages between nodes with various DTN routing algorithms and sender and receiver types

  • visualizing both mobility and message passing in real time in its graphical user interface

  • ONE can import mobility data from real-world traces or other mobility generators. It can also produce a variety of reports from node movement to message passing and general statistics

24 questions
2
votes
3 answers

How to Call Data structure from other classes

I want to call data structure from another classes but i find a problem here, can you help me? here the source code The data structure from class SimBetWithFairRouting public Map> neighborsHistory; and i will call it in…
1
vote
1 answer

how to set POI info in settings file for the ONE simulator

I would like to include the information about 2 POIS (in the settings file) that I want the ONE simulator to take into account for simulation runs. I know first thing is to set the following path: PointsOfInterest.poiFile1 = data/POI.wkt and then…
BlueMountain
  • 197
  • 2
  • 17
1
vote
0 answers

How to turn off node interface in one simulator

i want to turn off movement and interface of a node, and here i using activeTime=0,1800,25000,42300 settings, the movement inactive but the interface is active. what should i do? is there something missing in the settings section? or how? can you…
1
vote
0 answers

Tuple data structure in One Simulator

I want to create a tuple data structure called neighborhood, but there is an error "(and [expected", and after I add () or [] still an error, can you help me? here the source code protected Tuple>,ArrayList>…
0
votes
0 answers

How to make an action before or after a message is sent on The One Simulator?

I Want to implement TTR routing protocol in One Simulator, which requires a unique copy of the message, so every time a message is relayed, the sender node has to delete the message from its buffer. Which method do i have to override to delete the…
Lirlisa
  • 1
  • 1
0
votes
1 answer

Delay Tolerant Network(DTN) combining Information Centric Network via ONE simulator

How can I use the ONE simulator to implement the combination of the NDN network in a DTN network environment, can I add or extract the "content" of the packet or, at least a tag of a packet? I have looked through many papers, but none of them used…
0
votes
1 answer

Restricting movement to a specific section

I am currently trying to working with restricting the agents to on 1/4 of the whole Manhattan map. The idea is simple and as follows; Let us say we have 10 agents, their names being v1, v2 ... v10. I want them to move only in a specific section.…
0
votes
1 answer

how to convert world lat and long coordinates to something ONE simulator understands?

I have the coordinates of Manhattan in a .wkt file and an example of that file content is: LINESTRING (40.619605 -73.9584046, 40.6205286 -73.9585793, 40.6206127 -73.9585952) ONE simulator does not recognize such coordinates to display the map of…
0
votes
1 answer

Request for a suggestion a user friendly programming editor for ONE Simulator?

currently, I'm into coding a routing protocol in ONE Simulator. Any suggestion for programming editor software for coding purposes? Thanks
0
votes
1 answer

How to execute ONE simulator for getting results

I executed Config file in ONE simulator then i got the GUI with nodes moment but i don't know how to execute and how to get the results in ONE simulator. i want to know what is the command for getting the results in ONE simulator. Thank you
0
votes
1 answer

Save Encounter Record ONE Simulator

I am trying to save encounter records in method do Exchange ONE Simulator. What I suppose to do? I try with arraylist, buy I think not efficient. Can someone Help Me?
0
votes
1 answer

Compiling Issue using VSC on ONE Simulator

I just install ONE Simulator on my pc with updated JDK and JRE 1.8.0_321 using Visual Studio Code text editor. When I compile the main file, here is the problem mentioned: Exception in thread "main" java.lang.Error: Unresolved compilation problems: …
0
votes
1 answer

change routing modules to send a response upon receipt of a message(request) on ONE simulator

How can i modify the routing modules on ONE simulator like epidemic ,prophet, spray and wait to send a response when the destination node receives a message?
Kim
  • 1
0
votes
1 answer

Please tell me how to use two delivery protocols at the same time with one-simulator

What should I do if I want to change the delivery protocol depending on the node such as SpW to the node that is fixed to Epidemic as the node that runs with one-simulator?thank you.
あるぴ
  • 1
  • 1
0
votes
1 answer

How do i implement mofo, dla, dl and fifo buffer management techniques on prophet router?

I am currently trying to evaluate the performance of ProPHET router using various buffer management technique such as MOFO, FIFO,DLA, and DL. I have written all the codes for each of the techniques and made them an individual classes and the saved…
1
2