-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsph.hpp
28 lines (22 loc) · 783 Bytes
/
sph.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once
#include <cmath>
#include <boost/math/constants/constants.hpp>
#include <boost/math/special_functions/spherical_harmonic.hpp>
namespace sph
{
using real_t = double;
// see the document for the definition
inline real_t sph_harm(const unsigned int& l, const int& m, const real_t& theta, const real_t& phi) {
using namespace boost::math;
constexpr real_t sqrt2{double_constants::root_two};
if (m > 0) {
return sqrt2 * (m % 2 == 0? 1: -1) * spherical_harmonic_r(l, m, theta, phi);
}
else if (m < 0) {
return sqrt2 * (m % 2 == 0? 1: -1) * spherical_harmonic_i(l, -m, theta, phi);
}
else {// m == 0 {
return spherical_harmonic_r(l, 0, theta, phi);
}
}
}