SWHSNoPCM
Loading...
Searching...
No Matches
ODE.hpp
Go to the documentation of this file.
1
6
7#ifndef ODE_h
8#define ODE_h
9
10#include <vector>
11
12using std::vector;
13
16class ODE {
17 public:
22 ODE(double tau_W, double T_C);
28 void operator()(vector<double> T_W, vector<double> &dT_W, double t);
29
30 private:
31 double tau_W;
32 double T_C;
33
34};
35
36#endif
ODE(double tau_W, double T_C)
Constructor for ODE objects.
void operator()(vector< double > T_W, vector< double > &dT_W, double t)
function representation of ODE system