DFT-EFE
 
Loading...
Searching...
No Matches
Defaults.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2021. *
3 * The Regents of the University of Michigan and DFT-EFE developers. *
4 * *
5 * This file is part of the DFT-EFE code. *
6 * *
7 * DFT-EFE is free software: you can redistribute it and/or modify *
8 * it under the terms of the Lesser GNU General Public License as *
9 * published by the Free Software Foundation, either version 3 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * DFT-EFE is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
15 * See the Lesser GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License at the top level of DFT-EFE distribution. If not, see *
19 * <https://www.gnu.org/licenses/>. *
20 ******************************************************************************/
21
22/*
23 * @author Avirup Sircar
24 */
25
26#ifndef dftefeQuadratureDefaults_h
27#define dftefeQuadratureDefaults_h
28
29#include <utils/TypeConfig.h>
30#include <string>
31
32namespace dftefe
33{
34 namespace quadrature
35 {
37 {
38 public:
39 //
40 // smallest cell volume to recurse to
41 //
42 static const double SMALLEST_CELL_VOLUME;
43
44 //
45 // maximum recursion of divisions for adaptive quad
46 //
47 static const unsigned int MAX_RECURSION;
48
49 //
50 // normalization of Integral threhold criteria to avoid 0/0 form
51 //
53
54 }; // end of class QuadratureRuleAdaptiveDefaults
55
57 {
58 public:
59 //
60 // default 1d points for checking isCartesianTensorStructured
61 //
63
64 //
65 // default string tag
66 //
67 static const std::string TAG;
68
69 }; // end of class QuadratureRuleAttributesDefaults
70
72 {
73 public:
74 //
75 // NUM_CELLS_FOR_ADAPTIVE_REFERENCE
76 //
78
79 }; // end of class QuadratureRuleGaussSubdividedDefaults
80
81
82 } // end of namespace quadrature
83} // end of namespace dftefe
84#endif // dftefeQuadratureDefaults_h
static const double SMALLEST_CELL_VOLUME
Setting all the QuadratureRuleAdaptiveDefaults.
Definition: Defaults.h:42
static const unsigned int MAX_RECURSION
Definition: Defaults.h:47
static const double INTEGRAL_THRESHOLDS_NORMALIZATION
Definition: Defaults.h:52
static const size_type NUM_1D_POINTS
Setting all the QuadratureRuleAttributesDefaults.
Definition: Defaults.h:62
static const std::string TAG
Definition: Defaults.h:67
static const size_type NUM_CELLS_FOR_ADAPTIVE_REFERENCE
Setting all the QuadratureRuleGaussSubdividedDefaults.
Definition: Defaults.h:77
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8