ABACUS develop
Atomic-orbital Based Ab-initio Computation at UStc
Loading...
Searching...
No Matches
projgen.h
Go to the documentation of this file.
1#ifndef MODULE_NAO_PROJGEN_H_
2#define MODULE_NAO_PROJGEN_H_
3
4#include <vector>
5
27void projgen(
28 const int l,
29 const int nr,
30 const double* r,
31 const double* chi,
32 const double rcut,
33 const int nbes,
34 std::vector<double>& alpha);
35
36void smoothgen(
37 const int nr,
38 const double* r,
39 const double* chi,
40 const double rcut,
41 std::vector<double>& alpha);
42
43#endif
void projgen(const int l, const int nr, const double *r, const double *chi, const double rcut, const int nbes, std::vector< double > &alpha)
Generates a projector's radial function for DFT+U.
Definition projgen.cpp:15
void smoothgen(const int nr, const double *r, const double *chi, const double rcut, std::vector< double > &alpha)
Definition projgen.cpp:79