01-26-2016 12:53 PM
I have a digital trigger switch which is connected with an NI module. How can I know the amount of delay from the trigger to the Ni module?
Solved! Go to Solution.
01-26-2016 12:57 PM
Depends on your device. Each device has a rating on the scale of microseconds.
Cheers
--------, Unofficial Forum Rules and Guidelines ,--------
'--- >The shortest distance between two nodes is a straight wire> ---'
01-27-2016 01:06 PM
Here is the data sheet..is this the one saying propagation delay 3 ms? how do I account for ?
01-27-2016 01:08 PM - edited 01-27-2016 01:17 PM
That's 3 microseconds. Plus the rise/fall time of 50 nanoseconds.
Do you have something switching that needs to account for that small of a switching time?
Cheers
--------, Unofficial Forum Rules and Guidelines ,--------
'--- >The shortest distance between two nodes is a straight wire> ---'
01-27-2016 01:10 PM
I have a data acquisition test that lasts for about 20 milliseconds..Do I need to consider this delay?
01-27-2016 01:17 PM
That depends on the application.
3ms is 1/6667th of your trigger time. In everything I've worked on before, this isn't an important amount of time.
Cheers
--------, Unofficial Forum Rules and Guidelines ,--------
'--- >The shortest distance between two nodes is a straight wire> ---'
01-27-2016 01:35 PM
Just to clarify, If the trigger is recording on the falling edge we have:
50 nanoseconds = 0.00005 milliseconds (rise time)
Propagation delay = 3 microseconds = 0.003 milliseconds (propagation delay)
In total, we have a delay of 0.00305 milliseconds. If the test will last only 20 ms from the time the acquisition is triggered, I guess this delay can be considered as negligible?
01-27-2016 01:41 PM - edited 01-27-2016 01:50 PM
Yes.
AKA 0.00000305 seconds out of 0.02 seconds trigger duration.
AKA 305usec out of 20000usec
AKA 0.305nsec out of 20000000nsec
It's up to your application if it's negligible. If the nuclear reactor is going to explode in 2 microseconds unless this digital trigger shuts its down first, you're hosed. Otherwise, good to go.
Nothing is instantaneous, including any input signals you have. The propogation delay is on the rising and falling edge of the signal, so the signal length will still be 20ms, it will just be shifted by the 3us delay.
Cheers
--------, Unofficial Forum Rules and Guidelines ,--------
'--- >The shortest distance between two nodes is a straight wire> ---'
01-27-2016 01:45 PM
Thank you very much for solving my question James 🙂