]> git.mxchange.org Git - simgear.git/blob - simgear/ephemeris/star.cxx
Manage OSG object cache explicitly
[simgear.git] / simgear / ephemeris / star.cxx
1 /**************************************************************************
2  * star.cxx
3  * Written by Durk Talsma. Originally started October 1997, for distribution  
4  * with the FlightGear project. Version 2 was written in August and 
5  * September 1998. This code is based upon algorithms and data kindly 
6  * provided by Mr. Paul Schlyter. (pausch@saaf.se). 
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21  *
22  * $Id$
23  **************************************************************************/
24
25
26 #ifdef __BORLANDC__
27 #  define exception c_exception
28 #endif
29 #include <math.h>
30
31 #include <simgear/debug/logstream.hxx>
32
33 #include "star.hxx"
34
35
36 /*************************************************************************
37  * Star::Star(double mjd)
38  * Public constructor for class Star
39  * Argument: The current time.
40  * the hard coded orbital elements our sun are passed to 
41  * CelestialBody::CelestialBody();
42  * note that the word sun is avoided, in order to prevent some compilation
43  * problems on sun systems 
44  ************************************************************************/
45 Star::Star(double mjd) :
46     CelestialBody (0.000000,  0.0000000000,
47                    0.0000,    0.00000,
48                    282.9404,  4.7093500E-5,     
49                    1.0000000, 0.000000, 
50                    0.016709,  -1.151E-9,
51                    356.0470,  0.98560025850, mjd)
52 {
53     distance = 0.0;
54 }
55
56 Star::Star() :
57     CelestialBody (0.000000,  0.0000000000,
58                    0.0000,    0.00000,
59                    282.9404,  4.7093500E-5,     
60                    1.0000000, 0.000000, 
61                    0.016709,  -1.151E-9,
62                    356.0470,  0.98560025850)
63 {
64     distance = 0.0;
65 }
66
67 Star::~Star()
68 {
69 }
70
71
72 /*************************************************************************
73  * void Star::updatePosition(double mjd, Star *ourSun)
74  * 
75  * calculates the current position of our sun.
76  *************************************************************************/
77 void Star::updatePosition(double mjd)
78 {
79   double 
80     actTime, eccAnom, 
81     xv, yv, v, r,
82     xe, ecl;
83
84   updateOrbElements(mjd);
85   
86   actTime = sgCalcActTime(mjd);
87   ecl = SGD_DEGREES_TO_RADIANS * (23.4393 - 3.563E-7 * actTime); // Angle in Radians
88   eccAnom = sgCalcEccAnom(M, e);  // Calculate the eccentric Anomaly (also known as solving Kepler's equation)
89   
90   xv = cos(eccAnom) - e;
91   yv = sqrt (1.0 - e*e) * sin(eccAnom);
92   v = atan2 (yv, xv);                   // the sun's true anomaly
93   distance = r = sqrt (xv*xv + yv*yv);  // and its distance
94
95   lonEcl = v + w; // the sun's true longitude
96   latEcl = 0;
97
98   // convert the sun's true longitude to ecliptic rectangular 
99   // geocentric coordinates (xs, ys)
100   xs = r * cos (lonEcl);
101   ys = r * sin (lonEcl);
102
103   // convert ecliptic coordinates to equatorial rectangular
104   // geocentric coordinates
105
106   xe = xs;
107   ye = ys * cos (ecl);
108   ze = ys * sin (ecl);
109
110   // And finally, calculate right ascension and declination
111   rightAscension = atan2 (ye, xe);
112   declination = atan2 (ze, sqrt (xe*xe + ye*ye));
113 }