SWHSNoPCM
All Classes Files Functions
ODE.hpp
Go to the documentation of this file.
1 
7 #ifndef ODE_h
8 #define ODE_h
9 
10 #include <vector>
11 
12 using std::vector;
13 
16 class 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
Class representing an ODE system.
Definition: ODE.hpp:16
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