Planetary Orbital Evolution due to Tides
Orbital evolution of two objects experiencing tides
mass_feh_interp.h
Go to the documentation of this file.
1 
8 #ifndef __MASS_METALLICITY_INTERP
9 #define __MASS_METALLICITY_INTERP
10 
11 #include "../Core/SharedLibraryExportMacros.h"
12 #include "../third_party_libs/alglib/alglib/src/interpolation.h"
13 #include <cassert>
14 
15 namespace StellarEvolution {
16 
18  LIB_LOCAL double mass_feh_interp(
21  const alglib::real_1d_array &interp_masses,
22 
25  const alglib::real_1d_array &interp_feh,
26 
29  const alglib::real_1d_array &interp_values,
30 
32  double stellar_mass,
33 
35  double stellar_feh
36  );
37 
38 }
39 
40 #endif