Chi-Tech
dfem_diffusion_bndry.h
Go to the documentation of this file.
1#ifndef DFEM_DIFFUSION_BOUNDARY_H
2#define DFEM_DIFFUSION_BOUNDARY_H
3
4#include <array>
5
7{
8 class Boundary;
9
10 enum class BoundaryType : int
11 {
12 Reflecting = 1,
13 Dirichlet = 2,
14 Neumann = 3,
15 Robin = 4,
16 Vacuum = 5
17 };
18}
19
20//###################################################################
21/**Parent class for diffusion boundaries*/
23{
24 public :
26
27 std::array<double, 3> values_ = {0.,0.,0.};
28};
29
30#endif //DFEM_DIFFUSION_BOUNDARY_H
std::array< double, 3 > values_