5#ifndef CPPPROJCT_SIMULATIONPIPE_H
6#define CPPPROJCT_SIMULATIONPIPE_H
12#include <boost/graph/graphviz.hpp>
14#include "../Tests/test-imports.h"
16template <
int T,
typename GRAPHTYPE,
int BATCH,
typename DIFFEQ>
17void run_several_times(GRAPHTYPE &G, std::string name,
31 std::vector<std::pair<double, double>> X0_W;
36 if (std::stoi(std::getenv(
"EQNUMBER")) == 0) {
42 I = (double) std::stod(std::getenv(
"J"));
43 LB = (double) std::stod(std::getenv(
"WMIN"));
44 UB = (double) std::stod(std::getenv(
"WMAX"));
48 std::uniform_real_distribution<double> initialPhase(0, M_PI);
49 std::uniform_real_distribution<double> naturalFrequency(LB, UB);
50 std::default_random_engine re;
51 for (
int i=0; i<G.N; i++){
52 double new_phase = initialPhase(re);
53 double new_freq = naturalFrequency(re);
54 X0_W.push_back({new_phase, new_freq});
56 G.Initialization(X0_W, I, G.g, G.N);
59 unsigned long NVtot = boost::num_vertices(G.g);
60 CommunicationHelper ComHelper(G.g);
61 ParallelHelper ParHelper(ComHelper.NUM_THREADS, NVtot);
62 IntegrationHelper IntHelper(NVtot);
63 LayeredSolverHelper LayHelper(NVtot);
64 MappingHelper MapHelper(G.g);
65 ReferenceContainer REF(ParHelper,
75 int SAMPLING_FREQ = (int) std::stoi(std::getenv(
"SAMPLING_FREQ"));
83 int WRITING_FREQ = SAMPLING_FREQ;
87 for (
int i = 0; i < NRUNS; i++) {
89 single_evolution<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
91 single_evolution2<DIFFEQ, EulerSolver<DIFFEQ>, BATCH>(G.g, S_eu, REF, G.N);
93 if (i==0) LayHelper.built =
true;
95 if ((i % WRITING_FREQ) == 0) {
96 std::string dots =
"graphic/program-output/graphviz." + std::to_string(fileCounter) +
".dot";
97 char * dot = &dots[0];
98 boost::write_graphviz(dot, G.g, boost::make_label_writer(get(&DynamicNode::value, G.g)));
101 std::cout <<
"Writing graphviz into file named" << dots <<std::endl;
105 }
else if (SOLVER.s == 1) {
107 int WRITING_FREQ = SAMPLING_FREQ;
111 for (
int i = 0; i < NRUNS; i++) {
113 single_evolution<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
115 single_evolution2<DIFFEQ, RungeKuttaSolver<DIFFEQ>, BATCH>(G.g, S_rk, REF, G.N);
117 if (i==0) LayHelper.built =
true;
119 if ((i % WRITING_FREQ) == 0) {
120 std::string dots =
"graphic/program-output/graphviz." + std::to_string(fileCounter) +
".dot";
121 char * dot = &dots[0];
122 boost::write_graphviz(dot, G.g, boost::make_label_writer(get(&DynamicNode::value, G.g)));
125 std::cout <<
"Writing graphviz into file named" << dots <<std::endl;
129 }
else error_report(
"Requested solver does not exist\n");
132 printf(
"\n\n\n[INFO] Simulation has ended successfully!!!\n\n\n");
136template <
int BATCH,
typename EQCLASS>
137void simulator_helper(
unsigned int SEED,
unsigned long N,
int NRUNS,
SolverConfig &SOLVER,
int TOPOLOGY){
141 if ((TOPOLOGY == 2) || (TOPOLOGY == 3)) {
142 p = (double) std::stod(std::getenv(
"proba"));
144 if ((TOPOLOGY == 3)) {
145 K = (
unsigned long) std::stoul(std::getenv(
"kneigh"));
151 run_several_times<100, RingGraphObject, BATCH, EQCLASS>(G,
"Ring",
157 }
else if (TOPOLOGY == 1) {
159 run_several_times<100, CliqueGraphObject, BATCH, EQCLASS>(G,
"Clique",
165 }
else if (TOPOLOGY == 2) {
167 run_several_times<100, ErdosRenyiGraphObject, BATCH, EQCLASS>(G,
"ErdosRenyi",
173 }
else if (TOPOLOGY == 3) {
175 run_several_times<100, SmallWorldGraphObject, BATCH, EQCLASS>(G,
"SmallWorld",
181 }
else error_report(
"Requested ring topology does not exist!\n");
187void simulator(
unsigned int SEED,
unsigned long N,
int NRUNS,
SolverConfig &SOLVER,
int TOPOLOGY,
int EQNUMBER){
189 reproductibility_lock(SEED);
192 simulator_helper<BATCH, NoiselessKuramoto>(SEED, N,NRUNS, SOLVER, TOPOLOGY);
193 }
else if (EQNUMBER == 1) {
194 simulator_helper<BATCH, LinearTestEquation>(SEED, N, NRUNS, SOLVER, TOPOLOGY);
196 printf(
"[FATAL] Required Equation does not exist!\n");
197 std::cout<<std::flush;
Definition: CliqueGraph.h:12
Definition: ErdosRenyiGraph.h:9
Definition: GeneralSolver.h:38
Definition: RingGraph.h:12
Definition: SmallWorldGraph.h:11
Definition: GeneralSolver.h:24