Logbook  (07-04-2025)
Static problems
settings.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 SettingsSSOLII_H__
13 #define SettingsSSOLII_H__
14 
15 #include "constants.hpp"
16 #include <deal.II/base/types.h>
17 
18 using namespace dealii;
19 
25 {
26 public:
27  SettingsSSOLII(){};
28 
33  const unsigned int nr_threads_max = 0;
34 
38  const double mu_0 = permeability_fs;
39 
44  const double d1 = 0.1;
45 
50  const double rd1 = sqrt(3) * d1;
51 
55  const double a = 0.9;
56 
60  const double b = 1.2;
61 
66  const double d2 = 2.0;
67 
71  const double d3 = 3.0;
72 
77  const double K_0 = 1.0;
78 
82  const types::material_id mid_1 = 1;
83 
87  const types::material_id mid_2 = 2;
88 
93  const double eps = 1e-12;
94 
99  const bool print_time_tables = false;
100 
109  const bool project_exact_solution = false;
110 
118  const bool log_cg_convergence = false;
119 };
120 
121 using Settings = SettingsSSOLII;
122 
123 #endif
Lists physical constants.
Definition: constants.hpp:28
Global settings for the Method of manufactured solutions (mms/) numerical experiment.
Definition: settings.hpp:25
Global settings for the Thick spherical coil (ssol-ii/) numerical experiment.
Definition: settings.hpp:25