Planetary Orbital Evolution due to Tides
Orbital evolution of two objects experiencing tides
InterpolationQuantities.h
Go to the documentation of this file.
1 
9 #ifndef __STELLAR_EVOLUTION_QUANTITIES_H
10 #define __STELLAR_EVOLUTION_QUANTITIES_H
11 
12 #include <vector>
13 #include <string>
14 
15 namespace StellarEvolution {
16 
18  enum QuantityID {
20  RADIUS = 0,
21 
24  ICONV,
25 
27  LUM,
28 
31 
35 
37  MRAD,
38 
40  RRAD,
41 
44  };
45 
46  static const std::vector<std::string> QUANTITY_NAME {
47  "R*",
48  "Iconv",
49  "L*",
50  "Irad",
51  "Mrad",
52  "Rrad",
53  };
54 
55 
56 }//End StellarEvolution namespace.
57 
58 #endif
The index of the first core quantity.
RADIUS
The derivative w.r.t. the radius of the body in .
const int LUM
Identifier for the stellar luminosity as an interpolation quantity.
Definition: CInterface.cpp:13
const int NUM_QUANTITIES
The number of interpolation quantities currentyl supported.
Definition: CInterface.cpp:17
QuantityID
Defines the quantities tracked by stellar evolution and their order.