-
Install using Visual Studio Package Manager:
Install-Package Zool.Pray
-
Or if you are using .NET CLI:
dotnet add package Zool.Pray
The equation of time describes the difference of mean solar time (as shown by the clock) and apparent solar time (as shown by sundial). The equation of time is due to two phenomena; the Earth's rotational axis tilt of 23.5° and the elliptical orbit of the Earth [2].
As shown in the graph, apparent time can be ahead of mean time by as much as 16 minutes and 33 seconds (around November 3rd) or can be behind by as much as 14 minutes and 6 seconds (around February 12th).
The equation of time can be calculated using the following formula [3]:
-
Compute the numbers of days and fraction, denoted as
D
, from J2000.0 epoch which is equivalent to January 1.5, 2000 in Gregorian or 2451545.0 in Julian Date:D = JD - 2451545.0
where
JD
is the Julian Date of interest. -
Then, compute:
// The mean anomaly of the sun, `g`. g = 357.529 + (0.98560028 * D) // The mean longitude of the sun, `q`. q = 280.459 + (0.98564736 * D) // The geocentric apparent ecliptic longitude of the sun (adjusted for aberration), L. L = q + (1.915 * sin(g)) + (0.020 * sin(2 * g))
All constants are in degrees therefore
g
,q
andL
. Computedg
,q
andL
must be reduced to the range of0°
to360°
. -
Compute the mean obliquity of the ecliptic in degrees,
e
:e = 23.439 - (0.0000003.6 * D)
-
Once the apparent ecliptic longitude of the sun,
L
, and the mean obliquity of the ecliptic,e
have been computed, the right ascension,RA
of the sun can be calculated:RA = atan2(cos(e) * sin(L), cos(L))
-
Thus, equation of time can be obtained as follows:
EqT = (q / 15) - RA
The declination of the Sun is the measurement of the angle between the Sun’s rays and the Earth’s equatorial plane. This principle is used to explain why the earth experience different seasons which are four in some countries and only two in the others.
The Earth’s axis is tilted by 23.5 degrees away from the solar plane. The Sun’s declination varies throughout the year. Its declination becomes zero during the spring equinox and reaches the maximum declination angle of 23.5 degrees during the summer solstice. It reverts to zero declination when fall equinox comes and drops to the negative 23.5 declination during the winter solstice [4][5].
The sun's declination can be computed using the formula stated above from step 1 until step 3. Then, the declination, d
can be obtained by:
d = asin(sin(e) * sin(L))
The following formula can be used to calculate the difference of time between the mid day and the time when the sun reaches the α
angle below the horizon, T(α)
[1]:
T(α) = acos((-sin(α) - (sin(d) * sin(latitude))) / (cos(d) * cos(latitude))) / 15
This library uses the following formula for applying adjustment to the calculated prayer times (denoted as adj
):
adj = timezone - longitude / 15
Dhuhr prayer time arrives when the sun begins to decline after reaching its highest point on the sky [1]. To compute dhuhr prayer time, first, the time of the mid day is calculated:
midday = 12 - EqT
Then, by adding adjustment, adj
to the calculated mid day time, we can obtained the dhuhr prayer time:
dhuhr = midday + adj
This library, additionally, added 65 seconds to the calculated dhuhr time above as we use the following fiqh method:
Dhuhr is when the Sun's disk comes out of its zenith line, which is a line between the observer and the center of the Sun when it is at the highest point [6].
To calculate fajr and isha prayer times, these parameters are required:
- The sun declination,
d
. - The midday time,
midday
. - Sun angle,
α
for fajr and isha. - Location's latitude,
latitude
.
First, T(α)
is calculated using this formula. Then, the fajr time can be obtained by subtracting calculated T(α)
from the midday
:
fajr = midday - T(α)
The isha time can be obtained by adding calculated T(α)
to the midday
:
isha = midday + T(α)
There are several opinions about the angle to be used for calculating fajr and isha prayer times. The following table shows the methods offered by this library including their fajr and isha angles used:
Method | Fajr angle | Isha angle |
---|---|---|
Muslim World League | 18.0 | 17.0 |
Islamic Society of North America | 15.0 | 15.0 |
Egyptian General Authority of Survey | 19.5 | 17.5 |
Umm Al-Qura University, Mecca | 18.5* | N/A** |
University of Islamic Sciences, Karachi | 18.0 | 18.0 |
Union des Organisations Islamiques de France | 12.0 | 12.0 |
Majlis Ugama Islam Singapura | 20.0 | 18.0 |
Department of Islamic Advancement, Malaysia (JAKIM) | 20.0 | 18.0 |
Ithna Ashari | 16.0 | 14.0 |
Institute of Geophysics, University of Tehran | 17.7 | 14.0*** |
* Umm Al-Qura University, Mecca uses fajr angle of 19.0 before year 1430 in Islamic calendar.
** Umm Al-Qura University, Mecca does not specifies isha angle as it just add 90 minutes (120 in Ramadan) to the maghrib prayer time for obtaining isha prayer time.
*** Isha angle is not explicitly defined in method by Institute of Geophysics, University of Tehran.
The astronomical sunrise and sunset occur at α = 0
. Due to the refraction of light by terrestrial atmosphere, actual sunrise appears slightly before astronomical sunrise and actual sunset occurs slightly after astronomical sunset. Thus, to get the actual sunrise and sunset, the angle α
starts from a value of 0.833
[1]. If the elevation is greater than 0
, the angle can be calculated as follows:
α = 0.833 + (0.0347 * sqrt(elevation))
Then, the actual sunrise and sunset can be calculated as follows:
// Sunrise.
sunrise = midday - T(α)
// Sunset.
sunset = midday + T(α)
There are two main opinions for computing asr prayer time. Majority of fiqh's school (Shafi'i, Maliki and Hanbali) say that the asr prayer time is when the shadow's length of any object is equal to the length of the object itself plus the shadow's length of that object at noon [1].
First, the angle, α
is calculated using this formula:
// For shafi'i, maliki and hanbali, t = 1 while hanafi, t = 2
t = 1
α = -arccot(t + tan(latitude - d))
Then, asr prayer time is obtained using the following formula:
asr = midday + T(α)
From point view of Sunni, the beginning of the maghrib prayer time is once the sun has completely set beneath the horizon, which can be deduced as the same as the sunset time. This library add 1 minute to the sunset time as precaution. In Shia's point of view, the dominant opinion is that as long as the redness of the eastern sky which appears after sunset has not passed overhead, maghrib prayer should not be performed [1]. Usually, the calculate maghrib prayer time like the isha prayer time is calculated except the angle is replaced with the twilight angle:
α = twilight_angle
maghrib = midday + T(α)
The following table shows the angle used by Shia method:
Method | Twilight angle |
---|---|
Ithna Ashari | 4.0 |
Institute of Geophysics, University of Tehran | 4.5 |
Dhuha time arrives when a third of sunrise and fajr time difference is added to the sunrise time [7]. Thus, this library calculate the dhuha time as follows:
diff = sunrise - fajr
dhuha = sunrise + (diff / 3)
Midnight is generally calculated as the mean time from sunset to sunrise of the next day [1]:
diff = sunrise - sunset
midnight = sunset + (diff / 2)
However, in Shia point of view, the midnight (juridical midnight, the ending time for performing isha prayer) is calculated as the mean time from sunset to fajr [1]:
diff = fajr - sunset
midnight = sunset + (diff / 2)
using System;
using System.Globalization;
using NodaTime;
using Zool.Pray.Models;
namespace PrayerTimesExample
{
class Program
{
private const int Year = 2018;
private const int Month = 4;
private const int Day = 12;
private const double TimeZone = 8.0;
static void Main()
{
// Use April 12th, 2018.
var when = Instant.FromUtc(Year, Month, Day, 0, 0);
// Init settings.
var settings = new PrayerCalculationSettings();
// Set calculation method to JAKIM (Fajr: 18.0 and Isha: 20.0).
settings.CalculationMethod.SetCalculationMethodPreset(when, CalculationMethodPreset.DepartmentOfIslamicAdvancementOfMalaysia);
// Init location info.
var geo = new Geocoordinate(2.0, 101.0, 2.0);
// Generate prayer times for one day on April 12th, 2018.
var prayer = Prayers.On(when, settings, geo, TimeZone);
Console.WriteLine($"Prayer Times at [{geo.Latitude}, {geo.Longitude}, {geo.Altitude}] for April 12th, 2018:");
Console.WriteLine($"Imsak: {GetPrayerTimeString(prayer.Imsak)}");
Console.WriteLine($"Fajr: {GetPrayerTimeString(prayer.Fajr)}");
Console.WriteLine($"Sunrise: {GetPrayerTimeString(prayer.Sunrise)}");
Console.WriteLine($"Dhuha: {GetPrayerTimeString(prayer.Dhuha)}");
Console.WriteLine($"Dhuhr: {GetPrayerTimeString(prayer.Dhuhr)}");
Console.WriteLine($"Asr: {GetPrayerTimeString(prayer.Asr)}");
Console.WriteLine($"Sunset: {GetPrayerTimeString(prayer.Sunset)}");
Console.WriteLine($"Maghrib: {GetPrayerTimeString(prayer.Maghrib)}");
Console.WriteLine($"Isha: {GetPrayerTimeString(prayer.Isha)}");
Console.WriteLine($"Midnight: {GetPrayerTimeString(prayer.Midnight)}");
// Generate current prayer time
var current = Prayer.Now(settings, geo, TimeZone, SystemClock.Instance);
Console.WriteLine($"Current prayer at [{geo.Latitude}, {geo.Longitude}, {geo.Altitude}] for April 12th, 2018:");
Console.WriteLine($"{current.Type} - {GetPrayerTimeString(current.Time)}");
// Generate next prayer time
var next = Prayer.Next(settings, geo, TimeZone, SystemClock.Instance);
Console.WriteLine($"Next prayer at [{geo.Latitude}, {geo.Longitude}, {geo.Altitude}] for April 12th, 2018:");
Console.WriteLine($"{next.Type} - {GetPrayerTimeString(next.Time)}");
// Generate later prayer time
var later = Prayer.Later(settings, geo, TimeZone, SystemClock.Instance);
Console.WriteLine($"Later prayer at [{geo.Latitude}, {geo.Longitude}, {geo.Altitude}] for April 12th, 2018:");
Console.WriteLine($"{later.Type} - {GetPrayerTimeString(later.Time)}");
// Generate after later prayer time
var afterLater = Prayer.AfterLater(settings, geo, TimeZone, SystemClock.Instance);
Console.WriteLine($"After later prayer at [{geo.Latitude}, {geo.Longitude}, {geo.Altitude}] for April 12th, 2018:");
Console.WriteLine($"{afterLater.Type} - {GetPrayerTimeString(afterLater.Time)}");
}
static string GetPrayerTimeString(Instant instant)
{
var zoned = instant.InZone(DateTimeZone.ForOffset(Offset.FromTimeSpan(TimeSpan.FromHours(TimeZone))));
return zoned.ToString("HH:mm", CultureInfo.InvariantCulture);
}
}
}
-
"Prayer Times Calculation", Pray Times, 2018. [Online]. Available: http://praytimes.org/calculation. [Accessed: 13- Apr- 2018].
-
"Equation of time", Wikipedia, 2018. [Online]. Available: https://en.wikipedia.org/wiki/Equation_of_time. [Accessed: 13- Apr- 2018].
-
"Approximate Solar Coordinates", Astronomical Applications Department of the U.S. Naval Observatory, 2018. [Online]. Available: http://aa.usno.navy.mil/faq/docs/SunApprox.php. [Accessed: 13- Apr- 2018].
-
J. Rocheleau, "Declination Of The Sun", Planet Facts, 2018. [Online]. Available: http://planetfacts.org/declination-of-the-sun/. [Accessed: 13- Apr- 2018].
-
"Position of the Sun", Wikipedia, 2018. [Online]. Available: https://en.wikipedia.org/wiki/Position_of_the_Sun. [Accessed: 13- Apr- 2018].
-
"A note on Dhuhr", Pray Times, 2018. [Online]. Available: http://praytimes.org/wiki/A_note_on_Dhuhr. [Accessed: 13- Apr- 2018].
-
"Tafsiran Astronomi Untuk Waktu Solat", e-Solat: Sistem Panduan Solat, 2014. [Online]. Available: http://www.e-solat.gov.my/web/index1.php?id=55&type=A. [Accessed: 13- Apr- 2018].
Please file feature requests and bugs at the issue tracker.
This project is licensed under the MIT License - see the LICENSE file for details.