Class documentation of Concepts

Loading...
Searching...
No Matches
maxwell.hh
Go to the documentation of this file.
1
7#ifndef maxwell3D_hh
8#define maxwell3D_hh
9
10#include "basics/cloneable.hh"
11#include "toolbox/array.hh"
13
14namespace hp3D {
15 // forward declarations
16 class Hexahedron;
17
18 using concepts::Real;
19
20 // ***************************************************** MaxwellSharedData **
21
38 public:
39 MaxwellSharedData() : jacobian(0), jacobianInv(0), elm(0) {}
40 virtual ~MaxwellSharedData() {}
41 virtual MaxwellSharedData* clone() const {
42 return new MaxwellSharedData(); }
43 concepts::Array<Real> jacobian;
45 const Hexahedron* elm;
46 };
47
48} // namespace hp3D
49
50#endif // maxwell3D_hh
virtual MaxwellSharedData * clone() const
Definition maxwell.hh:41
double Real
Definition typedefs.hh:39
Definition meshDX.hh:23