NEDISS: Network Diffusion and Synchronization Simulator
LinearTestEquation.h
1//
2// Created by m4zz31 on 20/11/21.
3//
4
5#ifndef CPPPROJCT_LINEARTESTEQUATION_H
6#define CPPPROJCT_LINEARTESTEQUATION_H
7
8
9#include "GeneralDifferentialEquation.h"
10
11// df/dx = a * f + b, where the sol is f(x) = b + c * e^(ax)
12// it is useful for tests as it does not carry interactions: all nodes
13// should produce the same result if given the same initial condition :-)
15public:
17
18 // for compliance with other equations
19 // which do have a non-constant behaviour
20 bool requiresCom(int d);
21
22 void Field(double t, double a,
23 std::vector<double> &b,
24 std::vector<double> &c,
25 std::vector<double> &d);
26
27 // For this equation, the first (second,third,...) derivatives
28 // have a pre-established form that does not require targeting the
29 // Field of neighbors, so we write it.
30 void d1Field(double t, double a,
31 std::vector<double> &b,
32 std::vector<double> &c,
33 std::vector<double> &d);
34
35 void d2Field(double t, double a,
36 std::vector<double> &b,
37 std::vector<double> &c,
38 std::vector<double> &d);
39
40 void d3Field(double t, double a,
41 std::vector<double> &b,
42 std::vector<double> &c,
43 std::vector<double> &d);
44};
45
46
47#endif //CPPPROJCT_LINEARTESTEQUATION_H
Definition: GeneralDifferentialEquation.h:32
Definition: LinearTestEquation.h:14