Julian Date to Besselian Epoch.
Status: support routine.
The Julian Date is supplied in two pieces, in the usual SOFA manner, which is designed to preserve time resolution. The Julian Date is available as a single number by adding DJ1 and DJ2. The maximum resolution is achieved if DJ1 is 2451545D0 (J2000.0).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | dj1 | Julian Date (see note) |
||
real(kind=wp), | intent(in) | :: | dj2 | Julian Date (see note) |
the Besselian Epoch
function EPB ( dj1, dj2 ) result(res)
implicit none
real(wp),intent(in) :: dj1 !! Julian Date (see note)
real(wp),intent(in) :: dj2 !! Julian Date (see note)
real(wp) :: res !! the Besselian Epoch
! J2000.0 minus B1900.0 (2415019.81352) in days
real(wp),parameter :: d1900 = 36524.68648_wp
! Length of tropical year B1900 (days)
real(wp),parameter :: ty = 365.242198781_wp
res = 1900.0_wp + ( ( dj1-dj00 ) + ( dj2+d1900 ) ) / ty
end function EPB