]> git.mxchange.org Git - simgear.git/commitdiff
Sg-ifying names.
authorcurt <curt>
Sat, 8 Jul 2000 21:30:23 +0000 (21:30 +0000)
committercurt <curt>
Sat, 8 Jul 2000 21:30:23 +0000 (21:30 +0000)
simgear/ephemeris/celestialBody.cxx
simgear/ephemeris/celestialBody.hxx
simgear/ephemeris/moon.cxx
simgear/ephemeris/saturn.cxx
simgear/ephemeris/star.cxx

index d2b1b722288556b84535900ff34fa6bb86f7cb7f..053dfe83a62617842e00de1f9e2058b7ffcebf18 100644 (file)
@@ -59,12 +59,12 @@ void CelestialBody::updatePosition(double mjd, Star *ourSun)
     xv, yv, xh, yh, zh, xg, yg, zg, xe, ye, ze;
 
   updateOrbElements(mjd);
-  actTime = fgCalcActTime(mjd);
+  actTime = sgCalcActTime(mjd);
 
   // calcualate the angle bewteen ecliptic and equatorial coordinate system
   ecl = DEG_TO_RAD * (23.4393 - 3.563E-7 *actTime);
   
-  eccAnom = fgCalcEccAnom(M, e);  //calculate the eccentric anomaly
+  eccAnom = sgCalcEccAnom(M, e);  //calculate the eccentric anomaly
   xv = a * (cos(eccAnom) - e);
   yv = a * (sqrt (1.0 - e*e) * sin(eccAnom));
   v = atan2(yv, xv);           // the planet's true anomaly
@@ -111,7 +111,7 @@ void CelestialBody::updatePosition(double mjd, Star *ourSun)
 };
 
 /****************************************************************************
- * double CelestialBody::fgCalcEccAnom(double M, double e)
+ * double CelestialBody::sgCalcEccAnom(double M, double e)
  * this private member calculates the eccentric anomaly of a celestial body, 
  * given its mean anomaly and eccentricity.
  * 
@@ -136,7 +136,7 @@ void CelestialBody::updatePosition(double mjd, Star *ourSun)
  * the eccentric anomaly
  *
  ****************************************************************************/
-double CelestialBody::fgCalcEccAnom(double M, double e)
+double CelestialBody::sgCalcEccAnom(double M, double e)
 {
   double 
     eccAnom, E0, E1, diff;
index a7a79d9695167441f44ba7320921d2b6bf9b8e09..9311b78c1d5aa34eab72cace03e3b417f085fe04 100644 (file)
@@ -60,8 +60,8 @@ protected:              // make the data protected, in order to give the
   double magnitude;
   double lonEcl, latEcl;
 
-  double fgCalcEccAnom(double M, double e);
-  double fgCalcActTime(double mjd);
+  double sgCalcEccAnom(double M, double e);
+  double sgCalcActTime(double mjd);
   void updateOrbElements(double mjd);
 
 public:
@@ -149,7 +149,7 @@ inline CelestialBody::CelestialBody(double Nf, double Ns,
  ***************************************************************************/
 inline void CelestialBody::updateOrbElements(double mjd)
 {
-  double actTime = fgCalcActTime(mjd);
+  double actTime = sgCalcActTime(mjd);
    M = DEG_TO_RAD * (MFirst + (MSec * actTime));
    w = DEG_TO_RAD * (wFirst + (wSec * actTime));
    N = DEG_TO_RAD * (NFirst + (NSec * actTime));
@@ -158,7 +158,7 @@ inline void CelestialBody::updateOrbElements(double mjd)
    a = aFirst + (aSec * actTime);
 }
 /*****************************************************************************
- * inline double CelestialBody::fgCalcActTime(double mjd)
+ * inline double CelestialBody::sgCalcActTime(double mjd)
  * this private member function returns the offset in days from the epoch for
  * wich the orbital elements are calculated (Jan, 1st, 2000).
  * 
@@ -166,7 +166,7 @@ inline void CelestialBody::updateOrbElements(double mjd)
  *
  * return value: the (fractional) number of days until Jan 1, 2000.
  ****************************************************************************/
-inline double CelestialBody::fgCalcActTime(double mjd)
+inline double CelestialBody::sgCalcActTime(double mjd)
 {
   return (mjd - 36523.5);
 }
index 7eda277579f2a09eec00640f8bc7f1bbcee4fbe2..1226e165a35ea7c42c46d8be24ee63657be971c3 100644 (file)
@@ -88,12 +88,12 @@ void Moon::updatePosition(double mjd, double lst, double lat, Star *ourSun)
     geoRa, geoDec;
   
   updateOrbElements(mjd);
-  actTime = fgCalcActTime(mjd);
+  actTime = sgCalcActTime(mjd);
 
   // calculate the angle between ecliptic and equatorial coordinate system
   // in Radians
   ecl = ((DEG_TO_RAD * 23.4393) - (DEG_TO_RAD * 3.563E-7) * actTime);  
-  eccAnom = fgCalcEccAnom(M, e);  // Calculate the eccentric anomaly
+  eccAnom = sgCalcEccAnom(M, e);  // Calculate the eccentric anomaly
   xv = a * (cos(eccAnom) - e);
   yv = a * (sqrt(1.0 - e*e) * sin(eccAnom));
   v = atan2(yv, xv);               // the moon's true anomaly
index 0f94f6403b58b968589d15617591007a270d8bef..fcb12a1ffae75240577e6e179bbbe3b0e85df5af 100644 (file)
@@ -67,7 +67,7 @@ void Saturn::updatePosition(double mjd, Star *ourSun)
 {
   CelestialBody::updatePosition(mjd, ourSun);
   
-  double actTime = fgCalcActTime(mjd);
+  double actTime = sgCalcActTime(mjd);
   double ir = 0.4897394;
   double Nr = 2.9585076 + 6.6672E-7*actTime;
   double B = asin (sin(declination) * cos(ir) - 
index 01f20b729520b3977bbc36e7faaca63a93040cd8..6e07868a6f12f03b7a1a166739e063f98c805881 100644 (file)
@@ -84,9 +84,9 @@ void Star::updatePosition(double mjd)
 
   updateOrbElements(mjd);
   
-  actTime = fgCalcActTime(mjd);
+  actTime = sgCalcActTime(mjd);
   ecl = DEG_TO_RAD * (23.4393 - 3.563E-7 * actTime); // Angle in Radians
-  eccAnom = fgCalcEccAnom(M, e);  // Calculate the eccentric Anomaly (also known as solving Kepler's equation)
+  eccAnom = sgCalcEccAnom(M, e);  // Calculate the eccentric Anomaly (also known as solving Kepler's equation)
   
   xv = cos(eccAnom) - e;
   yv = sqrt (1.0 - e*e) * sin(eccAnom);