00001
00002
00008
00009
00010
00012
00013 #ifndef __EARTH_CENTRALBODY_H__
00014 #define __EARTH_CENTRALBODY_H__
00015 #include "math.h"
00016 #include "Rotation.h"
00017
00018 #include "CentralBody.h"
00019 #define PI 3.141592
00020
00021 namespace O_SESSAME {
00022
00024 const double GRAVITATIONAL_CONSTANT = 6.669 * pow(10.0,-11.0);
00026 const double deg2rad = (float)PI / 180.0;
00027
00028 class EarthCentralBody : public CentralBody
00029 {
00030 public:
00031 EarthCentralBody();
00032
00033 private:
00034 };
00035 }
00036
00037 #endif
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054