Antkeeper
0.0.1
|
A simple celestial body. More...
#include <celestial-body-component.hpp>
Public Attributes | |
double | radius |
Mean radius of the body, in meters. More... | |
double | mass |
Mass of the body, in kilograms. More... | |
std::vector< double > | pole_ra |
Polynomial coefficients, in descending order of degree, of the right ascension of the body's north pole, in radians, w.r.t. Julian centuries (36525 days) from epoch. More... | |
std::vector< double > | pole_dec |
Polynomial coefficients, in descending order of degree, of the declination of the body's north pole, in radians, w.r.t. Julian centuries (36525 days) from epoch. More... | |
std::vector< double > | prime_meridian |
Polynomial coefficients, in descending order of degree, of the rotation state of the body's prime meridian, in radians, w.r.t. days from epoch. More... | |
double | albedo |
Geometric albedo. More... | |
A simple celestial body.
Definition at line 25 of file celestial-body-component.hpp.
double celestial_body_component::albedo |
Geometric albedo.
Definition at line 57 of file celestial-body-component.hpp.
double celestial_body_component::mass |
Mass of the body, in kilograms.
Definition at line 31 of file celestial-body-component.hpp.
std::vector<double> celestial_body_component::pole_dec |
Polynomial coefficients, in descending order of degree, of the declination of the body's north pole, in radians, w.r.t. Julian centuries (36525 days) from epoch.
Definition at line 37 of file celestial-body-component.hpp.
std::vector<double> celestial_body_component::pole_ra |
Polynomial coefficients, in descending order of degree, of the right ascension of the body's north pole, in radians, w.r.t. Julian centuries (36525 days) from epoch.
Definition at line 34 of file celestial-body-component.hpp.
std::vector<double> celestial_body_component::prime_meridian |
Polynomial coefficients, in descending order of degree, of the rotation state of the body's prime meridian, in radians, w.r.t. days from epoch.
Definition at line 40 of file celestial-body-component.hpp.
double celestial_body_component::radius |
Mean radius of the body, in meters.
Definition at line 28 of file celestial-body-component.hpp.