11 lines
439 B
C
11 lines
439 B
C
#ifndef EPHEMERIDE_H_INCLUDED
|
|
#define EPHEMERIDE_H_INCLUDED
|
|
|
|
int rangJour(int day,int month,int year);//renvoi le rang du jour
|
|
float equationDuTemps(int N);// renvoi l'equation de temps
|
|
float declinaisonSolaire(int N);//renvoi la declinaison solaire
|
|
float angleHoraireSoeil(int N, float LATITUDE);// renvoi l'angle horaire du soleil
|
|
float azimut(int N, float LATITUDE);
|
|
float angleS(int N, float LATITUDE);
|
|
#endif // EPHEMERIDE_H_INCLUDED
|