Logbook  (07-04-2025)
Static problems
exact_solution.hpp
1 /******************************************************************************
2  * Copyright (C) Siarhei Uzunbajakau, 2023.
3  *
4  * This program is free software. You can use, modify, and redistribute it under
5  * the terms of the GNU Lesser General Public License as published by the Free
6  * Software Foundation, either version 3 or (at your option) any later version.
7  * This program is distributed without any warranty.
8  *
9  * Refer to COPYING.LESSER for more details.
10  ******************************************************************************/
11 
12 #ifndef ExactSolutionsSSOLI_H__
13 #define ExactSolutionsSSOLI_H__
14 
15 #include "constants.hpp"
16 #include "settings.hpp"
17 #include <deal.II/base/function.h>
18 #include <deal.II/lac/vector.h>
19 
20 using namespace dealii;
21 
28  : public Function<3>
29  , public SettingsSSOLI
30 {
31 public:
33 
34  virtual void vector_value_list(
35  const std::vector<Point<3>>& r,
36  std::vector<Vector<double>>& values) const override final;
37 
38 private:
39  const double B_0;
40 };
41 
42 #endif
Describes the exact solution, , of the Thin spherical coil (ssol-i/) numerical experiment.
Global settings for the Thin spherical coil (ssol-i/) numerical experiment.
Definition: settings.hpp:26