How Can I Find Correction Factors for Tropical Years in Historical Data?

AI Thread Summary
The discussion revolves around finding correction factors for tropical years in historical data, specifically using a derived C code that calculates tropical years based on Julian dates. The constant T in the code is assumed to be a correction factor for the epoch based in 2000, linked to the Julian date of January 1, 2000. Participants seek guidance on where to find similar T values for earlier epochs and inquire about the algorithm's applicability over time. There is a mention of a resource from Lyle Huber that may provide additional context. Overall, the conversation highlights the need for historical correction factors in astronomical calculations.
jim mcnamara
Mentor
Messages
4,789
Reaction score
3,852
Using this:
http://scienceworld.wolfram.com/astronomy/TropicalYear.html
I derived this unix C code, which duplicates expected outputs. Note the constant T which is a correction factor for the epoch based in 2000, or so I assume because 2451545 is Jan 1 2000. And I have about epochs in calculations.

Questions:

1. I'm not an astronomer, where do I find similar T values for past times?

2. How far back in time does the algorithm below "work"? From: Lyle Huber at nmsu:
http://astro.nmsu.edu/~lhuber/leaphist.html

Code:
#include <stdlib.h>
#include <float.h>
#include <stdio.h>

double tropical_year(const double JD)
{
	const double T= (JD - 2451545.)/ 36526.;  /* use epoch 2000 */
	double T2=T * T;
	double T3=T2 * T;
	double result=365.2421896698 -(.00000615359 *T)
	                             -(7.29e-10 * T2)
	                             +(2.64e-10 *T3);
	return result;
}

int process(const double JD)
{
	int retval=0;
	
	if(JD > DBL_EPSILON)
		printf("JD %.2f  Tropical year:%.6f\n", JD, tropical_year(JD));
	else
	{
		printf("JD %f  Tropical year:undefined\n", JD);
	    retval=1;	
	}	
	return retval;
}

int main(int argc, char **argv)
{
	int retval=0;
	double JD=0.;
	
	if(argc>1) /* read arg list */
	{
		int i=0;
		for(i=1; i < argc; i++)
		{
			JD=atof(argv[i]);
			retval!=process(JD);
		}		
	}
	else /* read from stdin */
	{
		char tmp[128]={0x0};
		while(fgets(tmp, sizeof(tmp), stdin)!=NULL)
		{
			JD=atof(tmp);
			retval!=process(JD);
		}
	}
	return 0;
}
 
Last edited by a moderator:
Astronomy news on Phys.org
Not really.
 
  • Like
Likes Greg Bernhardt
Is a homemade radio telescope realistic? There seems to be a confluence of multiple technologies that makes the situation better than when I was a wee lad: software-defined radio (SDR), the easy availability of satellite dishes, surveillance drives, and fast CPUs. Let's take a step back - it is trivial to see the sun in radio. An old analog TV, a set of "rabbit ears" antenna, and you're good to go. Point the antenna at the sun (i.e. the ears are perpendicular to it) and there is...
3I/ATLAS, also known as C/2025 N1 (ATLAS) and formerly designated as A11pl3Z, is an iinterstellar comet. It was discovered by the Asteroid Terrestrial-impact Last Alert System (ATLAS) station at Río Hurtado, Chile on 1 July 2025. Note: it was mentioned (as A11pl3Z) by DaveE in a new member's introductory thread. https://www.physicsforums.com/threads/brian-cox-lead-me-here.1081670/post-7274146 https://earthsky.org/space/new-interstellar-object-candidate-heading-toward-the-sun-a11pl3z/ One...

Similar threads

Back
Top