ABACUS develop
Atomic-orbital Based Ab-initio Computation at UStc
Loading...
Searching...
No Matches
test_sph.h
Go to the documentation of this file.
1#ifndef TEST_SPH_H
2#define TEST_SPH_H
3#include <bits/stdc++.h>
4// using namespace std;
5void sph_harm(const int& Lmax,
6 const double& xdr,
7 const double& ydr,
8 const double& zdr,
9 std::vector<double>& rly,
10 double* ylmcoef);
11
12void grad_rl_sph_harm(const int& Lmax, // max momentum of L
13 const double& x,
14 const double& y,
15 const double& z,
16 double* rly,
17 double** grly,
18 const double* ylmcoef);
19#endif
void grad_rl_sph_harm(const int &Lmax, const double &x, const double &y, const double &z, double *rly, double **grly, const double *ylmcoef)
Definition test_sph.cpp:162
void sph_harm(const int &Lmax, const double &xdr, const double &ydr, const double &zdr, std::vector< double > &rly, double *ylmcoef)
Definition test_sph.cpp:4