DCF77

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
DCF77 time code transmitter
Dcf77.jpg
The low frequency T-aerial antennas of DCF77 in Mainflingen
Location Mainflingen longwave transmitter, Mainflingen, Germany
Coordinates Lua error in package.lua at line 80: module 'strict' not found.
Elevation 113 m (371 ft)
Operator Media Broadcast GmbH of behalf of the PTB
Frequency 77.5 kHz
Power 50 kW
Began operation 1 January 1959; continuous date and time information was added in June 1973
Official range 2,000 km (1,243 mi)
Website DCF 77
Low cost DCF77 receiver

DCF77 is a German longwave time signal and standard-frequency radio station. It started service as a standard-frequency station on 1 January 1959. In June 1973 date and time information was added. Its primary and backup transmitter are located at Lua error in package.lua at line 80: module 'strict' not found. in Mainflingen, about 25 km south-east of Frankfurt am Main, Germany. The transmitter generates a nominal power of 50 kW, of which about 30 to 35 kW can be radiated via a T-antenna.

DCF77 is controlled by the Physikalisch-Technische Bundesanstalt (PTB), Germany's national physics laboratory and transmits in continuous operation (24 hours). It is operated by Media Broadcast GmbH (previously a subsidiary of Deutsche Telekom AG), on behalf of the PTB. With Media Broadcast GmbH, a temporal transmission availability of at least 99.7% per year or under 26.28 hours of annual downtime has been agreed upon. Most service interruptions are short-term disconnections of under two minutes. Longer lasting transmission service interruptions are generally caused by strong winds, freezing rain or snow induced T-antenna movement. This manifests itself in electrical detuning of the antenna resonance circuit and hence a measurable phase modulation of the received signal. When the maladjustment is too large, the transmitter is taken temporarily out of service.[1] In the year 2002 almost 99.95% availability or just over 4.38 hours of downtime was realized.[2] The timestamp sent is either in Coordinated Universal Time (UTC)+1 or UTC+2 depending on daylight saving time.[3]

The highly accurate 77.5 kHz carrier signal is generated from local atomic clocks that are linked with the German master clocks at the PTB in Braunschweig. The DCF77 time signal is used for the dissemination of the German national legal time to the public.[4]

Radio clocks and watches have been very popular in Europe since the late 1980s and, in main-land Europe, most of them use the DCF77 signal to set their time automatically. Further industrial time-keeping systems at train stations, in the field of telecommunication and information technology, at radio and TV stations are radio-controlled by DCF77 as well as tariff change-over clocks of energy supply companies and clocks in traffic light facilities.[5]

Signal

The DCF77 time signal is used by organizations like the Deutsche Bahn railway company to synchronize their station clocks
The low frequency T-aerial antennas of the continuously operated DCF77 signal in Mainflingen at night
Recorded signal

Time signal

The DCF77 station signal carries an amplitude-modulated, pulse-width coded 1-bit/s data signal. The same data signal is also phase modulated onto the carrier using a 512-bit long pseudorandom sequence (direct-sequence spread spectrum modulation). The transmitted data signal is repeated every minute.

Experimental civil defence emergency signal

Since 2003, 14 previously unused bits of the time code have been used for civil defence emergency signals. This is an experimental service, aimed to one day replace the German network of civil defence sirens.

Civil protection and weather forecast signal

Since 22 November 2006 the DCF77 transmitter uses bits 1–14 to transmit warning messages and weather information.[6][7] Under responsibility of the German Federal Office of Civil Protection and Disaster Assistance (the German Bundesamt für Bevölkerungsschutz und Katastrophenhilfe, BBK), warnings to the population can be transmitted using these 14 bits. As a further extension of the information content transmitted by DCF77, appropriately equipped radio clocks can provide a four-day weather forecast for 60 different regions in Europe. The forecast data is provided by and under responsibility of the Swiss company Meteo Time GmbH and is transferred in a proprietary transfer protocol.[8][9] The same 14 bits are employed in a way that ensures compatibility with the transmission protocols of the warning messages. For decoding the weather forecast data a license is required.[7][10] Since the bits previously reserved for the PTB are used, older radio clocks should not be affected by the weather data signal.

Future and call sign

The signal distribution contract between the PTB and the DCF77 transmitter operator Media Broadcast GmbH is periodically renewed. After negotiations in 2013 the PTB and Media Broadcast GmbH agreed to continue the dissemination of the German national legal time for the next 8 years. The PTB expressed it will initialize new negotiations if modernization activities at the transmitting station to improve the signal reception reliability throughout Europe by increasing the transmission power before 2021 are deemed necessary.[11]

The call sign DCF77 stands for D = Deutschland (Germany), C = long wave signal, F = the longwave transmitters on the premises of the transmitting station Mainflingen (due to its vicinity to Frankfurt am Main), 77 = frequency: 77.5 kHz.

Time code details

Like most longwave time transmitters (akin to the 162 kHz 2 MW TDF time signal broadcast from France), DCF77 marks seconds by reducing carrier power for an interval beginning on the second. The duration of the reduction is varied to convey one bit of time code per second, repeating every minute. The carrier is synchronized so the rising zero-crossing occurs on the second. All modulation changes also occur at rising zero-crossings.

Amplitude modulation

Amplitude modulated signal of DCF77 as a function of time

The DCF77 signal uses amplitude-shift keying to transmit digitally coded time information by reducing the amplitude of the carrier to 15% of normal (−16½ dB) for 0.1 or 0.2 seconds at the beginning of each second. A 0.1 second reduction (7750 cycles of the 77500 Hz carrier amplitude) denotes a binary 0; a 0.2 second reduction denotes a binary 1. As a special case, the last second of every minute is marked with no carrier power reduction.

There was also a Morse code station identification until 2006, sent during minutes 19, 39 and 59 of each hour, however this was discontinued as the station is easily identifiable by the characteristic signal.[12] A 250 Hz tone was generated by square wave modulating the carrier between 100% and 85% power, and that tone was used to send one letter per second, between the second marks. During seconds 20–32, the call sign "DCF77" was transmitted twice.

Phase modulation

In addition, for 793 ms beginning at 200 ms, each time code bit is transmitted using direct-sequence spread spectrum. The bit is mixed with a 512-bit pseudo-random chip sequence and encoded on the carrier using ±13° phase-shift keying.[13] The chip sequence contains equal amounts of each phase, so the average phase remains unchanged. Each chip spans 120 cycles of the carrier, so the exact duration is cycles 15500 through 76940 out of 77500. The last 560 cycles (7.22 ms) of each second are not phase-modulated.[14]

The chip sequence is generated by a 9-bit linear feedback shift register (LFSR), repeats every second, and begins with 00000100011000010011100101010110000….

A software implementation of a Galois LFSR can generate the full chip sequence:

  unsigned int i, lfsr;

  lfsr = 0;
  for (i = 0; i < 512; i++) {

    unsigned int chip;

    chip = lfsr & 1;
    output_chip(chip);

    lfsr >>= 1;
    if (chip || !lfsr)
      lfsr ^= 0x110;
  }

Each time code bit to be transmitted is exclusive-ored with the LFSR output. The final chipped sequence is used to modulate the transmitter phase. During 0 chips the carrier is transmitted with a +13° phase advance, while during 1 chips it is transmitted with a −13° phase lag.

In lieu of the special minute marker used in the amplitude code, bit 59 is transmitted as an ordinary 0-bit, and the first 10 bits (seconds 0–9) are transmitted as binary 1.

When compared to amplitude modulation, phase modulation makes better use of the available frequency spectrum and results in a more precise low frequency time distribution with less sensitivity to interferences. Phase modulation is however not used by many DCF77 receivers. The reason for this is the worldwide availability of the (precise time reference) signals transmitted by global navigation satellite systems like the Global Positioning System (GPS) and GLONASS. Due to the GPS signal structure and the larger bandwidth available, the GPS reception would, in principle, achieve an uncertainty of the time transmission that is lower by at least one order of magnitude than the uncertainty that can be achieved with DCF77 phase modulation receiving hardware (GPS time is accurate to about ± 10 to 30 nanoseconds[15][16]).

Time code interpretation

The time is represented in binary-coded decimal. It represents civil time, including summer time adjustments. The time transmitted is the time of the following minute; e.g. during December 31 23:59, the transmitted time encodes January 1 00:00.[17]

The first 20 seconds are special flags. The minutes are encoded in seconds 21–28, hours during seconds 29–34, and the date during seconds 36–58.

Two flags warn of changes to occur at the end of the current hour: a change of time zones, and a leap second insertion. These flags are set during the hour up to the event. This includes the last minute before the event, during which the other time code bits (including the time zone indicator bits) encode the time of the first minute after the event.

DCF77 time code
Bit Weight Meaning Bit Weight Meaning Bit Weight Meaning
PM AM PM AM PM AM
 :00 1 M Start of minute. Always 0.  :20 S Start of encoded time. Always 1.  :40 10 Day of month (continued)
 :01 1 Civil warning bits,[18] provided by the
Bundesamt für Bevölkerungsschutz
und Katastrophenwarnung
(Federal Office
of Civil protection and Disaster Relief).
Also contains weather broadcasts.[17][19]
 :21 1 Minutes
00–59
 :41 20
 :02 1  :22 2  :42 1 Day of week
Monday=1, Sunday=7
 :03 1  :23 4  :43 2
 :04 1  :24 8  :44 4
 :05 1  :25 10  :45 1 Month number
01–12
 :06 1  :26 20  :46 2
 :07 1  :27 40  :47 4
 :08 1  :28 P1 Even parity over minute bits 21–28.  :48 8
 :09 1  :29 1 Hours
0–23
 :49 10
 :10 0  :30 2  :50 1 Year within century
00–99
 :11 0  :31 4  :51 2
 :12 0  :32 8  :52 4
 :13 0  :33 10  :53 8
 :14 0  :34 20  :54 10
 :15 R Call bit: abnormal transmitter operation.[17]
Previously: backup antenna in use.
 :35 P2 Even parity over hour bits 29–35.  :55 20
 :16 A1 Summer time announcement.
Set during hour before change.
 :36 1 Day of month.
01–31
 :56 40
 :17 Z1 Set to 1 when CEST is in effect.  :37 2  :57 80
 :18 Z2 Set to 1 when CET is in effect.  :38 4  :58 P3 Even parity over date bits 36–58.
 :19 A2 Leap second announcement.
Set during hour before leap second.
 :39 8  :59 0 Minute mark: no amplitude modulation.

In the event of an added leap second, a 0-bit is inserted during second 59, and the special missing bit is transmitted during the leap second itself, second 60.[17]

Although the time code only includes two digits of year, it is possible to deduce two bits of century using the day of week. There is still a 400-year ambiguity, as the Gregorian calendar repeats weeks every 400 years, but this is sufficient to determine which years ending in 00 are leap years.[20]

The time zone bits can be considered a binary-coded representation of the GMT offset. Z1 set indicates UTC+2, while Z2 indicates UTC+1.

The phase modulation generally encodes the same data as the amplitude modulation, but differs for bits 59 through 14, inclusive. Bit 59 (no amplitude modulation) is phase-modulated as a 0-bit. Bits 0–9 are phase modulated as 1 bits, and bits 10–14 are phase modulated as 0 bits.[21] The civil protection warnings and weather information is not included in the phase-modulated data.

Reception area

DCF77 reception area from Mainflingen

With a relatively high power of 50 kW, the DCF77 transmissions can reliably be received in large parts of Europe, as far as 2,000 km (1,243 mi) from the transmitter in Mainflingen. Within this range the signal strength of the DCF77 signal as specified by the Physikalisch-Technische Bundesanstalt (PTB) is ≥ 100 µV/m. This signal strength assessment was made according to the reflection model with a reflection (one hop) on the ionospheric D-layer. As an example, reception with consumer grade clocks — assuming the employed radio clock can manage reception with ≈ 100 µV/m signal strength — is possible in Turkey (Istanbul), Russia (Moscow), Portugal and Gibraltar (during night hours). At shorter distances the DCF77 signal strength is much higher. As an example, under 500 km (311 mi) from the transmitter in Mainflingen the expected signal strength of the ground wave is ≥ 1 mV/m.[22]

Depending on signal propagation and multiple reflections (hops) and local interference the DCF77 signal can sometimes be received further away (see tropospheric propagation). This is associated with a significant decrease in the signal strength and depends on many factors, e.g., the daytime and season, the angle of incidence of the skywave on the D-layer and the solar activity.[23]

Control

Atomic master clock CS2 in use at the PTB to check for deviations

The control signal is not transmitted by wire from the Physikalisch-Technische Bundesanstalt (PTB) in Braunschweig to the transmitting radio station in Mainflingen but is generated at the place of emission using a control unit developed by the PTB. This control unit, which is housed in an air conditioned room of the transmitting station, is shielded against high-frequency interferences and controlled from Braunschweig. For reasons of operational reliability, the control signal is generated by three independent control channels all equipped with their own caesium atomic clock. In addition a rubidium atomic clock is available on site. To avoid incorrect emissions the output of these three channels are compared in two electronic switch circuits on site. Output for transmission is only generated when at least two of the three channels are in agreement. Via the public telephone network operational data of the control unit can be called up with the aid of a telecontrol system. Furthermore, the carrier phase time and the states of the second markers are compared in Braunschweig with the setpoints specified by the PTB's atomic master clocks. Of these atomic clocks the CS2 atomic clock in Braunschweig provides the German national legal time standard, and can be used as a highly accurate frequency standard.[24] If there are deviations, the necessary corrections will be made via the telecontrol system.[25]

Accuracy

Transmission

The DCF77 transmitted carrier frequency relative uncertainty is 2 x 10−12 over a 24-hour period and 2 x 10−13 over 100 days, with a deviation in phase with respect to UTC that never exceeds more than 5.5 ± 0.3 microseconds.[26] The four German primary caesium (fountain) atomic clocks (CS1, CS2, CSF1 and CSF2) in use by the PTB in Braunschweig ensure significantly less long term clock drift than the atomic clocks used in the DCF77 facility in Mainflingen. With the aid of external corrections from Braunschweig the control unit of DCF77 in Mainflingen is expected to neither gain nor lose a second in approximately 300,000 years.

Reception

Consumer grade radio clock movement with the DCF77 receiver (right) in the clock. The small ferrite loopstick antenna used in this alarm clock can be seen at the left.

Due to the propagation process, phase and/or frequency shifts observed in received signals the practical obtainable accuracy is lower than originally realized with the atomic clocks at the place of transmission. As with any time signal radio transmitter the precise establishment of time is affected by the distance to the transmitter, as the time signal propagates to a time signal receiver at the speed of light. For a DCF77 receiver located 1,000 km (621 mi) away from the DCF77 transmitter, due to transit delay the receiver will be set more than 3 milliseconds late. Such a small deviation will seldom be of interest and if desired instrument grade time receivers can be corrected for transit delay.

Further inaccuracies may be caused by the type of wave the receiver records. In case of just ground wave reception a constant is included in the calculation if the distance is permanent. In case of just space wave reception the reception side cannot influence the time fluctuations. Time fluctuations are influenced directly by the changing altitude of the reflecting and bending layer of the ionosphere. Similar problems arise where ground and skywaves overlap. This field is not constant but changes in the course of the day between approximately 600 to 1,100 km (373 to 684 mi) from the transmitter position.[22]

Corrected instrument grade DCF77 receivers using the amplitude-modulated time signals with accompanying antennas oriented tangential to the transmitter's antenna in Mainflingern to ensure the best possible interference-free time signal reception at fixed locations and can achieve a practical accuracy uncertainty better than ± 2 milliseconds.[27]

In addition to the amplitude-modulated time signal transmission this information is also transmitted since June 1983 by DCF77 via a phase modulation of the carrier wave with a pseudorandom noise sequence of 512 bits length. Using cross-correlation the reproduced signal at the receiving end can be used to determine the beginning of the second markers much more accurately. The drawback of using phase-modulated time signals lies in the complex instrument grade receiving hardware required for using this time signal reception method. Using this method the Physikalisch-Technische Bundesanstalt (PTB) in 1987 measured in Braunschweig situated 273 km (170 mi) from the transmitter in Mainflingen inaccuracies, depending on the time in the day and season, of ± 2 to 22 microseconds.[14]

Normal low cost consumer grade DCF77 receivers solely rely on the amplitude-modulated time signals and use narrow band receivers (with 10 Hz bandwidth) with small ferrite loopstick antennas and circuits with non optimal digital signal processing delay and can therefore only be expected to determine the beginning of a second with a practical accuracy uncertainty of ± 0.1 second. This is sufficient for radio controlled low cost consumer grade clocks and watches using standard-quality quartz clocks for timekeeping between daily DCF77 synchronization attempts, as they will be most accurate immediately after a successful synchronization and will become less accurate from that point forward until the next synchronization.[28]

Network Time Protocol reference clock use

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

Network Time Protocol time servers display the refid identifier .DCFa. (amplitude modulation) or .DCFp. (phase modulation) when a standard DCF77 time receiver is used as reference time source.[29]

See also

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found. 100503 eecis.udel.edu
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. 7.0 7.1 Lua error in package.lua at line 80: module 'strict' not found.
  8. Meteotime A blog post describing decoding the weather information with an Arduino.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. 14.0 14.1 Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found.
  17. 17.0 17.1 17.2 17.3 Lua error in package.lua at line 80: module 'strict' not found.
  18. Lua error in package.lua at line 80: module 'strict' not found.
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. The date XX00-02-28 must fall on a Monday, Sunday, Friday, or Wednesday. Only the first case is a leap year, followed by Tuesday the 29th. In the other three cases, the next day is March 1.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. 22.0 22.1 Reach of DCF77
  23. Lua error in package.lua at line 80: module 'strict' not found.
  24. With what accuracy do PTB's atomic clocks work?
  25. How is time transmitted?
  26. DCF77 carrier frequency
  27. How the DCF77-receiver works
  28. Michael A. Lombardi, "How Accurate is a Radio Controlled Clock?, National Institute of Standards and Technology, 2010.
  29. Lua error in package.lua at line 80: module 'strict' not found.

External links