12 #include "exact_solution.hpp"
14 #pragma GCC diagnostic push
15 #pragma GCC diagnostic ignored "-Wunused-parameter"
17 using namespace dealii;
23 const unsigned int component)
const
25 return (log(b) - log(r.norm())) / (log(b) - log(a));
31 const unsigned int component)
const
33 return -1.0 / (log(b) - log(a)) * r / r.square();
39 const unsigned int component)
const
41 return (a * b / (b - a)) * (1 / r.norm() - 1 / b);
47 const unsigned int component)
const
49 return -a * b / (b - a) * r / pow(r.norm(), 3);
52 #pragma GCC diagnostic pop
Describes exact solution, , of the Effect of curved boundaries (cbnd/) numerical experiment.