Category Archives: Simulation

Delete Duplicate Files With Bash

I needed to delete all but 1 duplicate files from a bunch of experiments. I didn't care about file names. Here's the bash - it works. #!/bin/bash declare -a list=( `find ./DIRECTORY_CONTAINING_FILES f` ); declare -a sums; cnt=${#list[@]} echo "creating … Continue reading

Posted in Programming, Simulation, Social Data Analysis, useful | 2 Comments

Simple Distributed Community Detection for The One Simulator

In the implementation of the Simple algorithm [Distributed Community Detection in Delay Tolerant Networks Pan Hui, Eiko Yoneki, Shu-yan Chan and Jon Crowcroft Sigcomm Workshop MobiArch '07, August, Kyoto, Japan] by PJ Dillon for The One Simulator, updates to communities … Continue reading

Posted in ONE Simulator, Simulation, Social Data Analysis | Leave a comment

BonnMotion 2.0 released

BonnMotion 2.0 released. BonnMotion is a mobility scenario generation and analysis tool, which also supports output for The ONE. I've not looked at it yet but the 3D support looks nice for more complexed scenarios. Some of the new features: … Continue reading

Posted in Simulation | Leave a comment

Reality Mining Experiment Connection Trace File

This page contains data extracted from the MIT Reality Mining experiment which I downloaded from the CRAWDAD repository. Each encounter between devices participating in the experiment is recorded  in the following format and can be used with The One Simulator … Continue reading

Posted in ONE Simulator, Simulation, Social Data Analysis | 5 Comments

New Simulation Scenario – Kilburn and IT buildings

After realising that the city wide simulation was too large for practical development of new protocols with The One Simulator, I've designed a simulation using the Kilburn Buidling Floorplans. In this simulation we have 4 groups of students and 3 … Continue reading

Posted in Manchester Map, ONE Simulator, Simulation | Leave a comment