DJ
Didier Juges
Sun, Oct 22, 2006 2:34 PM
Hi Warner,
Does it mean I should divide the 10 MHz down to 1 Hz output and use the
5370 to measure TI compared to it's internal timebase once per second,
and feed that to the computer, store it to a file and feed the output to
AlaVar? (obviously, the divider would have to use synchronous counters)
Or should I work directly on the 10 MHz output? The 5370 can average up
to 100k samples, so by averaging 100k samples and polling the GPIB
once/sec, would I be correct if I use the computer to average those
further down to 2/sec, 4/sec and so on as needed before feeding the data
to Alavar?
Now, let's assume I have a big hard drive (250 GB + 120 GB at the
moment, with probably close to a total of 200 GB available), other than
computing time (which may not be negligible), how can I determine the
best acquisition interval? (as the one that will give me meaningful data
in the shortest amount of time)
I understand AlaVar only works in batch mode (no real time capability),
so I have to collect a certain amount of data "blindly" before I can
find out if it is any good. If I am checking a GPS disciplined
oscillator, that will take several hours at a time and I am trying to
speed up the process, at least to make sure the procedures and
algorithms are OK.
See, you can't provide answers without getting more questions :-)
Thanks
Didier
M. Warner Losh wrote:
Just a quick note on this topic. I'll not be able to answer all your
questions, but here's a few.
Allen Variance (or Allen Deviation) is usually used to measure clock
stability over 1s or longer. As this is a way to judge the stability
of an oscillator, very short term numbers tend to be less useful.
This means that fast data collection rates end up having lots of
redundant data that contributes little added benefit to the
calculations, but has large storage requirements. If you are
computing a Tau of 100s, for example, 10Hz vs 1Hz data will only give
a factor of 3 better confidence interval (the standard deviation of
the avarage at a Tau of 100s, which goes as the square root of the
number of samples), but you'd have a 10x increase in storage.
Allen Variance usually is measured at 1s, 2s, 4 (or 5s), 10s, 20s,
etc up to some fraction of the period of time the data covers. The
fraction is again determined by the type of deviation and the number
of points used to calculate the number.
Warner
Hi Warner,
Does it mean I should divide the 10 MHz down to 1 Hz output and use the
5370 to measure TI compared to it's internal timebase once per second,
and feed that to the computer, store it to a file and feed the output to
AlaVar? (obviously, the divider would have to use synchronous counters)
Or should I work directly on the 10 MHz output? The 5370 can average up
to 100k samples, so by averaging 100k samples and polling the GPIB
once/sec, would I be correct if I use the computer to average those
further down to 2/sec, 4/sec and so on as needed before feeding the data
to Alavar?
Now, let's assume I have a big hard drive (250 GB + 120 GB at the
moment, with probably close to a total of 200 GB available), other than
computing time (which may not be negligible), how can I determine the
best acquisition interval? (as the one that will give me meaningful data
in the shortest amount of time)
I understand AlaVar only works in batch mode (no real time capability),
so I have to collect a certain amount of data "blindly" before I can
find out if it is any good. If I am checking a GPS disciplined
oscillator, that will take several hours at a time and I am trying to
speed up the process, at least to make sure the procedures and
algorithms are OK.
See, you can't provide answers without getting more questions :-)
Thanks
Didier
M. Warner Losh wrote:
> Just a quick note on this topic. I'll not be able to answer all your
> questions, but here's a few.
>
> Allen Variance (or Allen Deviation) is usually used to measure clock
> stability over 1s or longer. As this is a way to judge the stability
> of an oscillator, very short term numbers tend to be less useful.
> This means that fast data collection rates end up having lots of
> redundant data that contributes little added benefit to the
> calculations, but has large storage requirements. If you are
> computing a Tau of 100s, for example, 10Hz vs 1Hz data will only give
> a factor of 3 better confidence interval (the standard deviation of
> the avarage at a Tau of 100s, which goes as the square root of the
> number of samples), but you'd have a 10x increase in storage.
>
> Allen Variance usually is measured at 1s, 2s, 4 (or 5s), 10s, 20s,
> etc up to some fraction of the period of time the data covers. The
> fraction is again determined by the type of deviation and the number
> of points used to calculate the number.
>
> Warner
>
>
JA
John Ackermann N8UR
Sun, Oct 22, 2006 2:57 PM
Didier, a few comments embedded below.
John
Didier Juges said the following on 10/22/2006 10:34 AM:
Hi Warner,
Does it mean I should divide the 10 MHz down to 1 Hz output and use the
5370 to measure TI compared to it's internal timebase once per second,
and feed that to the computer, store it to a file and feed the output to
AlaVar? (obviously, the divider would have to use synchronous counters)
Or should I work directly on the 10 MHz output? The 5370 can average up
to 100k samples, so by averaging 100k samples and polling the GPIB
once/sec, would I be correct if I use the computer to average those
further down to 2/sec, 4/sec and so on as needed before feeding the data
to Alavar?
Ideally, you want to reduce both the device under test (DUT) and the
reference to 1 PPS. The GPS can give you that directly, and you can use
some sort of divider to reduce the DUT from its nominal frequency. Not
everyone does it the same way, but there seems to be a convention that
the reference signal is applied to the "stop" input of the counter, and
the DUT to the "start" input. You want to bump the phase of the pulses
so that the initial time difference is relatively small -- ideally, not
more than a few hundred microseconds. This will reduce the impact of
any noise or offset in the counter's reference.
It's possible to use 1PPS from the reference, and a higher frequency
(even 10MHz) from the DUT, but I've never had a lot of luck doing this.
It's way too easy to slip a cycle and get artificial phase jumps.
Now, let's assume I have a big hard drive (250 GB + 120 GB at the
moment, with probably close to a total of 200 GB available), other than
computing time (which may not be negligible), how can I determine the
best acquisition interval? (as the one that will give me meaningful data
in the shortest amount of time)
Even with the 5370's 20ps resolution, you won't be able to measure good
DUTs below about 100 seconds averaging; the trigger jitter and other
noise will get you unless you go to something sophisticated like a
dual-mixer time-difference system (which isn't as easy to implement as
it appears at first glance).
So, I normally average data for 100 seconds and then log those averages.
You can use the counter's internal average command, or just capture
each data point and average in your software. I output a data file with
the MJD and phase value. That data file then feeds whatever analysis
tool I'm using at the moment.
I understand AlaVar only works in batch mode (no real time capability),
so I have to collect a certain amount of data "blindly" before I can
find out if it is any good. If I am checking a GPS disciplined
oscillator, that will take several hours at a time and I am trying to
speed up the process, at least to make sure the procedures and
algorithms are OK.
This is an avocation for the patient. :-) My current experiment logging
2 HP5061As and an HP5065A against GPS has been running for about 90 days
now, and I hope to get at least another 30 days before I have to stop to
make some equipment changes.
John
Didier, a few comments embedded below.
John
----
Didier Juges said the following on 10/22/2006 10:34 AM:
> Hi Warner,
>
> Does it mean I should divide the 10 MHz down to 1 Hz output and use the
> 5370 to measure TI compared to it's internal timebase once per second,
> and feed that to the computer, store it to a file and feed the output to
> AlaVar? (obviously, the divider would have to use synchronous counters)
>
> Or should I work directly on the 10 MHz output? The 5370 can average up
> to 100k samples, so by averaging 100k samples and polling the GPIB
> once/sec, would I be correct if I use the computer to average those
> further down to 2/sec, 4/sec and so on as needed before feeding the data
> to Alavar?
Ideally, you want to reduce both the device under test (DUT) and the
reference to 1 PPS. The GPS can give you that directly, and you can use
some sort of divider to reduce the DUT from its nominal frequency. Not
everyone does it the same way, but there seems to be a convention that
the reference signal is applied to the "stop" input of the counter, and
the DUT to the "start" input. You want to bump the phase of the pulses
so that the initial time difference is relatively small -- ideally, not
more than a few hundred microseconds. This will reduce the impact of
any noise or offset in the counter's reference.
It's possible to use 1PPS from the reference, and a higher frequency
(even 10MHz) from the DUT, but I've never had a lot of luck doing this.
It's way too easy to slip a cycle and get artificial phase jumps.
> Now, let's assume I have a big hard drive (250 GB + 120 GB at the
> moment, with probably close to a total of 200 GB available), other than
> computing time (which may not be negligible), how can I determine the
> best acquisition interval? (as the one that will give me meaningful data
> in the shortest amount of time)
Even with the 5370's 20ps resolution, you won't be able to measure good
DUTs below about 100 seconds averaging; the trigger jitter and other
noise will get you unless you go to something sophisticated like a
dual-mixer time-difference system (which isn't as easy to implement as
it appears at first glance).
So, I normally average data for 100 seconds and then log those averages.
You can use the counter's internal average command, or just capture
each data point and average in your software. I output a data file with
the MJD and phase value. That data file then feeds whatever analysis
tool I'm using at the moment.
> I understand AlaVar only works in batch mode (no real time capability),
> so I have to collect a certain amount of data "blindly" before I can
> find out if it is any good. If I am checking a GPS disciplined
> oscillator, that will take several hours at a time and I am trying to
> speed up the process, at least to make sure the procedures and
> algorithms are OK.
This is an avocation for the patient. :-) My current experiment logging
2 HP5061As and an HP5065A against GPS has been running for about 90 days
now, and I hope to get at least another 30 days before I have to stop to
make some equipment changes.
John
DJ
Didier Juges
Sun, Oct 22, 2006 5:41 PM
More comments embedded...
Didier
John Ackermann N8UR wrote:
Didier, a few comments embedded below.
John
Didier Juges said the following on 10/22/2006 10:34 AM:
Hi Warner,
Does it mean I should divide the 10 MHz down to 1 Hz output and use the
5370 to measure TI compared to it's internal timebase once per second,
and feed that to the computer, store it to a file and feed the output to
AlaVar? (obviously, the divider would have to use synchronous counters)
Or should I work directly on the 10 MHz output? The 5370 can average up
to 100k samples, so by averaging 100k samples and polling the GPIB
once/sec, would I be correct if I use the computer to average those
further down to 2/sec, 4/sec and so on as needed before feeding the data
to Alavar?
Ideally, you want to reduce both the device under test (DUT) and the
reference to 1 PPS. The GPS can give you that directly, and you can use
some sort of divider to reduce the DUT from its nominal frequency. Not
everyone does it the same way, but there seems to be a convention that
the reference signal is applied to the "stop" input of the counter, and
the DUT to the "start" input. You want to bump the phase of the pulses
so that the initial time difference is relatively small -- ideally, not
more than a few hundred microseconds. This will reduce the impact of
any noise or offset in the counter's reference.
It's possible to use 1PPS from the reference, and a higher frequency
(even 10MHz) from the DUT, but I've never had a lot of luck doing this.
It's way too easy to slip a cycle and get artificial phase jumps.
From your comment, I gather that if the oscillators to be compared are
not on the same frequency, problem might ensue, so the 1 PPS output is a
much better option than the 10 MHz.
If I use a 1 PPS signal for both oscillators, as long as they do not
drift by 1 cycle during the sample period, we should be OK.
So the best would be to be able to reset the divider (that takes the
crystal down to 1 PPS) synchronously (or with a small delay) with the 1
PPS output of the GPS, then I should be good for a while. If I get the
OCXO within 10-6, I should be good for 10^6 seconds before skipping a
cycle (assuming the drift is in the proper direction....)
Now, let's assume I have a big hard drive (250 GB + 120 GB at the
moment, with probably close to a total of 200 GB available), other than
computing time (which may not be negligible), how can I determine the
best acquisition interval? (as the one that will give me meaningful data
in the shortest amount of time)
Even with the 5370's 20ps resolution, you won't be able to measure good
DUTs below about 100 seconds averaging; the trigger jitter and other
noise will get you unless you go to something sophisticated like a
dual-mixer time-difference system (which isn't as easy to implement as
it appears at first glance).
So, I normally average data for 100 seconds and then log those averages.
You can use the counter's internal average command, or just capture
each data point and average in your software. I output a data file with
the MJD and phase value. That data file then feeds whatever analysis
tool I'm using at the moment.
So every 100 seconds, you log the average data collected at the 1 PPS
rate, for a few months.
How long before you have something that is at least worth looking at
just to make sure it is working?
(my type A personality does not deal with experiments lasting months too
well :-)
I remember seeing some postings about MJD being in a particular format.
I will look in the AvaTar help file, I believe I saw something about that.
A sample file would be helpful.
So I gather this procedure will measure the sum of the variations of
both oscillators. By using three oscillators, and measuring them 2 at a
time, after 3 measurement cycles, I should be able to determine the
performance of each oscillator. At least that's all I remember of
statistics classes. How to do that escapes me at the moment.
Maybe it would be simpler to buy an FRK Rubidium oscillator on eBay. How
do these compare to a 10811 in the short term and the long term?
I understand AlaVar only works in batch mode (no real time capability),
so I have to collect a certain amount of data "blindly" before I can
find out if it is any good. If I am checking a GPS disciplined
oscillator, that will take several hours at a time and I am trying to
speed up the process, at least to make sure the procedures and
algorithms are OK.
This is an avocation for the patient. :-) My current experiment logging
2 HP5061As and an HP5065A against GPS has been running for about 90 days
now, and I hope to get at least another 30 days before I have to stop to
make some equipment changes.
Roger that, see my comment above.
I have an older laptop and spare GPIB/serial controller that I can
dedicate to the task. I will set that aside so I am not tempted to mess
with it while it collects data.
I must make sure my battery backup system is working (the 5370A draws
200 VA), and I'll be listening to 6m in the mean time (talking about
patience :-)
More comments embedded...
Didier
John Ackermann N8UR wrote:
> Didier, a few comments embedded below.
>
> John
> ----
>
> Didier Juges said the following on 10/22/2006 10:34 AM:
>
>> Hi Warner,
>>
>> Does it mean I should divide the 10 MHz down to 1 Hz output and use the
>> 5370 to measure TI compared to it's internal timebase once per second,
>> and feed that to the computer, store it to a file and feed the output to
>> AlaVar? (obviously, the divider would have to use synchronous counters)
>>
>> Or should I work directly on the 10 MHz output? The 5370 can average up
>> to 100k samples, so by averaging 100k samples and polling the GPIB
>> once/sec, would I be correct if I use the computer to average those
>> further down to 2/sec, 4/sec and so on as needed before feeding the data
>> to Alavar?
>>
>
> Ideally, you want to reduce both the device under test (DUT) and the
> reference to 1 PPS. The GPS can give you that directly, and you can use
> some sort of divider to reduce the DUT from its nominal frequency. Not
> everyone does it the same way, but there seems to be a convention that
> the reference signal is applied to the "stop" input of the counter, and
> the DUT to the "start" input. You want to bump the phase of the pulses
> so that the initial time difference is relatively small -- ideally, not
> more than a few hundred microseconds. This will reduce the impact of
> any noise or offset in the counter's reference.
>
> It's possible to use 1PPS from the reference, and a higher frequency
> (even 10MHz) from the DUT, but I've never had a lot of luck doing this.
> It's way too easy to slip a cycle and get artificial phase jumps.
>
>
From your comment, I gather that if the oscillators to be compared are
not on the same frequency, problem might ensue, so the 1 PPS output is a
much better option than the 10 MHz.
If I use a 1 PPS signal for both oscillators, as long as they do not
drift by 1 cycle during the sample period, we should be OK.
So the best would be to be able to reset the divider (that takes the
crystal down to 1 PPS) synchronously (or with a small delay) with the 1
PPS output of the GPS, then I should be good for a while. If I get the
OCXO within 10-6, I should be good for 10^6 seconds before skipping a
cycle (assuming the drift is in the proper direction....)
>> Now, let's assume I have a big hard drive (250 GB + 120 GB at the
>> moment, with probably close to a total of 200 GB available), other than
>> computing time (which may not be negligible), how can I determine the
>> best acquisition interval? (as the one that will give me meaningful data
>> in the shortest amount of time)
>>
>
> Even with the 5370's 20ps resolution, you won't be able to measure good
> DUTs below about 100 seconds averaging; the trigger jitter and other
> noise will get you unless you go to something sophisticated like a
> dual-mixer time-difference system (which isn't as easy to implement as
> it appears at first glance).
>
> So, I normally average data for 100 seconds and then log those averages.
> You can use the counter's internal average command, or just capture
> each data point and average in your software. I output a data file with
> the MJD and phase value. That data file then feeds whatever analysis
> tool I'm using at the moment.
>
>
>
So every 100 seconds, you log the average data collected at the 1 PPS
rate, for a few months.
How long before you have something that is at least worth looking at
just to make sure it is working?
(my type A personality does not deal with experiments lasting months too
well :-)
I remember seeing some postings about MJD being in a particular format.
I will look in the AvaTar help file, I believe I saw something about that.
A sample file would be helpful.
So I gather this procedure will measure the sum of the variations of
both oscillators. By using three oscillators, and measuring them 2 at a
time, after 3 measurement cycles, I should be able to determine the
performance of each oscillator. At least that's all I remember of
statistics classes. How to do that escapes me at the moment.
Maybe it would be simpler to buy an FRK Rubidium oscillator on eBay. How
do these compare to a 10811 in the short term and the long term?
>> I understand AlaVar only works in batch mode (no real time capability),
>> so I have to collect a certain amount of data "blindly" before I can
>> find out if it is any good. If I am checking a GPS disciplined
>> oscillator, that will take several hours at a time and I am trying to
>> speed up the process, at least to make sure the procedures and
>> algorithms are OK.
>>
>
> This is an avocation for the patient. :-) My current experiment logging
> 2 HP5061As and an HP5065A against GPS has been running for about 90 days
> now, and I hope to get at least another 30 days before I have to stop to
> make some equipment changes.
>
>
Roger that, see my comment above.
I have an older laptop and spare GPIB/serial controller that I can
dedicate to the task. I will set that aside so I am not tempted to mess
with it while it collects data.
I must make sure my battery backup system is working (the 5370A draws
200 VA), and I'll be listening to 6m in the mean time (talking about
patience :-)
> John
>
>
Thanks a lot
Didier
X
xaos
Sun, Oct 22, 2006 6:42 PM
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for
my car.
However, I now have to do some traveling and new and unknown addresses
keep popping up.
There are several different GPS units on the market and they all look OK
(i guess).
I just want to know which units do the members here consider to be the
best for
this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for
my car.
However, I now have to do some traveling and new and unknown addresses
keep popping up.
There are several different GPS units on the market and they all look OK
(i guess).
I just want to know which units do the members here consider to be the
best for
this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
RK
Rob Kimberley
Sun, Oct 22, 2006 9:19 PM
George,
I have been happily using a Garmin Quest for about three years now. There
are of course newer versions from this manufacturer, who have a very good
reputation. Tom-Tom are also very popular in the UK, but have no experience
of using them.
Good hunting!
Rob Kimberley
-----Original Message-----
From: time-nuts-bounces@febo.com [mailto:time-nuts-bounces@febo.com] On
Behalf Of xaos
Sent: 22 October 2006 19:42
To: Discussion of precise time and frequency measurement
Subject: [time-nuts] GPS unit for car navigation -OT ??
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for my
car.
However, I now have to do some traveling and new and unknown addresses keep
popping up.
There are several different GPS units on the market and they all look OK (i
guess).
I just want to know which units do the members here consider to be the best
for this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
George,
I have been happily using a Garmin Quest for about three years now. There
are of course newer versions from this manufacturer, who have a very good
reputation. Tom-Tom are also very popular in the UK, but have no experience
of using them.
Good hunting!
Rob Kimberley
-----Original Message-----
From: time-nuts-bounces@febo.com [mailto:time-nuts-bounces@febo.com] On
Behalf Of xaos
Sent: 22 October 2006 19:42
To: Discussion of precise time and frequency measurement
Subject: [time-nuts] GPS unit for car navigation -OT ??
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for my
car.
However, I now have to do some traveling and new and unknown addresses keep
popping up.
There are several different GPS units on the market and they all look OK (i
guess).
I just want to know which units do the members here consider to be the best
for this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
_______________________________________________
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
JM
James Maynard
Sun, Oct 22, 2006 11:12 PM
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for
my car.
However, I now have to do some traveling and new and unknown addresses
keep popping up.
There are several different GPS units on the market and they all look OK
(i guess).
I just want to know which units do the members here consider to be the
best for
this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
I really like my Garmin StreetPilot 7200. Its GPS receiver has WAAS
correction capability, it has a built-in database of street maps for the
entire USA, and its large display, perched atop the dashboard of my car,
is very readable to my aging eyes. In my car, my view of the
speedometer is obscured by the steering wheel, so I use the GPS receiver
as my primary speedometer display, too.
I usually set it just to display a moving map. In that mode, it shows
the name of the next cross-street that I will encounter at the top of
the screen -- much easier to read with my aging eyes than the street
sign on the corner! It also shows my speed and the time of day.
Occasionally I will set it to compute a route for me to follow,
particularly when driving to someplace unfamiliar. In that mode, it
doesn't display the time of day, but instead displays the estimated time
of arrival at the distination -- something that I'm not as interested in
knowing. At intersections where the calculated route changes from one
street or highway to another, it zooms in automatically as I approach
the intersection and zooms out automatically after making the turn.
It didn't hurt that, as a Garmin employee, I got a nice employee discount!
James Maynard, K7KK
Salem, Oregon, USA
xaos wrote:
> Hello everyone,
>
> I have, until now, resisted the urge to buy a GPS navigation system for
> my car.
> However, I now have to do some traveling and new and unknown addresses
> keep popping up.
>
> There are several different GPS units on the market and they all look OK
> (i guess).
>
> I just want to know which units do the members here consider to be the
> best for
> this sort of thing?
>
> Many thanks in advance,
>
> -George Hrysanthopoulos, N2FGX
I really like my Garmin StreetPilot 7200. Its GPS receiver has WAAS
correction capability, it has a built-in database of street maps for the
entire USA, and its large display, perched atop the dashboard of my car,
is very readable to my aging eyes. In my car, my view of the
speedometer is obscured by the steering wheel, so I use the GPS receiver
as my primary speedometer display, too.
I usually set it just to display a moving map. In that mode, it shows
the name of the next cross-street that I will encounter at the top of
the screen -- much easier to read with my aging eyes than the street
sign on the corner! It also shows my speed and the time of day.
Occasionally I will set it to compute a route for me to follow,
particularly when driving to someplace unfamiliar. In that mode, it
doesn't display the time of day, but instead displays the estimated time
of arrival at the distination -- something that I'm not as interested in
knowing. At intersections where the calculated route changes from one
street or highway to another, it zooms in automatically as I approach
the intersection and zooms out automatically after making the turn.
It didn't hurt that, as a Garmin employee, I got a nice employee discount!
----
James Maynard, K7KK
Salem, Oregon, USA
DB
Dr Bruce Griffiths
Sun, Oct 22, 2006 11:19 PM
More comments embedded...
Didier
John Ackermann N8UR wrote:
Didier, a few comments embedded below.
John
Didier Juges said the following on 10/22/2006 10:34 AM:
Hi Warner,
Does it mean I should divide the 10 MHz down to 1 Hz output and use the
5370 to measure TI compared to it's internal timebase once per second,
and feed that to the computer, store it to a file and feed the output to
AlaVar? (obviously, the divider would have to use synchronous counters)
Or should I work directly on the 10 MHz output? The 5370 can average up
to 100k samples, so by averaging 100k samples and polling the GPIB
once/sec, would I be correct if I use the computer to average those
further down to 2/sec, 4/sec and so on as needed before feeding the data
to Alavar?
Ideally, you want to reduce both the device under test (DUT) and the
reference to 1 PPS. The GPS can give you that directly, and you can use
some sort of divider to reduce the DUT from its nominal frequency. Not
everyone does it the same way, but there seems to be a convention that
the reference signal is applied to the "stop" input of the counter, and
the DUT to the "start" input. You want to bump the phase of the pulses
so that the initial time difference is relatively small -- ideally, not
more than a few hundred microseconds. This will reduce the impact of
any noise or offset in the counter's reference.
It's possible to use 1PPS from the reference, and a higher frequency
(even 10MHz) from the DUT, but I've never had a lot of luck doing this.
It's way too easy to slip a cycle and get artificial phase jumps.
From your comment, I gather that if the oscillators to be compared are
not on the same frequency, problem might ensue, so the 1 PPS output is a
much better option than the 10 MHz.
If I use a 1 PPS signal for both oscillators, as long as they do not
drift by 1 cycle during the sample period, we should be OK.
So the best would be to be able to reset the divider (that takes the
crystal down to 1 PPS) synchronously (or with a small delay) with the 1
PPS output of the GPS, then I should be good for a while. If I get the
OCXO within 10-6, I should be good for 10^6 seconds before skipping a
cycle (assuming the drift is in the proper direction....)
Now, let's assume I have a big hard drive (250 GB + 120 GB at the
moment, with probably close to a total of 200 GB available), other than
computing time (which may not be negligible), how can I determine the
best acquisition interval? (as the one that will give me meaningful data
in the shortest amount of time)
Even with the 5370's 20ps resolution, you won't be able to measure good
DUTs below about 100 seconds averaging; the trigger jitter and other
noise will get you unless you go to something sophisticated like a
dual-mixer time-difference system (which isn't as easy to implement as
it appears at first glance).
So, I normally average data for 100 seconds and then log those averages.
You can use the counter's internal average command, or just capture
each data point and average in your software. I output a data file with
the MJD and phase value. That data file then feeds whatever analysis
tool I'm using at the moment.
So every 100 seconds, you log the average data collected at the 1 PPS
rate, for a few months.
How long before you have something that is at least worth looking at
just to make sure it is working?
(my type A personality does not deal with experiments lasting months too
well :-)
I remember seeing some postings about MJD being in a particular format.
I will look in the AvaTar help file, I believe I saw something about that.
A sample file would be helpful.
So I gather this procedure will measure the sum of the variations of
both oscillators. By using three oscillators, and measuring them 2 at a
time, after 3 measurement cycles, I should be able to determine the
performance of each oscillator. At least that's all I remember of
statistics classes. How to do that escapes me at the moment.
Maybe it would be simpler to buy an FRK Rubidium oscillator on eBay. How
do these compare to a 10811 in the short term and the long term?
I understand AlaVar only works in batch mode (no real time capability),
so I have to collect a certain amount of data "blindly" before I can
find out if it is any good. If I am checking a GPS disciplined
oscillator, that will take several hours at a time and I am trying to
speed up the process, at least to make sure the procedures and
algorithms are OK.
This is an avocation for the patient. :-) My current experiment logging
2 HP5061As and an HP5065A against GPS has been running for about 90 days
now, and I hope to get at least another 30 days before I have to stop to
make some equipment changes.
Roger that, see my comment above.
I have an older laptop and spare GPIB/serial controller that I can
dedicate to the task. I will set that aside so I am not tempted to mess
with it while it collects data.
I must make sure my battery backup system is working (the 5370A draws
200 VA), and I'll be listening to 6m in the mean time (talking about
patience :-)
Since the 5370 is relatively old and uses the same processor for
communication and measurement, it cannot overlap measurement and data
transmission.
Thus it is desirable that the two PPS pulses being compared are
sufficiently close together that the 5370 has sufficient time to
complete transmitting the measurement results before the next PPS pulse
arrives. Using the raw binary data format minimises this deadtime. If
the time interval being measured becomes too large then the
accuracy/stability of the 5370's internal frequency standard can also
become an issue.
The 3 cornered hat technique comparing 3 oscillators actually requires
simultaneous measurements of the 3 time/phase differences to provide
useful results.
Whilst useful it wont perform miracles, cross correlation techniques are
more effective. The 3 cornered hat technique can even produce non
physical negative variances.
Extensions of this technique using more than 3 oscillators and allowing
finite covariances can improve the reliability of the frequency
stability estimates, however the measurement system becomes somewhat
complex and expensive.
An inexpensive modern time interval counter with a power dissipation of
less than 10 watts and a resolution comparable to the 5370 would be
useful for such comparisons especially if the experiment lasts several
months.
The following papers provide useful info on the 3 cornered hat technique:
33rd Annual Precise Time and Time Interval (PTTI) Meeting
DEGREES OF FREEDOM AND
THREE-CORNERED HATS
Christopher R. Ekstrom and Paul A. Koppang
U.S. Naval Observatory, Washington, D.C.
Abstract
The three-cornered hat is a procedure for extracting the stabilities of
three
clocks when the only available information is the time or frequency
differences between the clocks. To our knowledge, there has been no method
of determining a confidence interval for such a stability estimate. In this
paper, we present a method for determining the number of degrees of freedom
of the estimate, which allows the assignment of a confidence interval to a
three-cornered-hat stability estimate
http://tycho.usno.navy.mil/ptti/ptti2001/poster5.pdf
90th Annual Precise Time and Time Interval (PTTI) Meeting
ESTIMATING FREQUENCY STABILITY
AND CROSS-CORRELATIONS
F. Torcaso, C. R. Ekstrom, E. A. Burt, D. N. Matsakis
U. S. Naval Observatory
3450 Massachusetts Ave., NW
Washington, DC 20392 USA
Abstract
We present a method for estimating the absolute frequency stability of N
clocks separate from
a reference. The method introduced is a modification of the one proposed
by Tauella and Premoli
(1993). After developing the theory we apply the method to atomic clock
data gathered from the
USNO.
http://tycho.usno.navy.mil/ptti/1998/Vol%2030_06.pdf
Bruce
Didier Juges wrote:
> More comments embedded...
>
> Didier
>
> John Ackermann N8UR wrote:
>
>> Didier, a few comments embedded below.
>>
>> John
>> ----
>>
>> Didier Juges said the following on 10/22/2006 10:34 AM:
>>
>>
>>> Hi Warner,
>>>
>>> Does it mean I should divide the 10 MHz down to 1 Hz output and use the
>>> 5370 to measure TI compared to it's internal timebase once per second,
>>> and feed that to the computer, store it to a file and feed the output to
>>> AlaVar? (obviously, the divider would have to use synchronous counters)
>>>
>>> Or should I work directly on the 10 MHz output? The 5370 can average up
>>> to 100k samples, so by averaging 100k samples and polling the GPIB
>>> once/sec, would I be correct if I use the computer to average those
>>> further down to 2/sec, 4/sec and so on as needed before feeding the data
>>> to Alavar?
>>>
>>>
>> Ideally, you want to reduce both the device under test (DUT) and the
>> reference to 1 PPS. The GPS can give you that directly, and you can use
>> some sort of divider to reduce the DUT from its nominal frequency. Not
>> everyone does it the same way, but there seems to be a convention that
>> the reference signal is applied to the "stop" input of the counter, and
>> the DUT to the "start" input. You want to bump the phase of the pulses
>> so that the initial time difference is relatively small -- ideally, not
>> more than a few hundred microseconds. This will reduce the impact of
>> any noise or offset in the counter's reference.
>>
>> It's possible to use 1PPS from the reference, and a higher frequency
>> (even 10MHz) from the DUT, but I've never had a lot of luck doing this.
>> It's way too easy to slip a cycle and get artificial phase jumps.
>>
>>
>>
> From your comment, I gather that if the oscillators to be compared are
> not on the same frequency, problem might ensue, so the 1 PPS output is a
> much better option than the 10 MHz.
> If I use a 1 PPS signal for both oscillators, as long as they do not
> drift by 1 cycle during the sample period, we should be OK.
>
> So the best would be to be able to reset the divider (that takes the
> crystal down to 1 PPS) synchronously (or with a small delay) with the 1
> PPS output of the GPS, then I should be good for a while. If I get the
> OCXO within 10-6, I should be good for 10^6 seconds before skipping a
> cycle (assuming the drift is in the proper direction....)
>
>
>>> Now, let's assume I have a big hard drive (250 GB + 120 GB at the
>>> moment, with probably close to a total of 200 GB available), other than
>>> computing time (which may not be negligible), how can I determine the
>>> best acquisition interval? (as the one that will give me meaningful data
>>> in the shortest amount of time)
>>>
>>>
>> Even with the 5370's 20ps resolution, you won't be able to measure good
>> DUTs below about 100 seconds averaging; the trigger jitter and other
>> noise will get you unless you go to something sophisticated like a
>> dual-mixer time-difference system (which isn't as easy to implement as
>> it appears at first glance).
>>
>> So, I normally average data for 100 seconds and then log those averages.
>> You can use the counter's internal average command, or just capture
>> each data point and average in your software. I output a data file with
>> the MJD and phase value. That data file then feeds whatever analysis
>> tool I'm using at the moment.
>>
>>
>>
>>
> So every 100 seconds, you log the average data collected at the 1 PPS
> rate, for a few months.
> How long before you have something that is at least worth looking at
> just to make sure it is working?
> (my type A personality does not deal with experiments lasting months too
> well :-)
> I remember seeing some postings about MJD being in a particular format.
> I will look in the AvaTar help file, I believe I saw something about that.
> A sample file would be helpful.
>
> So I gather this procedure will measure the sum of the variations of
> both oscillators. By using three oscillators, and measuring them 2 at a
> time, after 3 measurement cycles, I should be able to determine the
> performance of each oscillator. At least that's all I remember of
> statistics classes. How to do that escapes me at the moment.
>
> Maybe it would be simpler to buy an FRK Rubidium oscillator on eBay. How
> do these compare to a 10811 in the short term and the long term?
>
>>> I understand AlaVar only works in batch mode (no real time capability),
>>> so I have to collect a certain amount of data "blindly" before I can
>>> find out if it is any good. If I am checking a GPS disciplined
>>> oscillator, that will take several hours at a time and I am trying to
>>> speed up the process, at least to make sure the procedures and
>>> algorithms are OK.
>>>
>>>
>> This is an avocation for the patient. :-) My current experiment logging
>> 2 HP5061As and an HP5065A against GPS has been running for about 90 days
>> now, and I hope to get at least another 30 days before I have to stop to
>> make some equipment changes.
>>
>>
>>
> Roger that, see my comment above.
> I have an older laptop and spare GPIB/serial controller that I can
> dedicate to the task. I will set that aside so I am not tempted to mess
> with it while it collects data.
> I must make sure my battery backup system is working (the 5370A draws
> 200 VA), and I'll be listening to 6m in the mean time (talking about
> patience :-)
>
>> John
>>
>>
>>
> Thanks a lot
>
> Didier
>
> _______________________________________________
> time-nuts mailing list
> time-nuts@febo.com
> https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
>
>
Since the 5370 is relatively old and uses the same processor for
communication and measurement, it cannot overlap measurement and data
transmission.
Thus it is desirable that the two PPS pulses being compared are
sufficiently close together that the 5370 has sufficient time to
complete transmitting the measurement results before the next PPS pulse
arrives. Using the raw binary data format minimises this deadtime. If
the time interval being measured becomes too large then the
accuracy/stability of the 5370's internal frequency standard can also
become an issue.
The 3 cornered hat technique comparing 3 oscillators actually requires
simultaneous measurements of the 3 time/phase differences to provide
useful results.
Whilst useful it wont perform miracles, cross correlation techniques are
more effective. The 3 cornered hat technique can even produce non
physical negative variances.
Extensions of this technique using more than 3 oscillators and allowing
finite covariances can improve the reliability of the frequency
stability estimates, however the measurement system becomes somewhat
complex and expensive.
An inexpensive modern time interval counter with a power dissipation of
less than 10 watts and a resolution comparable to the 5370 would be
useful for such comparisons especially if the experiment lasts several
months.
The following papers provide useful info on the 3 cornered hat technique:
33rd Annual Precise Time and Time Interval (PTTI) Meeting
DEGREES OF FREEDOM AND
THREE-CORNERED HATS
Christopher R. Ekstrom and Paul A. Koppang
U.S. Naval Observatory, Washington, D.C.
Abstract
The three-cornered hat is a procedure for extracting the stabilities of
three
clocks when the only available information is the time or frequency
differences between the clocks. To our knowledge, there has been no method
of determining a confidence interval for such a stability estimate. In this
paper, we present a method for determining the number of degrees of freedom
of the estimate, which allows the assignment of a confidence interval to a
three-cornered-hat stability estimate
http://tycho.usno.navy.mil/ptti/ptti2001/poster5.pdf
90th Annual Precise Time and Time Interval (PTTI) Meeting
ESTIMATING FREQUENCY STABILITY
AND CROSS-CORRELATIONS
F. Torcaso, C. R. Ekstrom, E. A. Burt, D. N. Matsakis
U. S. Naval Observatory
3450 Massachusetts Ave., NW
Washington, DC 20392 USA
Abstract
We present a method for estimating the absolute frequency stability of N
clocks separate from
a reference. The method introduced is a modification of the one proposed
by Tauella and Premoli
(1993). After developing the theory we apply the method to atomic clock
data gathered from the
USNO.
http://tycho.usno.navy.mil/ptti/1998/Vol%2030_06.pdf
Bruce
RL
Robert Lutwak
Sun, Oct 22, 2006 11:26 PM
How's the timing accuracy?
Does it display GPS time or does it have it's own clock?
-RL
Robert Lutwak, Senior Scientist
Symmetricom - Technology Realization Center
34 Tozer Rd.
Beverly, MA 01915
(978) 232-1461 Voice RLutwak@Symmetricom.com (Business)
(978) 927-4099 FAX Lutwak@Alum.MIT.edu (Personal)
(339) 927-7896 Mobile
----- Original Message -----
From: "James Maynard" james.h.maynard@usa.net
To: "Discussion of precise time and frequency measurement"
time-nuts@febo.com
Sent: Sunday, October 22, 2006 7:12 PM
Subject: Re: [time-nuts] GPS unit for car navigation -OT ??
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for
my car.
However, I now have to do some traveling and new and unknown addresses
keep popping up.
There are several different GPS units on the market and they all look OK
(i guess).
I just want to know which units do the members here consider to be the
best for
this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
I really like my Garmin StreetPilot 7200. Its GPS receiver has WAAS
correction capability, it has a built-in database of street maps for the
entire USA, and its large display, perched atop the dashboard of my car,
is very readable to my aging eyes. In my car, my view of the
speedometer is obscured by the steering wheel, so I use the GPS receiver
as my primary speedometer display, too.
I usually set it just to display a moving map. In that mode, it shows
the name of the next cross-street that I will encounter at the top of
the screen -- much easier to read with my aging eyes than the street
sign on the corner! It also shows my speed and the time of day.
Occasionally I will set it to compute a route for me to follow,
particularly when driving to someplace unfamiliar. In that mode, it
doesn't display the time of day, but instead displays the estimated time
of arrival at the distination -- something that I'm not as interested in
knowing. At intersections where the calculated route changes from one
street or highway to another, it zooms in automatically as I approach
the intersection and zooms out automatically after making the turn.
It didn't hurt that, as a Garmin employee, I got a nice employee discount!
James Maynard, K7KK
Salem, Oregon, USA
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
How's the timing accuracy?
Does it display GPS time or does it have it's own clock?
-RL
------------------------------------------------------------
Robert Lutwak, Senior Scientist
Symmetricom - Technology Realization Center
34 Tozer Rd.
Beverly, MA 01915
(978) 232-1461 Voice RLutwak@Symmetricom.com (Business)
(978) 927-4099 FAX Lutwak@Alum.MIT.edu (Personal)
(339) 927-7896 Mobile
----- Original Message -----
From: "James Maynard" <james.h.maynard@usa.net>
To: "Discussion of precise time and frequency measurement"
<time-nuts@febo.com>
Sent: Sunday, October 22, 2006 7:12 PM
Subject: Re: [time-nuts] GPS unit for car navigation -OT ??
> xaos wrote:
>> Hello everyone,
>>
>> I have, until now, resisted the urge to buy a GPS navigation system for
>> my car.
>> However, I now have to do some traveling and new and unknown addresses
>> keep popping up.
>>
>> There are several different GPS units on the market and they all look OK
>> (i guess).
>>
>> I just want to know which units do the members here consider to be the
>> best for
>> this sort of thing?
>>
>> Many thanks in advance,
>>
>> -George Hrysanthopoulos, N2FGX
>
> I really like my Garmin StreetPilot 7200. Its GPS receiver has WAAS
> correction capability, it has a built-in database of street maps for the
> entire USA, and its large display, perched atop the dashboard of my car,
> is very readable to my aging eyes. In my car, my view of the
> speedometer is obscured by the steering wheel, so I use the GPS receiver
> as my primary speedometer display, too.
>
> I usually set it just to display a moving map. In that mode, it shows
> the name of the next cross-street that I will encounter at the top of
> the screen -- much easier to read with my aging eyes than the street
> sign on the corner! It also shows my speed and the time of day.
>
> Occasionally I will set it to compute a route for me to follow,
> particularly when driving to someplace unfamiliar. In that mode, it
> doesn't display the time of day, but instead displays the estimated time
> of arrival at the distination -- something that I'm not as interested in
> knowing. At intersections where the calculated route changes from one
> street or highway to another, it zooms in automatically as I approach
> the intersection and zooms out automatically after making the turn.
>
> It didn't hurt that, as a Garmin employee, I got a nice employee discount!
>
> ----
> James Maynard, K7KK
> Salem, Oregon, USA
>
>
>
> _______________________________________________
> time-nuts mailing list
> time-nuts@febo.com
> https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
JA
John Ackermann N8UR
Sun, Oct 22, 2006 11:30 PM
Dr Bruce Griffiths said the following on 10/22/2006 07:19 PM:
An inexpensive modern time interval counter with a power dissipation of
less than 10 watts and a resolution comparable to the 5370 would be
useful for such comparisons especially if the experiment lasts several
months.
I don't usually use the 5370 for long-term measurements, as it does make
a very noticeable amount of heat. Since the long term averages don't
really need super resolution, I find that an HP 5334 counter, which has
2ns resolution and dissipates far less heat, works well.
My current experiment is using a 5334 along with a GPIB-controlled coax
switch (forget the HP number right now) to do 100 second averages of six
combinations (CS1-GPS, CS2-GPS, RB1-GPS, CS2-CS1, RB1-CS1, and RB1-CS2)
so I end up with a tau of 600 seconds and ~200ps resolution with the 100
sample average.
John
Dr Bruce Griffiths said the following on 10/22/2006 07:19 PM:
> An inexpensive modern time interval counter with a power dissipation of
> less than 10 watts and a resolution comparable to the 5370 would be
> useful for such comparisons especially if the experiment lasts several
> months.
I don't usually use the 5370 for long-term measurements, as it does make
a very noticeable amount of heat. Since the long term averages don't
really need super resolution, I find that an HP 5334 counter, which has
2ns resolution and dissipates far less heat, works well.
My current experiment is using a 5334 along with a GPIB-controlled coax
switch (forget the HP number right now) to do 100 second averages of six
combinations (CS1-GPS, CS2-GPS, RB1-GPS, CS2-CS1, RB1-CS1, and RB1-CS2)
so I end up with a tau of 600 seconds and ~200ps resolution with the 100
sample average.
John
DJ
Didier Juges
Mon, Oct 23, 2006 1:02 AM
It just so happen that I also have an HP 5334B, which I bought when I
had given up on getting an HP5370 for a reasonable cost, considering
my application. It draws 20 VA instead of 200, but this one does not
have the 10811 time base. This will also be a lot easier on the UPS, as
we do loose power here somewhat regularly (but not for long, unless a
hurricane is involved) during the stormy season.
Thanks for another great suggestion.
Didier
John Ackermann N8UR wrote:
Dr Bruce Griffiths said the following on 10/22/2006 07:19 PM:
An inexpensive modern time interval counter with a power dissipation of
less than 10 watts and a resolution comparable to the 5370 would be
useful for such comparisons especially if the experiment lasts several
months.
I don't usually use the 5370 for long-term measurements, as it does make
a very noticeable amount of heat. Since the long term averages don't
really need super resolution, I find that an HP 5334 counter, which has
2ns resolution and dissipates far less heat, works well.
My current experiment is using a 5334 along with a GPIB-controlled coax
switch (forget the HP number right now) to do 100 second averages of six
combinations (CS1-GPS, CS2-GPS, RB1-GPS, CS2-CS1, RB1-CS1, and RB1-CS2)
so I end up with a tau of 600 seconds and ~200ps resolution with the 100
sample average.
John
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
It just so happen that I also have an HP 5334B, which I bought when I
had given up on getting an HP5370 for a *reasonable* cost, considering
my application. It draws 20 VA instead of 200, but this one does not
have the 10811 time base. This will also be a lot easier on the UPS, as
we do loose power here somewhat regularly (but not for long, unless a
hurricane is involved) during the stormy season.
Thanks for another great suggestion.
Didier
John Ackermann N8UR wrote:
> Dr Bruce Griffiths said the following on 10/22/2006 07:19 PM:
>
>
>> An inexpensive modern time interval counter with a power dissipation of
>> less than 10 watts and a resolution comparable to the 5370 would be
>> useful for such comparisons especially if the experiment lasts several
>> months.
>>
>
> I don't usually use the 5370 for long-term measurements, as it does make
> a very noticeable amount of heat. Since the long term averages don't
> really need super resolution, I find that an HP 5334 counter, which has
> 2ns resolution and dissipates far less heat, works well.
>
> My current experiment is using a 5334 along with a GPIB-controlled coax
> switch (forget the HP number right now) to do 100 second averages of six
> combinations (CS1-GPS, CS2-GPS, RB1-GPS, CS2-CS1, RB1-CS1, and RB1-CS2)
> so I end up with a tau of 600 seconds and ~200ps resolution with the 100
> sample average.
>
> John
>
> _______________________________________________
> time-nuts mailing list
> time-nuts@febo.com
> https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
>
>
JA
John Ackermann N8UR
Mon, Oct 23, 2006 1:21 AM
I really like the 5334s (either A or B; the A is actually a more
featureful instrument than the B) and I have five or six of them; I
didn't pay more than $100 for any of them. And, most of them have
10811As, so I figure worst case I can throw the counter out and still
get my money's worth from the oscillator!
John
Didier Juges said the following on 10/22/2006 09:02 PM:
It just so happen that I also have an HP 5334B, which I bought when I
had given up on getting an HP5370 for a reasonable cost, considering
my application. It draws 20 VA instead of 200, but this one does not
have the 10811 time base. This will also be a lot easier on the UPS, as
we do loose power here somewhat regularly (but not for long, unless a
hurricane is involved) during the stormy season.
Thanks for another great suggestion.
Didier
John Ackermann N8UR wrote:
Dr Bruce Griffiths said the following on 10/22/2006 07:19 PM:
An inexpensive modern time interval counter with a power dissipation of
less than 10 watts and a resolution comparable to the 5370 would be
useful for such comparisons especially if the experiment lasts several
months.
I don't usually use the 5370 for long-term measurements, as it does make
a very noticeable amount of heat. Since the long term averages don't
really need super resolution, I find that an HP 5334 counter, which has
2ns resolution and dissipates far less heat, works well.
My current experiment is using a 5334 along with a GPIB-controlled coax
switch (forget the HP number right now) to do 100 second averages of six
combinations (CS1-GPS, CS2-GPS, RB1-GPS, CS2-CS1, RB1-CS1, and RB1-CS2)
so I end up with a tau of 600 seconds and ~200ps resolution with the 100
sample average.
John
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
I really like the 5334s (either A or B; the A is actually a more
featureful instrument than the B) and I have five or six of them; I
didn't pay more than $100 for any of them. And, most of them have
10811As, so I figure worst case I can throw the counter out and still
get my money's worth from the oscillator!
John
----
Didier Juges said the following on 10/22/2006 09:02 PM:
> It just so happen that I also have an HP 5334B, which I bought when I
> had given up on getting an HP5370 for a *reasonable* cost, considering
> my application. It draws 20 VA instead of 200, but this one does not
> have the 10811 time base. This will also be a lot easier on the UPS, as
> we do loose power here somewhat regularly (but not for long, unless a
> hurricane is involved) during the stormy season.
>
> Thanks for another great suggestion.
>
> Didier
>
> John Ackermann N8UR wrote:
>> Dr Bruce Griffiths said the following on 10/22/2006 07:19 PM:
>>
>>
>>> An inexpensive modern time interval counter with a power dissipation of
>>> less than 10 watts and a resolution comparable to the 5370 would be
>>> useful for such comparisons especially if the experiment lasts several
>>> months.
>>>
>> I don't usually use the 5370 for long-term measurements, as it does make
>> a very noticeable amount of heat. Since the long term averages don't
>> really need super resolution, I find that an HP 5334 counter, which has
>> 2ns resolution and dissipates far less heat, works well.
>>
>> My current experiment is using a 5334 along with a GPIB-controlled coax
>> switch (forget the HP number right now) to do 100 second averages of six
>> combinations (CS1-GPS, CS2-GPS, RB1-GPS, CS2-CS1, RB1-CS1, and RB1-CS2)
>> so I end up with a tau of 600 seconds and ~200ps resolution with the 100
>> sample average.
>>
>> John
>>
>> _______________________________________________
>> time-nuts mailing list
>> time-nuts@febo.com
>> https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
>>
>>
>
> _______________________________________________
> time-nuts mailing list
> time-nuts@febo.com
> https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
>
>
BH
Bill Hawkins
Mon, Oct 23, 2006 2:21 PM
Check out http://www.deluoelectronics.com/customer/home.php
The stuff is designed to work with a laptop via USB or Bluetooth, under
$100.
I tried it several years ago and found it OK, but I seldom get lost.
Regards,
Bill Hawkins
-----Original Message-----
From: time-nuts-bounces@febo.com [mailto:time-nuts-bounces@febo.com] On
Behalf Of xaos
Sent: Sunday, October 22, 2006 1:43 PM
To: Discussion of precise time and frequency measurement
Subject: [time-nuts] GPS unit for car navigation -OT ??
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for
my car.
However, I now have to do some traveling and new and unknown addresses
keep popping up.
There are several different GPS units on the market and they all look OK
(i guess).
I just want to know which units do the members here consider to be the
best for this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
Check out http://www.deluoelectronics.com/customer/home.php
The stuff is designed to work with a laptop via USB or Bluetooth, under
$100.
I tried it several years ago and found it OK, but I seldom get lost.
Regards,
Bill Hawkins
-----Original Message-----
From: time-nuts-bounces@febo.com [mailto:time-nuts-bounces@febo.com] On
Behalf Of xaos
Sent: Sunday, October 22, 2006 1:43 PM
To: Discussion of precise time and frequency measurement
Subject: [time-nuts] GPS unit for car navigation -OT ??
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for
my car.
However, I now have to do some traveling and new and unknown addresses
keep popping up.
There are several different GPS units on the market and they all look OK
(i guess).
I just want to know which units do the members here consider to be the
best for this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
_______________________________________________
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
JM
James Maynard
Mon, Oct 23, 2006 3:39 PM
How's the timing accuracy?
Does it display GPS time or does it have it's own clock?
-RL
Robert Lutwak, Senior Scientist
Symmetricom - Technology Realization Center
34 Tozer Rd.
Beverly, MA 01915
(978) 232-1461 Voice RLutwak@Symmetricom.com (Business)
(978) 927-4099 FAX Lutwak@Alum.MIT.edu (Personal)
(339) 927-7896 Mobile
The Garmin StreetPilot 7200 is not a timing receiver. It displays local
time of day in hours and minutes, and seems to update the minute at the
correct time, to within a tenth of a second or so. But that's just by
comparing with my radio-controlled wristwatch (WWVB receiver).
----- Original Message -----
From: "James Maynard" james.h.maynard@usa.net
To: "Discussion of precise time and frequency measurement"
time-nuts@febo.com
Sent: Sunday, October 22, 2006 7:12 PM
Subject: Re: [time-nuts] GPS unit for car navigation -OT ??
Hello everyone,
I have, until now, resisted the urge to buy a GPS navigation system for
my car.
However, I now have to do some traveling and new and unknown addresses
keep popping up.
There are several different GPS units on the market and they all look OK
(i guess).
I just want to know which units do the members here consider to be the
best for
this sort of thing?
Many thanks in advance,
-George Hrysanthopoulos, N2FGX
I really like my Garmin StreetPilot 7200. Its GPS receiver has WAAS
correction capability, it has a built-in database of street maps for the
entire USA, and its large display, perched atop the dashboard of my car,
is very readable to my aging eyes. In my car, my view of the
speedometer is obscured by the steering wheel, so I use the GPS receiver
as my primary speedometer display, too.
I usually set it just to display a moving map. In that mode, it shows
the name of the next cross-street that I will encounter at the top of
the screen -- much easier to read with my aging eyes than the street
sign on the corner! It also shows my speed and the time of day.
Occasionally I will set it to compute a route for me to follow,
particularly when driving to someplace unfamiliar. In that mode, it
doesn't display the time of day, but instead displays the estimated time
of arrival at the distination -- something that I'm not as interested in
knowing. At intersections where the calculated route changes from one
street or highway to another, it zooms in automatically as I approach
the intersection and zooms out automatically after making the turn.
It didn't hurt that, as a Garmin employee, I got a nice employee discount!
James Maynard, K7KK
Salem, Oregon, USA
time-nuts mailing list
time-nuts@febo.com
https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
--
James Maynard
Salem, Oregon, USA
Robert Lutwak wrote:
> How's the timing accuracy?
>
> Does it display GPS time or does it have it's own clock?
>
>
> -RL
>
> ------------------------------------------------------------
> Robert Lutwak, Senior Scientist
> Symmetricom - Technology Realization Center
> 34 Tozer Rd.
> Beverly, MA 01915
> (978) 232-1461 Voice RLutwak@Symmetricom.com (Business)
> (978) 927-4099 FAX Lutwak@Alum.MIT.edu (Personal)
> (339) 927-7896 Mobile
>
The Garmin StreetPilot 7200 is not a timing receiver. It displays local
time of day in hours and minutes, and seems to update the minute at the
correct time, to within a tenth of a second or so. But that's just by
comparing with my radio-controlled wristwatch (WWVB receiver).
> ----- Original Message -----
> From: "James Maynard" <james.h.maynard@usa.net>
> To: "Discussion of precise time and frequency measurement"
> <time-nuts@febo.com>
> Sent: Sunday, October 22, 2006 7:12 PM
> Subject: Re: [time-nuts] GPS unit for car navigation -OT ??
>
>
>
>>xaos wrote:
>>
>>>Hello everyone,
>>>
>>>I have, until now, resisted the urge to buy a GPS navigation system for
>>>my car.
>>>However, I now have to do some traveling and new and unknown addresses
>>>keep popping up.
>>>
>>>There are several different GPS units on the market and they all look OK
>>>(i guess).
>>>
>>>I just want to know which units do the members here consider to be the
>>>best for
>>>this sort of thing?
>>>
>>>Many thanks in advance,
>>>
>>>-George Hrysanthopoulos, N2FGX
>>
>>I really like my Garmin StreetPilot 7200. Its GPS receiver has WAAS
>>correction capability, it has a built-in database of street maps for the
>>entire USA, and its large display, perched atop the dashboard of my car,
>>is very readable to my aging eyes. In my car, my view of the
>>speedometer is obscured by the steering wheel, so I use the GPS receiver
>>as my primary speedometer display, too.
>>
>>I usually set it just to display a moving map. In that mode, it shows
>>the name of the next cross-street that I will encounter at the top of
>>the screen -- much easier to read with my aging eyes than the street
>>sign on the corner! It also shows my speed and the time of day.
>>
>>Occasionally I will set it to compute a route for me to follow,
>>particularly when driving to someplace unfamiliar. In that mode, it
>>doesn't display the time of day, but instead displays the estimated time
>>of arrival at the distination -- something that I'm not as interested in
>>knowing. At intersections where the calculated route changes from one
>>street or highway to another, it zooms in automatically as I approach
>>the intersection and zooms out automatically after making the turn.
>>
>>It didn't hurt that, as a Garmin employee, I got a nice employee discount!
>>
>>----
>>James Maynard, K7KK
>>Salem, Oregon, USA
>>
>>
>>
>>_______________________________________________
>>time-nuts mailing list
>>time-nuts@febo.com
>>https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
>
>
>
>
> _______________________________________________
> time-nuts mailing list
> time-nuts@febo.com
> https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts
>
>
> .
>
--
James Maynard
Salem, Oregon, USA