Line data Source code
1 1 : // Distributed under the MIT License.
2 : // See LICENSE.txt for details.
3 :
4 : #pragma once
5 :
6 : #include <array>
7 :
8 : /// \file
9 : /// These functions are generated by Mathematica. They transform results from
10 : /// the GrEffectiveSource code into our form of the equations. See
11 : /// CircularOrbit.hpp for details.
12 :
13 : namespace GrSelfForce::detail {
14 :
15 : void convert_effsource_psi(int m, double a, double r, double th,
16 : std::array<double, 10>& real_orig,
17 : std::array<double, 10>& imag_orig,
18 : std::array<double, 10>& real_conv,
19 : std::array<double, 10>& imag_conv);
20 :
21 : void convert_effsource_Seff(int m, double a, double r, double th,
22 : std::array<double, 10>& real_orig,
23 : std::array<double, 10>& imag_orig,
24 : std::array<double, 10>& real_conv,
25 : std::array<double, 10>& imag_conv);
26 :
27 : void convert_effsource_dpsidtheta(int m, double a, double r, double th,
28 : std::array<double, 10>& real_orig,
29 : std::array<double, 10>& imag_orig,
30 : std::array<double, 10>& real_orig_dth,
31 : std::array<double, 10>& imag_orig_dth,
32 : std::array<double, 10>& real_conv_dth,
33 : std::array<double, 10>& imag_conv_dth);
34 :
35 : void convert_effsource_dpsidrstar(int m, double a, double r, double th,
36 : std::array<double, 10>& real_orig,
37 : std::array<double, 10>& imag_orig,
38 : std::array<double, 10>& real_orig_dr,
39 : std::array<double, 10>& imag_orig_dr,
40 : std::array<double, 10>& real_conv_drs,
41 : std::array<double, 10>& imag_conv_drs);
42 :
43 : } // namespace GrSelfForce::detail
|