summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/kssun.h
blob: 76b79143b5194d8f03c47e516963a46a36fc6404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/***************************************************************************
                          kssun.h  -  K Desktop Planetarium
                             -------------------
    begin                : Sun Jan 29 2002
    copyright            : (C) 2002 by Mark Hollomon
    email                : mhh@mindspring.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef KSSUN_H
#define KSSUN_H

#include <tqstring.h>
#include "ksplanet.h"

/**@class KSSun
	*Child class of KSPlanetBase; encapsulates information about the Sun.
	*@short Provides necessary information about the Sun.
	*@author Mark Hollomon
	*@version 1.0
	*/

class KStarsData;

class KSSun : public KSPlanet  {
public:
/**Constructor.  Defines constants needed by findPosition().
	*Sets Ecliptic coordinates appropriate for J2000.
	*@param kd pointer to KStarsData object
	*@param fn filename of Sun image
	*@param pSize physical diameter of the Sun, in km
	*/
	KSSun(KStarsData *kd, TQString fn = "", double pSize=0 );

/**Destructor (empty)
	*/
	virtual ~KSSun() {}

/**Read orbital data from disk
	*@note reimplemented from KSPlanet
	*@note we actually read Earth's orbital data.  The Sun's geocentric
	*ecliptic coordinates are by definition exactly the opposite of the 
	*Earth's heliocentric ecliptic coordinates.
	*/
	virtual bool loadData();

	long double springEquinox(int year);

	long double summerSolstice(int year);

	long double autumnEquinox(int year);

	long double winterSolstice(int year);
	
	long double equinox(int year, int d, int m, double angle);


protected:
/**Determine geocentric RA, Dec coordinates for the Epoch given in the argument.
	*@p Epoch current Julian Date
	*@p Earth pointer to earth object
	*/
	virtual bool findGeocentricPosition( const KSNumbers *num, const KSPlanetBase *Earth=NULL );
};
	long double equinox(int year, int d, int m, int angle);

#endif