NEDISS: Network Diffusion and Synchronization Simulator
|
Configure the simulation at simulation.conf.sh
and execute the desired script. If it's a sweep, configuring period_analysis_configuration.py
is also required. (TODO: video tutorial)
1) produce_graphical_simulation.sh
runs the program in simulation mode and produces a graphical simulation 2) capture_period.sh
computes the exponential coefficients of the collapse into a locked state for the values specified in the configuration file. 3) period_analysis.sh
wraps the capture of the period for a range of parameters indicated in the sweep configuration file, allows to mark outliers to exclude, and finally produces a chart showing the trend. 4) TODO: compute the average return probability using Monte Carlo solver.
| Equation | Euler order 1 | Euler up to O(4) | Generalized Runge Kutta | Solver Wrapper w/Noise models | Monte Carlo Evolution | | — | — | — | — | — | — | | 1D linear | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :x: | :bulb: | :x: | | Noiseless Kuramoto | :heavy_check_mark: | :x: | :heavy_check_mark: | :x: | :bulb: | :x: | | N-D linear |:bulb: | :bulb: | :bulb: | :x: | :bulb: | :x: | | Pulse-coupled oscillators | :bulb: | :bulb: | :bulb: | :x: | :bulb: | :x: | | Fractional Brownian Motion | :x: | :x: | :x: | :x: | :bulb: |
|Refs. | :heavy_check_mark: done and tested | :x: not supported |:bulb: potential feature|
Graph | All nodes 1 value | Nodes different random values | All edges 1 value | Edges different random values | Node and edges read from file |
---|---|---|---|---|---|
Ring(N) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :bulb: | :bulb: |
Clique(N) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :bulb: | :bulb: |
Erdos Renyi(N,p) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :bulb: | :bulb: |
ScaleFree(N,A,B) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :bulb: | :bulb: |
Small World(N,k,p) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :hourglass: | :hourglass: |
Grid(N,M) | :bulb: | :bulb: | :bulb: | :bulb: | :bulb: |
Torus(N,M) | :bulb: | :bulb: | :bulb: | :bulb: | :bulb: |
hypercube(N) | :bulb: | :bulb: | :bulb: | :bulb: | :bulb: |
|Refs. | :heavy_check_mark: done and tested | :white_check_mark: done but untested |:hourglass: under construction |:bulb: potential feature|
The configuration file allows the following to be specified:
{0,1}
indexes one of the ODEs described below. Currently 0
for 1D linear and 1
for Noiseless Kuramoto.{0,1}
indexes the solver. 0
for the Euler method and 1
for Runge Kutta.{1,2,3,4}
is the depth used in Euler's method. A depth of i with i>1 requires the (i-1)-th derivative of the Equation's field to be implemented.[0,1]
are the weights to apply to each of the Runge Kutta terms.{0,1,2,3}
indexes the topology. Currently 0
is a ring, 1
is a Clique, 2
is Erdos-Renyi, and 3
is Small-World. The latter currently has its probability p fixed at compilation.0-inf
defines the number of iterations to perform for the test that can be accessed through the flag TEST=2.P*NT*2 - inf
defines the number of total nodes to use. A pathological lower bound can be P*NT*2, which means two times the number of processors times the number of threads per processor.{-1,1,2,3}
is the running mode, see below.any int
is the seed to use during the entire simulation.0-inf
defines the number of neighbors to which connect if building a Small-World graph.[0,1]
define the proba to initialize the ScaleFree graph.double
define the (constant) coupling strength for kuramoto, and the min & max bounds for uniformly sampling the natural frequency of each node.[0,1]
defines the probability used in the relevant constructors, currently Erdos-Renyi and Small-World.3-inf
is the maximum number of threads allowed per processor. At least three are required by our current division of tasks which is thread-id dependant.true
is a flag for OpenMP and it's required to be true
.-oversubscribe
allows to use more than the actual number of threads when ran locally in a laptop.{1,...,NRUNS}
is the number of iterations to wait between recording the state of the system in a .dot file that can be later used for both graphical plotting and simple value-access.run.sh
just runs the program in whichever mode was specified in the configuration filerun_debugxterm.sh
runs with gdb and displays each processor in a different consolerun_pipe.sh
runs and pipes the output to a txt filerun_valgrind.sh
runs and produces a valgrind reportrun_time.sh
runs nonverbose and computes the execution timerun.sh
)-1 - Produces a simulation of length NRUNS
and samples the node values at SAMPLING_FREQ
0 - Visually inspect node and edge values at initialization
1 - Visually inspect node and edge values after "a few" iterations (currently fixed at 3).
2 - Visually inspect node and edge values at both initialization and after several configurable (NRUNS
) iterations. It also verifies the probability of errors, e.g. verification of 10k iterations with 100 threads and no segmentation fault.
Please open a pull request if you have any idea; at the present time (beggining Jan. 2022) the main focus of attention should be adding random walks to measure diffusion. Do not hesitate to contact me. As a developer please consider compiling with the VERBOSE
macro defined. The pattern for pushing minor changes without triggering an appveyor job is the commit title "[unsurveilled]".