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 SettingsINT_H__
13 #define SettingsINT_H__
14 
15 #include "constants.hpp"
16 #include <deal.II/base/types.h>
17 
18 using namespace dealii;
19 
25 {
26 public:
27  SettingsINT(){};
28 
33  const unsigned int nr_threads_max = 0;
34 
38  const double ep_0 = permittivity_fs;
39 
43  double a = 0.3;
44 
48  double b = 1.0;
49 
53  double d = 0.65;
54 
58  const types::boundary_id bid_in = 1;
59 
63  const types::boundary_id bid_out = 3;
64 
68  const types::material_id mid_1 = 1;
69 
73  const types::material_id mid_2 = 2;
74 
78  double ep_1 = 32.0 * ep_0;
79 
83  double ep_2 = 4.0 * ep_0;
84 
89  const double eps = 1e-12;
90 
95  const bool print_time_tables = false;
96 
105  const bool project_exact_solution = false;
106 
114  const bool log_cg_convergence = false;
115 };
116 
117 using Settings = SettingsINT;
118 
119 #endif
Lists physical constants.
Definition: constants.hpp:28
Global settings for the Interface between dielectrics (int/) numerical experiment.
Definition: settings.hpp:25
Global settings for the Method of manufactured solutions (mms/) numerical experiment.
Definition: settings.hpp:25