valSPH
All Classes Files Functions Variables
EoS.h
Go to the documentation of this file.
1 
10 #ifndef __EoS_h__
11 #define __EoS_h__
12 
13 
14 #include <vector>
15 
16 
17 using namespace std;
18 
19 
20 class EoS {
21 
22 
23  private:
24 
25 
26  public:
27 
28 
32  EoS();
33 
34 
40  virtual vector<double> calculateP(double gamma, vector<double> rho, vector<double> e ) = 0; //problema con los parametros, cada heredero diferentes...
41 
42 
46  ~EoS();
47 
48 
49 };
50 
51 
52 #endif