OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
Water.h
Go to the documentation of this file.
1 #ifndef WATER_H
2 #define WATER_H
3 
4 #include "Physics/Material.h"
5 
6 namespace Physics {
7  class Water: public Material {
8  public:
9  Water():
10  Material(10,
11  18,
12  1,
13  36.08,
14  75.0, // source: pstar from NIST
15  {{2.199, 2.393e3, 2.699e3, 1.568e-2}})
16  { }
17  };
18 }
19 #endif