The focal ratio, or f-ratio as it is also known, is a very important number when we start talking about astro-photography.
The f-ratio is defined as the focal length of the telescope divided by the aperture of the telescope, and is known as the speed of the telescope. that is, a telescope with a f-ratio of f/4 is “faster” than a telescope with a f-ratio of f/8.
The “faster” the telescope, the brighter the image will be, which means that the length of exposures for photography don’t need to be as long to capture the same amount of light. The advantage of a “slower” telescope though is that images will have greater depth, meaning that sharpness over the whole image is better, so there is a little bit of a trade-off depending on what you are trying to do.
public static double CalcFRatio(double FocalLen, double Aperture)
{
return FocalLen / Aperture;
}
public static double CalcFocalLen(double FRatio, double Aperture)
{
return FRatio * Aperture;
}
public static double CalcAperture(double FRatio, double FocalLen)
{
return FocalLen / FRatio;
}
Related posts:
- Astronomical calculations in C#: Telescope magnification and focal length One of the most misunderstood concepts in astronomy for a...
- Astronomical calculations in C#: Airy discs Airy discs are a troublesome phenomenon encountered with every telescope....
- Astronomical calculations in C#: The distance to the horizon Ok. So maybe this is not quite strictly and astronomical...
- Astronomical calculations in C#: Sidereal time Sidereal time is the time in relation to the stars....
- Astronomical calculations in C#: The Julian day The Julian day is the standard form of reporting the...
Related posts brought to you by Yet Another Related Posts Plugin.
Serge Meunier is a software developer living in Cape Town, South Africa. He loves programming, fencing, philosophy, feeding his internet addiction, and, of course, dogs.
Comments