Time scale transformation: International Atomic Time, TAI, to Universal Time, UT1.
Status: canonical.
TAI1+TAI2 is Julian Date, apportioned in any convenient way between the two arguments, for example where TAI1 is the Julian Day Number and TAI2 is the fraction of a day. The returned UT11,UT12 follow suit.
The argument DTA, i.e. UT1-TAI, is an observed quantity, and is available from IERS tabulations.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | tai1 | TAI as a 2-part Julian Date |
||
real(kind=wp), | intent(in) | :: | tai2 | TAI as a 2-part Julian Date |
||
real(kind=wp), | intent(in) | :: | dta | UT1-TAI in seconds |
||
real(kind=wp), | intent(out) | :: | ut11 | UT1 as a 2-part Julian Date |
||
real(kind=wp), | intent(out) | :: | ut12 | UT1 as a 2-part Julian Date |
||
integer, | intent(out) | :: | j | status: 0 = OK |
subroutine TAIUT1 ( tai1, tai2, dta, ut11, ut12, j )
implicit none
real(wp),intent(in) :: tai1 !! TAI as a 2-part Julian Date
real(wp),intent(in) :: tai2 !! TAI as a 2-part Julian Date
real(wp),intent(in) :: dta !! UT1-TAI in seconds
real(wp),intent(out) :: ut11 !! UT1 as a 2-part Julian Date
real(wp),intent(out) :: ut12 !! UT1 as a 2-part Julian Date
integer,intent(out) :: j !! status: 0 = OK
real(wp) :: dtad
! Result, safeguarding precision.
dtad = dta/d2s
if ( abs(tai1)>abs(tai2) ) then
ut11 = tai1
ut12 = tai2 + dtad
else
ut11 = tai1 + dtad
ut12 = tai2
end if
! Status (always OK).
j = 0
end subroutine TAIUT1