12 #include "exact_solution.hpp"
15 #pragma GCC diagnostic push
16 #pragma GCC diagnostic ignored "-Wunused-parameter"
18 using namespace dealii;
25 return (cos(k * r[0]) + cos(k * r[1]));
31 unsigned int component)
const
35 p[0] = -k * sin(k * r[0]);
36 p[1] = -k * sin(k * r[1]);
45 return (cos(k * r[0]) + cos(k * r[1]) + cos(k * r[2]));
51 unsigned int component)
const
55 p[0] = -k * sin(k * r[0]);
56 p[1] = -k * sin(k * r[1]);
57 p[2] = -k * sin(k * r[2]);
62 #pragma GCC diagnostic pop
Describes the exact solution, , of the Planes of symmetry (pls/) numerical experiment in two and thre...