DFT-EFE
 
Loading...
Searching...
No Matches
SphericalDataNumerical.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 dftefeSphericalDataNumerical_h
27#define dftefeSphericalDataNumerical_h
28
29#include <utils/TypeConfig.h>
30#include <vector>
31#include <utils/Point.h>
32#include <atoms/SphericalData.h>
33#include <utils/Spline.h>
34#include <memory>
35#include <utils/Point.h>
36#include <atoms/Defaults.h>
38
39namespace dftefe
40{
41 namespace atoms
42 {
44 {
45 public:
47 const std::vector<int> qNumbers,
48 const std::vector<double> radialPoints,
49 const std::vector<double> radialValues,
50 const double cutoff,
51 const double smoothness,
52 const SphericalHarmonicFunctions &sphericalHarmonicFunc,
53 const double polarAngleTolerance = SphericalDataDefaults::POL_ANG_TOL,
54 const double cutoffTolerance = SphericalDataDefaults::CUTOFF_TOL,
55 const double radiusTolerance = SphericalDataDefaults::RADIUS_TOL,
57
59
60 void
61 initSpline();
62
63 std::vector<double>
64 getValue(const std::vector<utils::Point> &point,
65 const utils::Point & origin) override;
66
67 std::vector<double>
68 getGradientValue(const std::vector<utils::Point> &point,
69 const utils::Point & origin) override;
70
71 std::vector<double>
72 getHessianValue(const std::vector<utils::Point> &point,
73 const utils::Point & origin) override;
74
75 double
76 getValue(const utils::Point &point, const utils::Point &origin) override;
77
78 std::vector<double>
79 getGradientValue(const utils::Point &point,
80 const utils::Point &origin) override;
81
82 std::vector<double>
83 getHessianValue(const utils::Point &point,
84 const utils::Point &origin) override;
85
86 std::vector<double>
87 getRadialValue(const std::vector<double> &r) override;
88
89 std::vector<double>
90 getAngularValue(const std::vector<double> &r,
91 const std::vector<double> &theta,
92 const std::vector<double> &phi) override;
93
94 std::vector<double>
95 getRadialDerivative(const std::vector<double> &r) override;
96
97 std::vector<std::vector<double>>
98 getAngularDerivative(const std::vector<double> &r,
99 const std::vector<double> &theta,
100 const std::vector<double> &phi) override;
101
102 std::vector<int>
103 getQNumbers() const override;
104
105 double
106 getCutoff() const override;
107
108 double
109 getSmoothness() const override;
110
111 private:
112 std::vector<int> d_qNumbers;
113 std::vector<double> d_radialPoints;
114 std::vector<double> d_radialValues;
115 double d_cutoff;
117 std::shared_ptr<const utils::Spline> d_spline;
122
124 };
125
126 } // end of namespace atoms
127} // end of namespace dftefe
128#endif // dftefeSphericalDataNumerical_h
static const double POL_ANG_TOL
Setting all the SphericalDataDefaults.
Definition: Defaults.h:41
static const size_type DEFAULT_DIM
Definition: Defaults.h:58
static const double RADIUS_TOL
Definition: Defaults.h:53
static const double CUTOFF_TOL
Definition: Defaults.h:47
Definition: SphericalDataNumerical.h:44
std::shared_ptr< const utils::Spline > d_spline
Definition: SphericalDataNumerical.h:117
const SphericalHarmonicFunctions & d_sphericalHarmonicFunc
Definition: SphericalDataNumerical.h:123
std::vector< int > d_qNumbers
Definition: SphericalDataNumerical.h:112
std::vector< double > d_radialPoints
Definition: SphericalDataNumerical.h:113
std::vector< double > getAngularValue(const std::vector< double > &r, const std::vector< double > &theta, const std::vector< double > &phi) override
Definition: SphericalDataNumerical.cpp:499
std::vector< double > getHessianValue(const std::vector< utils::Point > &point, const utils::Point &origin) override
Definition: SphericalDataNumerical.cpp:377
std::vector< double > getRadialValue(const std::vector< double > &r) override
Definition: SphericalDataNumerical.cpp:483
size_type d_dim
Definition: SphericalDataNumerical.h:121
std::vector< int > getQNumbers() const override
Definition: SphericalDataNumerical.cpp:599
double getCutoff() const override
Definition: SphericalDataNumerical.cpp:605
double d_smoothness
Definition: SphericalDataNumerical.h:116
double d_cutoffTolerance
Definition: SphericalDataNumerical.h:119
double d_radiusTolerance
Definition: SphericalDataNumerical.h:120
std::vector< double > getRadialDerivative(const std::vector< double > &r) override
Definition: SphericalDataNumerical.cpp:518
std::vector< double > getValue(const std::vector< utils::Point > &point, const utils::Point &origin) override
Definition: SphericalDataNumerical.cpp:328
std::vector< std::vector< double > > getAngularDerivative(const std::vector< double > &r, const std::vector< double > &theta, const std::vector< double > &phi) override
Definition: SphericalDataNumerical.cpp:546
double getSmoothness() const override
Definition: SphericalDataNumerical.cpp:611
double d_cutoff
Definition: SphericalDataNumerical.h:115
void initSpline()
Definition: SphericalDataNumerical.cpp:320
double d_polarAngleTolerance
Definition: SphericalDataNumerical.h:118
std::vector< double > d_radialValues
Definition: SphericalDataNumerical.h:114
std::vector< double > getGradientValue(const std::vector< utils::Point > &point, const utils::Point &origin) override
Definition: SphericalDataNumerical.cpp:350
Definition: SphericalData.h:40
Definition: SphericalHarmonicFunctions.h:17
Definition: PointImpl.h:13
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8