Author Topic: Frequency counters & 10MHz standards  (Read 8737 times)

0 Members and 1 Guest are viewing this topic.

Offline hlavacTopic starter

  • Frequent Contributor
  • **
  • Posts: 536
  • Country: cz
Frequency counters & 10MHz standards
« on: March 24, 2013, 03:45:19 pm »
I have two questions:
  • Does frequency counter always assume the input is a sine wave / square wave of a single frequency? What happens if it is not the case?
  • How does the standard external 10MHz synchronization signal that some of the instruments can use look like? Is there a standard for it?
Good enough is the enemy of the best.
 

Offline jpb

  • Super Contributor
  • ***
  • Posts: 1771
  • Country: gb
Re: Frequency counters & 10MHz standards
« Reply #1 on: March 24, 2013, 03:58:42 pm »
1. my understanding is that the counter has an edge trigger and the level can be set, there is also probably some means of attenuating large signals. So it doesn't assume any shape but if you set the level in a lot of noise it will give erroneous counts and not be very stable.

2. most instruments define the type of signal they expect from an external clock e.g.

for the TTi TF830 counter it just has :

External Standard Socket
An external 10MHz frequency standard (5V/TTL
level) can be applied

while for the Tabor WW5061 AWG it is more specific:
10MHz TTL, 50% ±2% duty cycle

The TTi TG5011 seems quite flexible :
Ref Clock Input
Input for an external 10MHz reference clock
Voltage Range: 1Vpp – 5Vpp
Maximum Voltage: +5V
Minimum Voltage: -1V


so generally they want TTL square waves with 50% duty cycle but I think some accept sine waves.

 

Offline olsenn

  • Frequent Contributor
  • **
  • Posts: 993
Re: Frequency counters & 10MHz standards
« Reply #2 on: March 24, 2013, 04:19:58 pm »
Counters only measure the number of times a voltage goes from below a value of 'a' to above a value of 'b'. Sometimes these two values are the same, but there is usually hysteresis (schmitt trigger) to avoid any influence of noise.

Try not to think about it in the frequency domain; instead, consider the time domain analysis, as you would see on an oscilloscope. Also, since it counts the total number of low-to-high (sometimes high-to-low) transistions in a set time (say 1 second for example), the reading that will be displayed is the average frequency over that one second interval.

As for external frequency inputs; it also doesn't depend greatly on the waveform; this reference clock merely clocks the digital logic IC's apon low-to-high transistions, just like the counter itself. My 10MHz rubidium frequency standard for instance produces a sinusoid; however, a TTL square wave will also do the trick.
 

Offline jimmc

  • Frequent Contributor
  • **
  • Posts: 304
  • Country: gb
Re: Frequency counters & 10MHz standards
« Reply #3 on: March 24, 2013, 04:25:15 pm »
JPB has covered your second question well.
Your first question is covered by Agilent's AN200  http://cp.literature.agilent.com/litweb/pdf/5965-7660E.pdf (p9).

Jim
 

Offline hlavacTopic starter

  • Frequent Contributor
  • **
  • Posts: 536
  • Country: cz
Re: Frequency counters & 10MHz standards
« Reply #4 on: March 24, 2013, 05:25:21 pm »
Excellent appnote, just what i was looking for, thank you!
Good enough is the enemy of the best.
 

Offline KJDS

  • Super Contributor
  • ***
  • Posts: 2442
  • Country: gb
    • my website holding page
Re: Frequency counters & 10MHz standards
« Reply #5 on: March 24, 2013, 05:53:03 pm »
Many years ago I designed the reference locking circuitry for the Marconi Instruments 2945 radio test set. Amplitude or wave shape wasn't that important, and it could tell and adapt to a 1MHz, 5MHz or 10MHz input.

Offline codeboy2k

  • Super Contributor
  • ***
  • Posts: 1836
  • Country: ca
Re: Frequency counters & 10MHz standards
« Reply #6 on: March 25, 2013, 11:32:07 am »
to extend on jpb's answer to #1:

I designed a frequency counter input circuit once long ago, it was similar to a scope's input, with 1Meg Ohm impedance, a 22pf cap and an AC/DC coupling switch. After that it was diode clipped to the positive and negative rails, so it would never exceed 600mv peak or so. Then it was gained up about 2000X, so the max 600mv input signal would clip and hit the rails at +/-15V, and a 1mv input signal would be gained up to 2V now, and that was used to feed a schmitt trigger with level set at about 1V, to output a 5V square wave feeding a TTL counter circuit. All of this was discrete transistors. The first input stage after the diode limiting was a common source N Channel JFET.  The following stages and the schmitt trigger were BJTs. No op amps.

The input worked for sine, square, pulses, triangles, ramps and was spec'ed from 1mv to 10V p-p

This falstad circuit shows diode limiting a 5V peak-to-peak sine wave input to 740mv p-p
http://www.falstad.com/circuit/e-diodelimit.html

If I did it again today I would certainly use FET input op-amps, probably can be done in a single 4-device op-amp ( a buffer, 2 gain stages and a schmitt trigger)




 

Offline madshaman

  • Frequent Contributor
  • **
  • Posts: 698
  • Country: ca
  • ego trans insani
Re: Frequency counters & 10MHz standards
« Reply #7 on: March 27, 2013, 01:09:14 am »
JPB has covered your second question well.
Your first question is covered by Agilent's AN200  http://cp.literature.agilent.com/litweb/pdf/5965-7660E.pdf (p9).

Jim

Another thanks from me.  Trying to design and build my own and happy to see the initial block diagram roughly matches how I was going to implement it (which to me means I'm likely thinking about the problem the right way).

Still a pending digikey order away before I start prototyping, down to picking parts for all the fiddly bits and still waiting for the 10Mhz rubidium reference I nabbed from eBay (tons available), will prolly grab a cheap 10Mhz oscillator in the meantime so I'm not stuck.

For flexibility of the time base, planning on making as flexible as possible, i.e. accepting most waveform inputs and power level.  Planning on conditioning the input with some filtering and agc, then clamping it with diodes, run it through a Schmitt trigger and finally a counter.  Still working figuring out whether I want the time-base itself to automatically drive both the counting then interrupting the mcu for a quick read phase.  Hopefully at 10Mhz, even someone like me can make it work.

Someone mentioned earlier about making their time base input 1Mohm impedance, would it be better to use 50ohm to match most sources, or at least the ability to switch in a 50ohm impedance like an oscilloscope front-end with that option?
To be responsible, but never to let fear stop the imagination.
 

Offline codeboy2k

  • Super Contributor
  • ***
  • Posts: 1836
  • Country: ca
Re: Frequency counters & 10MHz standards
« Reply #8 on: March 27, 2013, 04:53:45 am »
Someone mentioned earlier about making their time base input 1Mohm impedance, would it be better to use 50ohm to match most sources, or at least the ability to switch in a 50ohm impedance like an oscilloscope front-end with that option?

Yes a 50 ohm switch is useful especially if you plan to measure VHF (30 to 300 Mhz) and UHF (300Mhz to 3Ghz).

Also, since you're building it, you can put in an attenuation pad on the 50 ohm input path, so you can switch in 5db, 10db, 20db, 40db attenuation, something like that, whatever you think you might need.  Or build an external pad if it's more useful to you.

You don't need AGC on your input, you only need to gain it up alot and catch the rising edge, which you will do no matter what, if you gain it up enough.
You don't care that it clips. An AGC will try to keep the signal looking nice, but you don't need to, you just need to count the rising edges.


 

Offline madshaman

  • Frequent Contributor
  • **
  • Posts: 698
  • Country: ca
  • ego trans insani
Re: Frequency counters & 10MHz standards
« Reply #9 on: March 27, 2013, 05:47:35 am »
Someone mentioned earlier about making their time base input 1Mohm impedance, would it be better to use 50ohm to match most sources, or at least the ability to switch in a 50ohm impedance like an oscilloscope front-end with that option?

Yes a 50 ohm switch is useful especially if you plan to measure VHF (30 to 300 Mhz) and UHF (300Mhz to 3Ghz).

Also, since you're building it, you can put in an attenuation pad on the 50 ohm input path, so you can switch in 5db, 10db, 20db, 40db attenuation, something like that, whatever you think you might need.  Or build an external pad if it's more useful to you.

You don't need AGC on your input, you only need to gain it up alot and catch the rising edge, which you will do no matter what, if you gain it up enough.
You don't care that it clips. An AGC will try to keep the signal looking nice, but you don't need to, you just need to count the rising edges.

Thanks codeboy2k, I guess agc isn't needed, I'm new in this realm of electronics and my intuition told me I should bring each stage into a known operating realm.  Was planning to over gain the signal and clip it deliberately with the diodes anyway but was worried there'd be some effect I wouldn't foresee (due to my lack of experience) if the signal power wasn't constrained at this point, my knowledge at this point in this realm, what little there is, comes from a massive crunch of book learning with no experience (which is why I've set a number of projects for myself which will generate useful bench equipment :)

I can't wait for all the screw ups and hallucinations I'll encounter bringing this project to completion; maybe the worst that could happen is that it just works ^^'
To be responsible, but never to let fear stop the imagination.
 

Offline olsenn

  • Frequent Contributor
  • **
  • Posts: 993
Re: Frequency counters & 10MHz standards
« Reply #10 on: March 27, 2013, 03:24:25 pm »
Quote
I can't wait for all the screw ups and hallucinations I'll encounter bringing this project to completion; maybe the worst that could happen is that it just works ^^'

Why would it working be the worst thing, and why are you hallucinating... don't design on salvia...  it doesn't turn out well!
 

Offline madshaman

  • Frequent Contributor
  • **
  • Posts: 698
  • Country: ca
  • ego trans insani
Re: Frequency counters & 10MHz standards
« Reply #11 on: March 27, 2013, 04:01:31 pm »
Quote
I can't wait for all the screw ups and hallucinations I'll encounter bringing this project to completion; maybe the worst that could happen is that it just works ^^'

Why would it working be the worst thing, and why are you hallucinating... don't design on salvia...  it doesn't turn out well!

Lol, my lab is off limits to myself unless I'm well rested (well, having slept in at least the last 48 hours..) and sober :-)

If everything works, you learn less, it might even work for the wrong reason and you'll never know.

Hallucination is a term I picked up playing go, it's my way of describing that situation where everything looks good to you at a given moment in time, but things don't work, the reason being that what you think you're seeing isn't what's actually there, then later you slap your forehead saying "oh my god, why couldn't I see that!".  I find this happens *all* the time with every type of engineering.  To put it simply: you don't notice what you don't notice.  The same thing happens with math proofs, computer programs, wood working, practically everything.  Sure, as you gain more experience you make less mistakes, but you generally learn from your screw-ups caused by perceptual blindness.

Some people may feel they are very solid and accurate and sober and clear thinking, and maybe they are, I tend to find the world is *full* of constant misconceptions, and they can all be a fun source of learning.
« Last Edit: March 27, 2013, 04:06:27 pm by madshaman »
To be responsible, but never to let fear stop the imagination.
 

Offline Rufus

  • Super Contributor
  • ***
  • Posts: 2095
Re: Frequency counters & 10MHz standards
« Reply #12 on: March 27, 2013, 05:16:43 pm »
Also, since you're building it, you can put in an attenuation pad on the 50 ohm input path, so you can switch in 5db, 10db, 20db, 40db attenuation, something like that, whatever you think you might need.

If your 50 ohm input could handle lets say a modest +20dbm to have any point a 40db attenuator in front of it would need a 1kW power rating.
 

Offline kfitch42

  • Frequent Contributor
  • **
  • Posts: 300
  • Country: us
Re: Frequency counters & 10MHz standards
« Reply #13 on: March 27, 2013, 08:24:52 pm »
 

Offline codeboy2k

  • Super Contributor
  • ***
  • Posts: 1836
  • Country: ca
Re: Frequency counters & 10MHz standards
« Reply #14 on: March 28, 2013, 05:50:51 am »
Also, since you're building it, you can put in an attenuation pad on the 50 ohm input path, so you can switch in 5db, 10db, 20db, 40db attenuation, something like that, whatever you think you might need.

If your 50 ohm input could handle lets say a modest +20dbm to have any point a 40db attenuator in front of it would need a 1kW power rating.

I worked with large transmitters in the past, from 5KW AM up to 250KW FM so large attenuations are always something I think about (and dummy loads that fill half a room!)

Probably not needed at the hobbyist level, yeah. 
 

Offline madshaman

  • Frequent Contributor
  • **
  • Posts: 698
  • Country: ca
  • ego trans insani
Re: Frequency counters & 10MHz standards
« Reply #15 on: March 28, 2013, 05:57:12 am »
Lol, not quite sure how soon I'll want to jump into 250KW face-sublimating power levels.  In the perhaps distant future I *could* see myself getting near 1KW, but that's quite a ways off.
To be responsible, but never to let fear stop the imagination.
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf