Clocks/timers, Time, and GPS

Size: px
Start display at page:

Download "Clocks/timers, Time, and GPS"

Transcription

1 FYS3240 PC-based instrumentation and microcontrollers Clocks/timers, Time, and GPS Spring 2015 Lecture #11 Bekkeng,

2 How good is a crystal oscillator (XO)? Interested in the long-term measurement stability and accuracy Watch crystal oscillator: about 20 ppm, or worse Error > 1.73 s in 24 hours (almost 1 minute drift in one month) The accuracy can be improved using a: Temperature compensated crystal oscillator (TCXO) Oven controlled crystal oscillator (OCXO) the oscillator is enclosed in a temperature controlled oven Some DAQ card accuracy examples: TCXO : 1 ppm OCXO: 50 ppb

3 Computer clocks Hardware clocks Real Time Clock (RTC) is an integrated circuit on the motherboard. The RTC has a battery backup power so that it tracks the time even while the computer is turned off. Based on a khz quartz crystal oscillator. Maximum resolution of 1 millisecond (1 khz). Software clocks Maintained by the operating system, based on the RTC interrupts. When the system starts it sets the system time to a value based on the real-time clock of the computer and then regularly updates the time based on interrupts from the RTC. Timers/Counters 8253/8254 PIT (Programmable Interval Timer) APIC (Advanced Programmable Interrupt Controller) ACPI (Advanced Configuration Programmable Interrupt)

4 High-Resolution Timers/Counters High Precision Event Timer (HPET) is a 64-bit up-counter with a frequency higher than 10 MHz. Time Stamp Counter (TSC) is a 64-bit register in the CPU (cores) that increment each processor clock cycle. However, can be unreliable on a modern multicore computer due to: multicore computers can have different values in their time-keeping registers. variability of the CPU frequency due to power management technologies or performance technologies such as Intel Turbo Boost Technology. Access the TSC (or HPET) timer using the Windows API functions QueryPerformanceCounter (μs resolution) and QueryPerformanceFrequency T = QueryPerformanceCounter(n) QueryPerformanceCounter(n 1) QueryPerformanceFrequency

5 QueryPerformance from LabVIEW TSC example

6 Computer clock drift The software clock is a bad timekeeper! The computer clock drifts away from the correct time. At the time of synchronization with a time server the clock is reset to the correct time (but with a small offset). Could update the computer clock often, but a much better solution is to read UTC time directly from a timing card connected to a GPS, or IRIG-B or IEEE1588 signals. Software / Operating System (OS) limits timing resolution and accuracy! The performance is system (hardware, OS) dependent.

7 Synchronize PC clock to a time (NTP) server in Windows Note: this Internet time settings is not available when the computer is part of a domain (such as the domain UIO.no) Windows Time service

8 TAI and UTC time International Atomic Time (TAI) as a time scale is a weighted average of the time kept by over 300 atomic clocks in over 60 national laboratories worldwide. Coordinated Universal Time (UTC) is the primary time standard by which the world regulates clocks and time, and is based on TAI but with leap seconds added at irregular intervals to compensate for the slowing of the Earth's rotation. Since 30 June 2012 when the last leap second was added TAI has been exactly 35 seconds ahead of UTC. The 35 seconds results from the initial difference of 10 seconds at the start of 1972, plus 25 leap seconds in UTC since UTC is the time standard used for many internet and World Wide Web standards. The Network Time Protocol (NTP), designed to synchronize the clocks of computers over the Internet, encodes times using the UTC system.

9 Leap seconds Time is now measured using stable atomic clocks A leap second is a one-second adjustment that is occasionally applied to UTC time in order to keep its time of day close to the mean solar time. o Solar time is a reckoning of the passage of time based on the Sun's position in the sky. Leap seconds are necessary partly because the length of the mean solar day is very slowly increasing, and partly because the atomic, fixed-length SI second, when adopted, was already a little shorter than the current value of the second of mean solar time.. Since 1967, the second has been defined to be the duration of 9,192,631,770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the cesium 133 atom

10 GPS time GPS time is the atomic time scale implemented by the atomic clocks in the GPS ground control stations and the GPS satellites themselves. Periodic corrections are performed to the on-board satellite clocks to keep them synchronized with ground station clocks. GPS time is NOT corrected for leap seconds. GPS time is NOT equal to UTC or TAI time. GPS time remains at a constant offset of 19 seconds with TAI. As of July 2012, GPS time is 16 seconds ahead of UTC because of the leap seconds added to UTC. A new leap second correction will be added to UTC in 2016 GPS time was set to match UTC in 1980 However, the time offset from UTC is contained in the GPS broadcast message and is usually applied automatically by GPS receivers. A GPS satellite clock run faster (about 38 μs a day) due to velocity and gravity effects (follows the Relativity theory) Time dilation From:

11 Time stamping of data Often need to timestamp an image in a video stream or a block of data from a DAQ-card to GPS (UTC) time; e.g. for use in data fusion in post-analysis. If the data samples has a deterministic (regular) interval, such as samples from a DAQ-card, it is sufficient to time stamp the first sample at time t 0 : t 0 = T ReadFinished t (number of samples) t delay Given t 0 the time of the remaining samples are found from: t = t0 + n t t = 1 fs n If the data samples are not deterministic (regular), e.g. video frames from a camera, each data point/video frame must include a timestamp

12 Signal based vs. time-based synchronization Signal-based synchronization involves sharing signals such as clocks and triggers directly (wires) between nodes that need to be synchronized. Time-based synchronization involves nodes independently synchronizing their individual clocks based on some time source, or time reference. There are advantages and disadvantages to both methods of device synchronization.

13 Synchronization technologies

14 Signal-based synchronization In systems where the devices are near each other, sharing a common timing signal is generally the easiest and most accurate method of synchronization. For example, modular instruments in a PXI chassis all share a common 10 MHz clock signal from the PXI backplane. To accurately use a common timing signal, a device must be calibrated to account for the signal propagation delay from the timing source to the device

15 Time-based synchronization Necessary for long distances Because of the inherent instabilities in (crystal oscillator) clocks, distributed clocks must be synchronized continuously to a time refererence to match each other in frequency and phase. Time references: GPS IEEE 1588 master IRIG-B sources Timing and Synchronization Systems

16 Global time possible implementations Reference clock Reference clock Reference clock Time response Time request Time Δt (Time Error) Time Computer clock Computer clock Computer clock

17 IRIG serial time codes IRIG = Inter Range Instrumentation Group (a standard) Several time codes, but IRIG-B is the most common Both AM and DC versions of the code Best time accuracy with DC AM best for transmission over long cables Accuracies of the order of a few microseconds or better IRIG-B AM AM = Amplitude Modulation BCD = Binary Coded Decimal IRIG-B DC

18 Network Time Protocol (NTP) NTP is a protocol designed to synchronize the clocks of computers over a network. Can provide accuracies of better than 10 ms over Ethernet. accuracy depends on the network (local area network vs. Internet) User Datagram Protocol (UDP) is used. Edited from Wikipedia: GPS with NTP-server and IRIG-B output NTP can usually maintain time to within tens of milliseconds over the public Internet, and can achieve better than one millisecond accuracy in local area networks under ideal conditions. Network problems can cause errors of 100 ms or more All Microsoft Windows versions since Windows 2000 and Windows XP include the Windows Time Service, which has the ability to sync the computer clock to an NTP server. The version in Windows 2000 and Windows XP only implements Simple NTP (SMTP), and violates several aspects of the NTP version standard. Beginning with Windows Server 2003 and Windows Vista, a compliant implementation of full NTP is included.

19 IEEE 1588 Protocol Gives sub-microsecond synchronization in distributed systems IEEE 1588 provides a standard protocol for synchronizing clocks connected via a multicast capable network, such as Ethernet. uses a protocol known as the precision time protocol (PTP). All participating clocks in the network are synchronized to the highest quality clock in the network. The highest ranking clock is called the grandmaster clock, and synchronizes all other slave clocks. The level of precision achievable using PTP (Precision Time Protocol) depends heavily on the jitter (the variation in latency) present in the underlying network topology. Point-to-point connections provide the highest precision.

20 GPS & IEEE 1588 used for time synchronization of multiple PCs

21 Example - Vision time stamping GE680C Visual camera (205 fps) Question: How to accurately time stamp each image from a camera to GPS time, without any delay added from the software loop? PC NIC SW Loop time stamp is not equal to image sample time!

22 Satellite navigation A satellite navigation system with global coverage is called a global navigation satellite system, or GNSS. GPS (USA) GLONASS (Russia) GALILEO (EU): In-Orbit Validation 30 satellites in 2019 Compass (China): Chine + Asia-Pacific 35 satellites in 2020 A satellite navigation systems can give very accurate Position Velocity (doppler) Time

23 The Global positioning System (GPS) Originally developed to determine position for autonomous navigation. Space segment 24 (28/31) satellites orbiting the Earth at an altitude of approximately 20,200 km. The orbital period is about 12 hours Six orbital planes with four satellites in each. At least four satellites are visible from any point on the ground at any time Control segment Tracking stations around the world monitor and measure orbit and satellite clock correction parameters. These corrections are transmitted up to the satellites and broadcasted to the user segment. User segment GPS receivers, giving the user information about the receiver position, velocity and time

24 Two satellites Triangulation in 3D One satellite Three satellites

25 Satellite navigation in 3D The distance to at least four satellites must be known! Three satellites need for three distance measurements Measure signal time of flight : s = v * t The fourth satellites is needed in order to remove clock errors in the receiver unit GPS satellites have calibrated atomic clocks, but a GPS receiver has only a standard quartz crystal oscillator An error of 1 ms in the receiver clock gives a position error of 3*10 8 m/s * 1 ms = 300 km Navigation data message from each satellite: Satellite time (when the message was transmitted) + correction Satellite position (when the message was transmitted), using ephemeris (orbit data) Almanac data (orbit data etc. for ALL satellites) More satellites gives better accuracy!

26 GPS signals Every satellites transmit a unique PRC (pseudorandom code) binary sequence. Frequencies used in the GPS system: L1 = MHz and L2 = MHz New civilian signals in the future: L2C, L5, and L1C The C/A (Course Acquisition) code is the PRC modulated at the L1 carrier, and this is the basis for civilian use. The P (Precise) code is modulated on both L1 and L2, but this is an encrypted code for military users. A doppler shift is introduces (on L1 and L2) due to relative motion between the satellite and the receiver The receiver must perform a correlation (search in received data) in order to detect the PRC from a satellite local PRC codes are correlated with the navigation message

27 Pseudorange Determine code delay time t, and use s = v * t The measured pseudorange P k from a satellite k can be expressed as (since we can assume no clock error in the satellite): P k = (X k x) 2 + (Y k y) 2 + (Z k z) 2 + d + v = ρ k + d + v Where d is the position error due to receiver clock error, (X k,y k,z k ) is the known position of satellite k, (x,y,c) is the true receiver position, and v is zero mean Gaussian white noise with variance σ 2 Solving for x, y, z and d is a nonlinear problem!

28 Carrier-Phase GPS Used in land surveying. An ordinary GPS receiver determines the travel time of a signal from a satellite by comparing the PRC it's generating, with an identical code in the signal from the satellite. The PRC has a bit rate of about 1 MHz but its carrier frequency has a cycle rate of over a GHz (which is 1000 times faster) At the speed of light the 1.57 GHz GPS signal has a wavelength of roughly 19 centimeters, so the carrier signal can act as a much more accurate reference than the PRC by itself. In essence this method is counting the exact number of carrier cycles between the satellite and the receiver Carrier-phase GPS use code-phase (e.g. C/A code) techniques first to get close to the solution.

29 Satellite navigation errors Multipath The GPS receiver compare the time of transmission of the coded signal from the satellite with the time of arrival at the receiver s = v * Δt The velocity v is the velocity of electromagnetic waves in vacuum, including a model of the average delay in the troposphere and ionosphere Variations in neutral density, temperature and humidity in the atmosphere, and electron density in the ionosphere, affects the velocity of electromagnetic waves, and therefore gives an error in the measured distance s Orbit errors and multipath (due to reflections) also contribute to the total error in the measured distance to a satellite Index of refraction (n): n(λ), c = f * λ

30 Space weather affect GNSS!

31 TEC MAP TEC = Total Electron Content

32 New GPS signal L2C

33 Differential GPS (DGPS) Used to increase the GPS position accuracy (different types of DGPS) Reference stations on known locations on the Earth can calculate the position based on the C/A coded signals, an compare with the known location of the station. This gives the position error from the GPS system, and this error can be broadcasted to all receivers The accuracy depends on the distance from the reference station(s)

34 GPS accuracy GPS (C/A code) : meters (only L1 used) GPS (P(Y)-code) : 1 3 meters (military receivers, L1 and L2 used) P(Y) is an encrypted code! DGPS : 1 5 meters CPDGPS : < 1 cm (static), < 5 cm (kinematic) EGNOS : 1 5 meter (EGNOS is EU s DGPS) CP = carrier phase Note: SA-code turned off in May 2000!

Precision Time Protocol (PTP/IEEE-1588)

Precision Time Protocol (PTP/IEEE-1588) White Paper W H I T E P A P E R "Smarter Timing Solutions" Precision Time Protocol (PTP/IEEE-1588) The Precision Time Protocol, as defined in the IEEE-1588 standard, provides a method to precisely synchronize

More information

Best Practices for Leap Second Event Occurring on 30 June 2015

Best Practices for Leap Second Event Occurring on 30 June 2015 Best Practices for Leap Second Event Occurring on 30 June 2015 26 May 2015 Sponsored by the National Cybersecurity and Communications Integration Center in coordination with the United States Naval Observatory,

More information

The Role of Precise Timing in High-Speed, Low-Latency Trading

The Role of Precise Timing in High-Speed, Low-Latency Trading The Role of Precise Timing in High-Speed, Low-Latency Trading The race to zero nanoseconds Whether measuring network latency or comparing real-time trading data from different computers on the planet,

More information

Post Processing Service

Post Processing Service Post Processing Service The delay of propagation of the signal due to the ionosphere is the main source of generation of positioning errors. This problem can be bypassed using a dual-frequency receivers

More information

Evaluating the Accuracy of Maxim Real-Time Clocks (RTCs)

Evaluating the Accuracy of Maxim Real-Time Clocks (RTCs) REAL-TIME CLOCKS Application Note 632: Aug 01, 2001 Evaluating the Accuracy of Maxim Real-Time Clocks (RTCs) This app note describes methods for measuring the accuracy of the Maxim Real-Time Clocks (RTCs)

More information

T200, PTP/IEEE 1588 Grandmaster Clock and

T200, PTP/IEEE 1588 Grandmaster Clock and T200, PTP/IEEE 1588 Grandmaster Clock and NTP Time Server with high accuracy GPS receiver, OCXO or Rubidium oscillator 1 Bd d Armor 22300 LANNION - FRANCE contact@heoldesign.com 1 HEOL-T200 : PERFORMANCE

More information

Computer Time Synchronization

Computer Time Synchronization Michael Lombardi Time and Frequency Division National Institute of Standards and Technology Computer Time Synchronization The personal computer revolution that began in the 1970's created a huge new group

More information

HANDBOOK. Measuring System DESIGN EDITORS PETER H. SYDENHAM RICHARD THORN ARTICLE OFFPRINT

HANDBOOK. Measuring System DESIGN EDITORS PETER H. SYDENHAM RICHARD THORN ARTICLE OFFPRINT HANDBOOK OF Measuring System DESIGN EDITORS PETER H. SYDENHAM RICHARD THORN ARTICLE OFFPRINT 200: Calibrations and Standards in Time Measurement Michael A. Lombardi National Institute of Standards and

More information

Robot Perception Continued

Robot Perception Continued Robot Perception Continued 1 Visual Perception Visual Odometry Reconstruction Recognition CS 685 11 Range Sensing strategies Active range sensors Ultrasound Laser range sensor Slides adopted from Siegwart

More information

PDHonline Course L105 (12 PDH) GPS Surveying. Instructor: Jan Van Sickle, P.L.S. PDH Online PDH Center

PDHonline Course L105 (12 PDH) GPS Surveying. Instructor: Jan Van Sickle, P.L.S. PDH Online PDH Center PDHonline Course L105 (12 PDH) GPS Surveying Instructor: Jan Van Sickle, P.L.S. 2012 PDH Online PDH Center 5272 Meadow Estates Drive Fairfax, VA 22030-6658 Phone & Fax: 703-988-0088 www.pdhonline.org www.pdhcenter.com

More information

GENERAL INFORMATION ON GNSS AUGMENTATION SYSTEMS

GENERAL INFORMATION ON GNSS AUGMENTATION SYSTEMS GENERAL INFORMATION ON GNSS AUGMENTATION SYSTEMS 1. INTRODUCTION Navigation technologies with precision approach and landing systems, for civilian and military purposes, enable aircrafts to perform their

More information

Distributed Systems Theory 6. Clock synchronization - logical vs. physical clocks. November 9, 2009

Distributed Systems Theory 6. Clock synchronization - logical vs. physical clocks. November 9, 2009 Distributed Systems Theory 6. Clock synchronization - logical vs. physical clocks November 9, 2009 1 Synchronization: single CPU sys vs. dist sys. Single CPU: DS: critical regions, mutual exclusion, and

More information

3.7. Clock Synch hronisation

3.7. Clock Synch hronisation Chapter 3.7 Clock-Synchronisation hronisation 3.7. Clock Synch 1 Content Introduction Physical Clocks - How to measure time? - Synchronisation - Cristian s Algorithm - Berkeley Algorithm - NTP / SNTP -

More information

Computer Time Synchronization

Computer Time Synchronization Michael Lombardi Time and Frequency Division NIST email: lombardi@boulder.nist.gov Computer Time Synchronization The personal computer revolution that began in the 1970's created a huge new group of time

More information

Swiss Time Systems. The new multipurpose time server for the LAN and NTP-based Distributed Time System. by MOBATIME DTS 4138.

Swiss Time Systems. The new multipurpose time server for the LAN and NTP-based Distributed Time System. by MOBATIME DTS 4138. Proud Partners with MOBATime GPS or DCF 77 MOBA-NMS (Network Management Sy The new multipurpose time server for the LAN and NTP-based Distributed Time System by MOBATIME DTS 4138.timeserver The DTS 4138.timeserver

More information

TI GPS PPS Timing Application Note

TI GPS PPS Timing Application Note Application Note Version 0.6 January 2012 1 Contents Table of Contents 1 INTRODUCTION... 3 2 1PPS CHARACTERISTICS... 3 3 TEST SETUP... 4 4 PPS TEST RESULTS... 6 Figures Figure 1 - Simplified GPS Receiver

More information

E190Q Lecture 5 Autonomous Robot Navigation

E190Q Lecture 5 Autonomous Robot Navigation E190Q Lecture 5 Autonomous Robot Navigation Instructor: Chris Clark Semester: Spring 2014 1 Figures courtesy of Siegwart & Nourbakhsh Control Structures Planning Based Control Prior Knowledge Operator

More information

Synchronization in. Distributed Systems. Cooperation and Coordination in. Distributed Systems. Kinds of Synchronization.

Synchronization in. Distributed Systems. Cooperation and Coordination in. Distributed Systems. Kinds of Synchronization. Cooperation and Coordination in Distributed Systems Communication Mechanisms for the communication between processes Naming for searching communication partners Synchronization in Distributed Systems But...

More information

Precision Time Protocol on Linux ~ Introduction to linuxptp

Precision Time Protocol on Linux ~ Introduction to linuxptp Precision Time Protocol on Linux ~ Introduction to linuxptp Ken ICHIKAWA FUJITSU LIMITED. LinuxCon Japan 2014 Copyright 2014 FUJITSU LIMITED Agenda Background Overview of Precision Time Protocol (PTP)

More information

Remote Calibration of a GPS Timing Receiver to UTC(NIST) via the Internet*

Remote Calibration of a GPS Timing Receiver to UTC(NIST) via the Internet* Remote Calibration of a GPS Timing Receiver to UTC(NIST) via the Internet* Michael A. Lombardi and Andrew N. Novick National Institute of Standards and Technology Boulder, Colorado lombardi@boulder.nist.gov

More information

Günter Seeber. Satellite Geodesy 2nd completely revised and extended edition

Günter Seeber. Satellite Geodesy 2nd completely revised and extended edition Günter Seeber Satellite Geodesy 2nd completely revised and extended edition Walter de Gruyter Berlin New York 2003 Contents Preface Abbreviations vii xvii 1 Introduction 1 1.1 Subject of Satellite Geodesy...

More information

A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION

A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION 35'th Annual Precise Time and Time Interval (PTTI) Systems and Applications Meeting San Diego, December 2-4, 2003 A PC-BASED TIME INTERVAL COUNTER WITH 200 PS RESOLUTION Józef Kalisz and Ryszard Szplet

More information

Synchronization and precise timing in packet networks

Synchronization and precise timing in packet networks TransPacket white paper Synchronization and precise timing in packet networks 28.06.2011 Supporting mobile back-haul and real-time applications Executive summary IP/MPLS and Ethernet packet optical networks

More information

71M6521 Energy Meter IC. Real Time Clock Compensation. The Challenge. The RTC in the 71M6521D/F. Theory of Operation APPLICATION NOTE

71M6521 Energy Meter IC. Real Time Clock Compensation. The Challenge. The RTC in the 71M6521D/F. Theory of Operation APPLICATION NOTE 71M6521 Energy Meter IC A Maxim Integrated Products Brand APPLICATION NOTE AN_6521_035 MAY 2007 This document describes how to use software to compensate the real time clock (RTC) in Teridian meter chips.

More information

APPLICATION NOTE GaGe CompuScope 14200-based Lightning Monitoring System

APPLICATION NOTE GaGe CompuScope 14200-based Lightning Monitoring System APPLICATION NOTE GaGe CompuScope 14200-based Lightning Monitoring System Challenge A customer needed to upgrade an older data acquisition unit for a real-time lightning monitoring system. Unlike many lightning

More information

Securing GNSS with PTP & SyncE Adam Wertheimer Microsemi Adam.Wertheimer@microsemi.com. Power Matters

Securing GNSS with PTP & SyncE Adam Wertheimer Microsemi Adam.Wertheimer@microsemi.com. Power Matters Securing GNSS with PTP & SyncE Adam Wertheimer Microsemi Adam.Wertheimer@microsemi.com Power Matters Introduction Base stations and other end nodes need reliable synchronization Typically GPS was used

More information

Global Positioning System

Global Positioning System B. Hofmann-Wellenhof, H. Lichtenegger, and J. Collins Global Positioning System Theory and Practice Third, revised edition Springer-Verlag Wien New York Contents Abbreviations Numerical constants xix xxiii

More information

INTRODUCTION BACKPLANE BENEFITS

INTRODUCTION BACKPLANE BENEFITS INTRODUCTION First introduced in 2004, the LXI instrumentation platform has quickly gained acceptance in the functional test and data acquisition industries as a viable communications bus alternative to

More information

CHAPTER 18 TIME TIME IN NAVIGATION

CHAPTER 18 TIME TIME IN NAVIGATION CHAPTER 18 TIME TIME IN NAVIGATION 1800. Solar Time The Earth s rotation on its axis causes the Sun and other celestial bodies to appear to move across the sky from east to west each day. If a person located

More information

High-Stability Time Adjustment with Real-Time Clock Module

High-Stability Time Adjustment with Real-Time Clock Module High-Stability Time Adjustment with Real-Time Clock Module An explanation of an Epson real-time clock module with sub-second time adjustment function [Preface] In recent years, it has become simple to

More information

Apogee Series. > > Motion Compensation and Data Georeferencing. > > Smooth Workflow. Mobile Mapping. > > Precise Trajectory and Direct Georeferencing

Apogee Series. > > Motion Compensation and Data Georeferencing. > > Smooth Workflow. Mobile Mapping. > > Precise Trajectory and Direct Georeferencing Ultimate accuracy MEMS Apogee Series Inertial Navigation System Motion Sensing and Georeferencing > INS > MRU > AHRS ITAR free 0,005 RMS Apogee Series High quality, high accuracy Hydrography > > Motion

More information

NI 6601/6602. Contents CALIBRATION PROCEDURE. ni.com/manuals

NI 6601/6602. Contents CALIBRATION PROCEDURE. ni.com/manuals CALIBRATION PROCEDURE NI 6601/6602 Français Deutsch ni.com/manuals This document contains information and instructions for calibrating the National Instruments 6601/6602 data acquisition devices. Contents

More information

GPS NTP TIME SERVER Rack Version V2

GPS NTP TIME SERVER Rack Version V2 GPS NTP TIME SERVER Rack Version V2 Description: Server is dedicated to synchronize network devices local time/date to Universal Time (UTC) Devices synchronizing own local time through the NTP V3 protocol.

More information

Allen Goldstein NIST Synchrometrology Lab Gaithersburg, MD allen.goldstein@nist.gov

Allen Goldstein NIST Synchrometrology Lab Gaithersburg, MD allen.goldstein@nist.gov Time Synchronization in Electrical Power Transmission and Distribution Systems Allen Goldstein NIST Synchrometrology Lab Gaithersburg, MD allen.goldstein@nist.gov Abstract Synchronization of measurements

More information

AN_6521_035 APRIL 2009

AN_6521_035 APRIL 2009 71M6521 Energy Meter IC A Maxim Integrated Products Brand APPLICATION NOTE AN_6521_035 APRIL 2009 This document describes how to use software to compensate the real time clock (RTC) in Teridian meter chips.

More information

GPS NTP TIME SERVER Rack Version V2.2x

GPS NTP TIME SERVER Rack Version V2.2x GPS NTP TIME SERVER Rack Version V2.2x Device Description: GPS NTP Time Server is designed to synchronize local time and date of network devices such as PCs, routers. Devices synchronize their local time

More information

A High Resolution Performance Monitoring Software on the Pentium

A High Resolution Performance Monitoring Software on the Pentium A High Resolution Performance Monitoring Software on the Pentium Ong Cheng Soon*, Fadhli Wong Mohd Hasan Wong**, Lai Weng Kin* * Software Lab, MIMOS Berhad lai@mimos.my, csong@mimos.my ** Dept of Electrical

More information

SATELLITE TIME-TRANSFER: RECENT DEVELOPMENTS AND PROJECTS

SATELLITE TIME-TRANSFER: RECENT DEVELOPMENTS AND PROJECTS SATELLITE TIME-TRANSFER: RECENT DEVELOPMENTS AND PROJECTS W. LEWANDOWSKI 1 and J. NAWROCKI 2 1 Bureau International des Poids et Mesures, Sèvres, France e-mail: wlewandowski@bipm.org 2 Astrogeodynamical

More information

APPLICATION CASE OF THE END-TO-END RELAY TESTING USING GPS-SYNCHRONIZED SECONDARY INJECTION IN COMMUNICATION BASED PROTECTION SCHEMES

APPLICATION CASE OF THE END-TO-END RELAY TESTING USING GPS-SYNCHRONIZED SECONDARY INJECTION IN COMMUNICATION BASED PROTECTION SCHEMES APPLICATION CASE OF THE END-TO-END RELAY TESTING USING GPS-SYNCHRONIZED SECONDARY INJECTION IN COMMUNICATION BASED PROTECTION SCHEMES J. Ariza G. Ibarra Megger, USA CFE, Mexico Abstract This paper reviews

More information

Time Calibrator. 2013 Fountain Computer Products

Time Calibrator. 2013 Fountain Computer Products Time Calibrator Time Calibrator All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

Distributed Synchronization

Distributed Synchronization CIS 505: Software Systems Lecture Note on Physical Clocks Insup Lee Department of Computer and Information Science University of Pennsylvania Distributed Synchronization Communication between processes

More information

CDMA Technology : Pr. S. Flament www.greyc.fr/user/99. Pr. Dr. W. sk www.htwg-konstanz.de. On line Course on CDMA Technology

CDMA Technology : Pr. S. Flament www.greyc.fr/user/99. Pr. Dr. W. sk www.htwg-konstanz.de. On line Course on CDMA Technology CDMA Technology : Pr. Dr. W. sk www.htwg-konstanz.de Pr. S. Flament www.greyc.fr/user/99 On line Course on CDMA Technology CDMA Technology : CDMA / DS : Principle of operation Generation of PN Spreading

More information

Radio Technical Commission for Maritime Services. GPS Update. Bob Markle RTCM Arlington, VA USA. NMEA Convention & Expo 2010

Radio Technical Commission for Maritime Services. GPS Update. Bob Markle RTCM Arlington, VA USA. NMEA Convention & Expo 2010 Radio Technical Commission for Maritime Services GPS Update NMEA Convention & Expo 2010 Bob Markle RTCM Arlington, VA USA What is RTCM? International non-profit scientific, professional and membership

More information

General GPS Antenna Information APPLICATION NOTE

General GPS Antenna Information APPLICATION NOTE General GPS Antenna Information APPLICATION NOTE General GPS Antenna Information Global Positioning System and Precise Time & Frequency The Global Positioning System (GPS) is a worldwide radio-navigation

More information

Time Synchronization & Timekeeping

Time Synchronization & Timekeeping 70072-0111-14 TECHNICAL NOTE 06/2009 Time Synchronization & Timekeeping Time synchronization lets you synchronize the internal clocks of all networked PowerLogic ION meters and devices. Once synchronized,

More information

Bi-Directional DGPS for Range Safety Applications

Bi-Directional DGPS for Range Safety Applications Bi-Directional DGPS for Range Safety Applications Ranjeet Shetty 234-A, Avionics Engineering Center, Russ College of Engineering and Technology, Ohio University Advisor: Dr. Chris Bartone Outline Background

More information

Vehicle and Object Tracking Based on GPS and GSM

Vehicle and Object Tracking Based on GPS and GSM Vehicle and Object Tracking Based on GPS and GSM 1 Sonali Kumari, 2 Simran Ghai, 3 Bharti Kushwaha 1,2,3 Department of Computer Science, Dronacharya Group of Institutions, Greater Noida (U.P), India Abstract:

More information

VoIP Timing and Synchronization Best Practices

VoIP Timing and Synchronization Best Practices Best Practices A Brilliant Telecommunications White Paper December 2006 Introduction The explosive adoption of packet based networks from circuit switched (i.e. PSTN) continues to change the networking

More information

Selecting the Optimum PCI Express Clock Source

Selecting the Optimum PCI Express Clock Source Selecting the Optimum PCI Express Clock Source PCI Express () is a serial point-to-point interconnect standard developed by the Component Interconnect Special Interest Group (PCI-SIG). lthough originally

More information

EMX-2500 DATA SHEET FEATURES GIGABIT ETHERNET REMOTE CONTROLLER FOR PXI EXPRESS MAINFRAMES SYSTEM LEVEL FUNCTIONALITY

EMX-2500 DATA SHEET FEATURES GIGABIT ETHERNET REMOTE CONTROLLER FOR PXI EXPRESS MAINFRAMES SYSTEM LEVEL FUNCTIONALITY DATA SHEET EMX-2500 GIGABIT ETHERNET REMOTE CONTROLLER FOR PXI EXPRESS MAINFRAMES FEATURES SYSTEM LEVEL FUNCTIONALITY Industry s first gigabit Ethernet Remote controller for PXI express mainframes Up to

More information

Indoor / Outdoor Antenna

Indoor / Outdoor Antenna z300 High Precision NTP Time Server Indoor / Outdoor Antenna High Precision NTP Time Server with PoE (Indoor or Outdoor use) synchronized by GPS Revision 4 ZTI / 1 boulevard d'armor / BP 20254 / 22302

More information

Time Synchronization of Computer in secure manner while using Teleclock & NTP Services

Time Synchronization of Computer in secure manner while using Teleclock & NTP Services Time Synchronization of Computer in secure manner while using Teleclock & NTP Services Shilpa 1 and Parveen Sharma 2 1 Research Scholar Shri Krishan Institute of Engineering & Technology, Kurukshetra University,

More information

Choosing the correct Time Synchronization Protocol and incorporating the 1756-TIME module into your Application

Choosing the correct Time Synchronization Protocol and incorporating the 1756-TIME module into your Application Choosing the correct Time Synchronization Protocol and incorporating the 1756-TIME module into your Application By: Josh Matson Various Time Synchronization Protocols From the earliest days of networked

More information

[3] beautiful visualisation of the satellites positions by HSR / ICOM

[3] beautiful visualisation of the satellites positions by HSR / ICOM GPS (Introduction) MSE, Rumc, GPS, 1 Terms NAVSTAR GPS ( Navigational Satellite Timing and Ranging - Global Positioning System) is a GNSS (Global Navigation Satellite System), developed by the US-DoD in

More information

PC Clock Accuracy. To pick a random (UK) time server use 0.uk.pool.ntp.org, 1.uk.pool.ntp.org, 2.uk.pool.ntp.org or 3.uk.pool.ntp.org.

PC Clock Accuracy. To pick a random (UK) time server use 0.uk.pool.ntp.org, 1.uk.pool.ntp.org, 2.uk.pool.ntp.org or 3.uk.pool.ntp.org. PC Clock Accuracy The following is based on my own experiences with Windows XP Home. I would imagine that the following could apply to other recent versions of the Windows OS from Windows 2000 to Vista,

More information

DS1307ZN. 64 x 8 Serial Real-Time Clock

DS1307ZN. 64 x 8 Serial Real-Time Clock DS137 64 x 8 Serial Real-Time Clock www.maxim-ic.com FEATURES Real-time clock (RTC) counts seconds, minutes, hours, date of the month, month, day of the week, and year with leap-year compensation valid

More information

Timing Errors and Jitter

Timing Errors and Jitter Timing Errors and Jitter Background Mike Story In a sampled (digital) system, samples have to be accurate in level and time. The digital system uses the two bits of information the signal was this big

More information

Electric utilities may vary in their application of end-to-end testing

Electric utilities may vary in their application of end-to-end testing An Application Case of End-to-End Relay Testing of Communication-Based Protection Schemes Using GPS-Synchronized Secondary Injection Feature by J. Ariza, Megger USA G. Ibarra, CFE, Mexico Electric utilities

More information

Wireless Phones, GPS and Data Applications

Wireless Phones, GPS and Data Applications Wireless Phones, GPS and Data Applications James M. Conrad and Santosh Kolenchery Ericsson, Inc., 7001 Development Drive, Research Triangle Park, NC 27709 (919) 472-6178, james.conrad@ericsson.com (919)

More information

BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM

BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM NaveenKumar.M #1, Ranjith.R *2 #* Department of Electronics and Instrumentation Engineering, #* Sri Sairam Engineering College, Chennai,

More information

How To Monitor Sea Level With Satellite Radar

How To Monitor Sea Level With Satellite Radar Satellite Altimetry Wolfgang Bosch Deutsches Geodätisches Forschungsinstitut (DGFI), München email: bosch@dgfi.badw.de Objectives You shall recognize satellite altimetry as an operational remote sensing

More information

IEEE-1588 Standard for a Precision Clock Synchronization Protocol for Networked Measurement and Control Systems

IEEE-1588 Standard for a Precision Clock Synchronization Protocol for Networked Measurement and Control Systems IEEE-1588 Standard for a Precision Clock Synchronization Protocol for Networked Measurement and Control Systems -A Tutorial- John Eidson john_eidson@agilent.com Copyright 2005 Agilent Technologies, Inc

More information

How To Understand Gate

How To Understand Gate Time Facility for German Galileo Test Environment GATE J. Furthner, German Aerospace Center () Folie 1, GTFS 2005 > JF Content Overview of GATE Major Objectives of GATE GATE Field Service Area Functions

More information

Clocking. Clocking in the Digital Network

Clocking. Clocking in the Digital Network Clocking Clocking in the Digital Network Stratum Levels Clocking Distribution Single Point versus Multiple Points Timing Differences Correcting Timing Errors Buffers 1 Clocking The most important aspect

More information

The Applanix SmartBase TM Software for Improved Robustness, Accuracy, and Productivity of Mobile Mapping and Positioning

The Applanix SmartBase TM Software for Improved Robustness, Accuracy, and Productivity of Mobile Mapping and Positioning The Applanix SmartBase TM Software for Improved Robustness, Accuracy, and Productivity of Mobile Mapping and Positioning Joe Hutton and Edith Roy, Applanix Corporation Introduction Applanix, along with

More information

Precision Clock Synchronization

Precision Clock Synchronization Hirschmann. Simply a Good Connection. White Paper Precision Clock Synchronization The Standard IEEE 1588 Precision Clock Synchronization IEEE 1588 White Paper Rev. 1.2 Table of contents Precision Clock

More information

Contents. Connection Guide. What is Dante?... 2. Connections... 4. Network Set Up... 6. System Examples... 9. Copyright 2015 ROLAND CORPORATION

Contents. Connection Guide. What is Dante?... 2. Connections... 4. Network Set Up... 6. System Examples... 9. Copyright 2015 ROLAND CORPORATION Contents What is Dante?............................................. 2 Outline.................................................. 2 Fundamental............................................ 3 Required Network

More information

Email: tjohn@mail.nplindia.ernet.in

Email: tjohn@mail.nplindia.ernet.in USE OF VIRTUAL INSTRUMENTS IN RADIO AND ATMOSPHERIC EXPERIMENTS P.N. VIJAYAKUMAR, THOMAS JOHN AND S.C. GARG RADIO AND ATMOSPHERIC SCIENCE DIVISION, NATIONAL PHYSICAL LABORATORY, NEW DELHI 110012, INDIA

More information

Mobile Communications: Satellite Systems

Mobile Communications: Satellite Systems Mobile Communications: Satellite Systems Mobile Communication: Satellite Systems - Jochen Schiller http://www.jochenschiller.de 1 History of satellite communication 1945 Arthur C. Clarke publishes an essay

More information

Redes de Comunicação em Ambientes Industriais Aula 7

Redes de Comunicação em Ambientes Industriais Aula 7 Redes de Comunicação em Ambientes Industriais Aula 7 Luís Almeida Paulo Pedreiras lda@det.ua.pt pedreiras@det.ua.pt Electronic Systems Lab-IEETA / DET Universidade de Aveiro Aveiro, Portugal RCAI 2005/2006

More information

Wide Area Monitoring, Control, and Protection

Wide Area Monitoring, Control, and Protection Wide Area Monitoring, Control, and Protection Course Map Acronyms Wide Area Monitoring Systems (WAMS) Wide Area Monitoring Control Systems (WAMCS) Wide Area Monitoring Protection and Control Systems (WAMPACS)

More information

RECOMMENDATION ITU-R F.1113. (Question ITU-R 157/9) b) that systems using this mode of propagation are already in service for burst data transmission,

RECOMMENDATION ITU-R F.1113. (Question ITU-R 157/9) b) that systems using this mode of propagation are already in service for burst data transmission, Rec. ITU-R F.1113 1 RECOMMENDATION ITU-R F.1113 RADIO SYSTEMS EMPLOYING METEOR-BURST PROPAGATION (Question ITU-R 157/9) (1994) Rec. ITU-R F.1113 The ITU Radiocommunication Assembly, considering a) that

More information

The Chip Scale Atomic Clock and Satellite Navigation

The Chip Scale Atomic Clock and Satellite Navigation The Chip Scale Atomic Clock and Satellite Navigation Presented to the China Satellite Navigation Conference Steve Fossi, Director of Business Development, OEM Clocks May 17, 2013 Agenda What is the QUANTUM

More information

TIMING SIGNALS, IRIG-B AND PULSES

TIMING SIGNALS, IRIG-B AND PULSES TIMING SIGNALS, IRIG-B AND PULSES Document No. PD0043200B July 2013 Arbiter Systems, Inc. 1324 Vendels Circle, Suite 121 Paso Robles, CA 93446 U.S.A. (805) 237-3831, (800) 321-3831 http://www.arbiter.com

More information

Enabling RTK-like positioning offshore using the global VERIPOS GNSS network. Pieter Toor GNSS Technology Manager

Enabling RTK-like positioning offshore using the global VERIPOS GNSS network. Pieter Toor GNSS Technology Manager Enabling RTK-like positioning offshore using the global VERIPOS GNSS network Pieter Toor GNSS Technology Manager Introduction PPP/RTK Positioning Techniques PPP-AR Technology Presentation Overview PPP-AR

More information

Packet Synchronization in Cellular Backhaul Networks By Patrick Diamond, PhD, Semtech Corporation

Packet Synchronization in Cellular Backhaul Networks By Patrick Diamond, PhD, Semtech Corporation Packet Synchronization in Cellular Backhaul Networks By Patrick Diamond, PhD, Semtech Corporation (Semtech White Paper October 2008) INTRODUCTION For carriers to leverage cost-effective IP networks to

More information

Delivering NIST Time to Financial Markets Via Common-View GPS Measurements

Delivering NIST Time to Financial Markets Via Common-View GPS Measurements Delivering NIST Time to Financial Markets Via Common-View GPS Measurements Michael Lombardi NIST Time and Frequency Division lombardi@nist.gov 55 th CGSIC Meeting Timing Subcommittee Tampa, Florida September

More information

Global Navigation Satellite Systems

Global Navigation Satellite Systems White Paper Global Navigation Satellite Systems The Present and the Future For more information, please visit: 2012 IEIMobile Global Navigation Satellite System, or GNSS in short, is a generic term used

More information

Modeling a GPS Receiver Using SystemC

Modeling a GPS Receiver Using SystemC Modeling a GPS Receiver using SystemC Modeling a GPS Receiver Using SystemC Bernhard Niemann Reiner Büttner Martin Speitel http://www.iis.fhg.de http://www.iis.fhg.de/kursbuch/kurse/systemc.html The e

More information

Phase coherency of CDMA caller location processing based on TCXO frequency reference with intermittent GPS correction

Phase coherency of CDMA caller location processing based on TCXO frequency reference with intermittent GPS correction Phase coherency of CDMA caller location processing based on TCXO frequency reference with intermittent GPS correction Dingchen Lu, Alfredo Lopez, Surendran K. Shanmugam, John Nielsen and Gerard Lachapelle

More information

STANDPOINT FOR QUALITY-OF-SERVICE MEASUREMENT

STANDPOINT FOR QUALITY-OF-SERVICE MEASUREMENT STANDPOINT FOR QUALITY-OF-SERVICE MEASUREMENT 1. TIMING ACCURACY The accurate multi-point measurements require accurate synchronization of clocks of the measurement devices. If for example time stamps

More information

Specifications. Trimble SPS461 Modular GPS Heading Receiver

Specifications. Trimble SPS461 Modular GPS Heading Receiver Receiver Name Configuration Option Base and Rover interchangeability Rover position update rate Rover maximum range from base Rover operation within a VRS network Heading operation Factory options General

More information

GPS BLOCK IIF RUBIDIUM FREQUENCY STANDARD LIFE TEST

GPS BLOCK IIF RUBIDIUM FREQUENCY STANDARD LIFE TEST GPS BLOCK IIF RUBIDIUM FREQUENCY STANDARD LIFE TEST F. Vannicola, R. Beard, J. White, K. Senior, T. Kubik, D. Wilson U.S. Naval Research Laboratory 4555 Overlook Avenue, SW, Washington, DC 20375, USA E-mail:

More information

Computer buses and interfaces

Computer buses and interfaces FYS3240 PC-based instrumentation and microcontrollers Computer buses and interfaces Spring 2011 Lecture #5 Bekkeng 15.1.2011 The most common data acquisition buses available today Internal computer buses

More information

Technical Article Developing Software for the CN3 Integrated GPS Receiver

Technical Article Developing Software for the CN3 Integrated GPS Receiver Technical Article Developing Software for the CN3 Integrated GPS Receiver 1 Intermec Technologies Table of Contents INTRODUCTION... 3 AN OVERVIEW OF GPS TECHNOLOGY... 3 What is GPS?... 3 How GPS works...

More information

TRIMBLE ATS TOTAL STATION ADVANCED TRACKING SYSTEMS FOR HIGH-PRECISION CONSTRUCTION APPLICATIONS

TRIMBLE ATS TOTAL STATION ADVANCED TRACKING SYSTEMS FOR HIGH-PRECISION CONSTRUCTION APPLICATIONS TRIMBLE ATS TOTAL STATION ADVANCED TRACKING SYSTEMS FOR HIGH-PRECISION CONSTRUCTION APPLICATIONS BY MARTIN WAGENER APPLICATIONS ENGINEER, TRIMBLE EUROPE OVERVIEW Today s construction industry demands more

More information

EVAL-UFDC-1/UFDC-1M-16

EVAL-UFDC-1/UFDC-1M-16 Evaluation Board for Universal Frequency-to- Digital Converters UFDC-1 and UFDC-1M-16 EVAL-UFDC-1/UFDC-1M-16 FEATURES Full-Featured Evaluation Board for the Universal Frequency-to-Digital Converters UFDC-1

More information

Mobile Communications Exercise: Satellite Systems and Wireless LANs. Georg von Zengen, IBR, TU Braunschweig, www.ibr.cs.tu-bs.de

Mobile Communications Exercise: Satellite Systems and Wireless LANs. Georg von Zengen, IBR, TU Braunschweig, www.ibr.cs.tu-bs.de Mobile Communications Exercise: Satellite Systems and Wireless LANs N 1 Please define the terms inclination and elevation using the following two figures. How do these parameters influence the usefulness

More information

Broadband Networks. Prof. Dr. Abhay Karandikar. Electrical Engineering Department. Indian Institute of Technology, Bombay. Lecture - 29.

Broadband Networks. Prof. Dr. Abhay Karandikar. Electrical Engineering Department. Indian Institute of Technology, Bombay. Lecture - 29. Broadband Networks Prof. Dr. Abhay Karandikar Electrical Engineering Department Indian Institute of Technology, Bombay Lecture - 29 Voice over IP So, today we will discuss about voice over IP and internet

More information

White paper. Latency in live network video surveillance

White paper. Latency in live network video surveillance White paper Latency in live network video surveillance Table of contents 1. Introduction 3 2. What is latency? 3 3. How do we measure latency? 3 4. What affects latency? 4 4.1 Latency in the camera 4 4.1.1

More information

2.0 System Description

2.0 System Description 2.0 System Description The wireless alarm system consists of two or more alarm units within a specified range of one another. Each alarm unit employs a radio transceiver, allowing it to communicate with

More information

Introduction into Real-Time Network Adjustment with Geo++ GNSMART

Introduction into Real-Time Network Adjustment with Geo++ GNSMART Introduction into Real-Time Network Adjustment with Geo++ GNSMART Andreas Bagge Gerhard Wübbena, Martin Schmitz Geo++ GmbH D-30827 Garbsen, Germany www.geopp.de GeoInformation Workshop 2004, Istanbul Kultur

More information

LLRF. Digital RF Stabilization System

LLRF. Digital RF Stabilization System LLRF Digital RF Stabilization System Many instruments. Many people. Working together. Stability means knowing your machine has innovative solutions. For users, stability means a machine achieving its full

More information

EECC694 - Shaaban. Transmission Channel

EECC694 - Shaaban. Transmission Channel The Physical Layer: Data Transmission Basics Encode data as energy at the data (information) source and transmit the encoded energy using transmitter hardware: Possible Energy Forms: Electrical, light,

More information

Global Positioning System (GPS) Time Dissemination for Real-Time Applications

Global Positioning System (GPS) Time Dissemination for Real-Time Applications Real-Time systems, 12, 9-40 (1997) 1997 Kluwer Academic Publishers, Boston. Manufactured in The Netherlands. Global Positioning System (GPS) Time Dissemination for Real-Time Applications PETER H. DANA

More information

Synchronization of sampling in distributed signal processing systems

Synchronization of sampling in distributed signal processing systems Synchronization of sampling in distributed signal processing systems Károly Molnár, László Sujbert, Gábor Péceli Department of Measurement and Information Systems, Budapest University of Technology and

More information

GPS NTP Time Server for Intranet Networks DIN RAIL Version

GPS NTP Time Server for Intranet Networks DIN RAIL Version GPS NTP Time Server for Intranet Networks DIN RAIL Version Description: GPS NTP time server is very simple low cost solution for Ethernet / Intranet time synchronization. Each computer or devices with

More information

Mobile Computing. Chapter 5: Satellite Systems

Mobile Computing. Chapter 5: Satellite Systems Mobile Computing Chapter 5: Satellite Systems Prof. Sang-Jo Yoo History of satellite communication 1945 Arthur C. Clarke publishes an essay about Extra Terrestrial Relays 1957 First satellite SPUTNIK by

More information

AN NTP STRATUM-ONE SERVER FARM FED BY IEEE-1588

AN NTP STRATUM-ONE SERVER FARM FED BY IEEE-1588 AN NTP STRATUM-ONE SERVER FARM FED BY IEEE-1588 Richard E. Schmidt and Blair Fonville Time Service Department, U.S. Naval Observatory 3450 Massachusetts Ave. NW, Washington, D.C. 20392, USA rich.schmidt@usno.navy.mil,

More information

COLLATED QUESTIONS: ELECTROMAGNETIC RADIATION

COLLATED QUESTIONS: ELECTROMAGNETIC RADIATION COLLATED QUESTIONS: ELECTROMAGNETIC RADIATION 2011(2): WAVES Doppler radar can determine the speed and direction of a moving car. Pulses of extremely high frequency radio waves are sent out in a narrow

More information