ВНИМАНИЕ! На форуме начался конкурс астрофотография месяца - СЕНТЯБРЬ!
0 Пользователей и 1 Гость просматривают эту тему.
/* ------------------------------------------------------------------------------** function sun** this function calculates the geocentric equatorial position vector* the sun given the julian date. this is the low precision formula and* is valid for years from 1950 to 2050. accuaracy of apparent coordinates* is 0.01 degrees. notice many of the calculations are performed in* degrees, and are not changed until later. this is due to the fact that* the almanac uses degrees exclusively in their formulations.** author : david vallado 719-573-2600 27 may 2002** revisions* vallado - fix mean lon of sun 7 mat 2004** inputs description range / units* jd - julian date days from 4713 bc** outputs :* rsun - ijk position vector of the sun au* rtasc - right ascension rad* decl - declination rad** locals :* meanlong - mean longitude* meananomaly - mean anomaly* eclplong - ecliptic longitude* obliquity - mean obliquity of the ecliptic* tut1 - julian centuries of ut1 from* jan 1, 2000 12h* ttdb - julian centuries of tdb from* jan 1, 2000 12h* hr - hours 0 .. 24 10* min - minutes 0 .. 59 15* sec - seconds 0.0 .. 59.99 30.00* temp - temporary variable* deg - degrees** coupling :* none.** references :* vallado 2013, 279, alg 29, ex 5-1* --------------------------------------------------------------------------- */void sun ( double jd, double rsun[3], double& rtasc, double& decl ) { double twopi, deg2rad; double tut1, meanlong, ttdb, meananomaly, eclplong, obliquity, magr; twopi = 2.0 * pi; deg2rad = pi/180.0; // ------------------------- implementation ----------------- // ------------------- initialize values -------------------- tut1= ( jd - 2451545.0 )/ 36525.0; meanlong= 280.460 + 36000.77 * tut1; meanlong= fmod( meanlong,360.0 ); //deg ttdb= tut1; meananomaly= 357.5277233 + 35999.05034 * ttdb; meananomaly= fmod( meananomaly * deg2rad,twopi ); //rad if ( meananomaly < 0.0 ) { meananomaly= twopi + meananomaly; } eclplong= meanlong + 1.914666471 * sin(meananomaly) + 0.019994643 * sin(2.0 * meananomaly); //deg obliquity= 23.439291 - 0.0130042 * ttdb; //deg meanlong = meanlong * deg2rad; if ( meanlong < 0.0 ) { meanlong= twopi + meanlong; } eclplong = eclplong * deg2rad; obliquity= obliquity * deg2rad; // --------- find magnitude of sun vector, ) components ------ magr= 1.000140612 - 0.016708617 * cos( meananomaly ) - 0.000139589 * cos( 2.0 *meananomaly ); // in au's rsun[0]= magr * cos( eclplong ); rsun[1]= magr * cos(obliquity) * sin(eclplong); rsun[2]= magr * sin(obliquity) * sin(eclplong); rtasc= atan( cos(obliquity) * tan(eclplong) ); // --- check that rtasc is in the same quadrant as eclplong ---- if ( eclplong < 0.0 ) { eclplong= eclplong + twopi; // make sure it's in 0 to 2pi range } if ( fabs( eclplong-rtasc ) > pi * 0.5 ) { rtasc= rtasc + 0.5 * pi * astMath::round( (eclplong - rtasc)/(0.5 * pi) ); } decl = asin( sin(obliquity) * sin(eclplong) ); } // sun