DFT-FE 1.1.0-pre
Density Functional Theory With Finite-Elements
Loading...
Searching...
No Matches
AtomCenteredSphericalFunctionSinc.h
Go to the documentation of this file.
1// ---------------------------------------------------------------------
2//
3// Copyright (c) 2017-2025 The Regents of the University of Michigan and DFT-FE
4// authors.
5//
6// This file is part of the DFT-FE code.
7//
8// The DFT-FE code is free software; you can use it, redistribute
9// it, and/or modify it under the terms of the GNU Lesser General
10// Public License as published by the Free Software Foundation; either
11// version 2.1 of the License, or (at your option) any later version.
12// The full text of the license can be found in the file LICENSE at
13// the top level of the DFT-FE distribution.
14//
15// ---------------------------------------------------------------------
16//
17// @author Vishal Subramanian, Kartick Ramakrishnan, Sambit Das
18//
19
20#ifndef DFTFE_ATOMCENTEREDSPHERICALFUNCTIONSINC_H
21#define DFTFE_ATOMCENTEREDSPHERICALFUNCTIONSINC_H
22
24
25#include "boost/math/special_functions/sinc.hpp"
26#include <boost/math/quadrature/gauss_kronrod.hpp>
27#include <vector>
28#include <cmath>
29#include <dftUtils.h>
30namespace dftfe
31{
34 {
35 public:
37 double RmaxParameter,
38 unsigned int lParameter);
39
40 double
41 getRadialValue(double r) const override;
42
43 unsigned int
45
46 double
47 getrMinVal() const;
48
49 std::vector<double>
50 getDerivativeValue(double r) const override;
51
52 private:
53 double d_rMinVal;
55 double d_Rc;
56 };
57
58} // end of namespace dftfe
59
60#endif // DFTFE_ATOMCENTEREDSPHERICALFUNCTIONSINC_H
Definition AtomCenteredSphericalFunctionBase.h:28
double d_Rc
Definition AtomCenteredSphericalFunctionSinc.h:55
std::vector< double > getDerivativeValue(double r) const override
Computes the Radial Value, Radial-deriative and Radial-second derivative of the Function at distance ...
AtomCenteredSphericalFunctionSinc(double RcParameter, double RmaxParameter, unsigned int lParameter)
double d_NormalizationConstant
Definition AtomCenteredSphericalFunctionSinc.h:54
double getRadialValue(double r) const override
Computes the Radial Value of the Function at distance r.
double d_rMinVal
Definition AtomCenteredSphericalFunctionSinc.h:53
Definition pseudoPotentialToDftfeConverter.cc:34