02-23-2016 10:18 PM
how to calculate time for which the signal had reached to a level
02-23-2016 10:24 PM
means total level crossing time
X1+X2=?
02-24-2016 11:21 PM
how to calculate total time of signal reached to a level.
X1+X2=???
time at level is there in analysis but it is not working any one can help
02-25-2016 12:58 AM
Hello destiny.ritesh
In DIAdem 2015 we have developed new mathematical functions for those problems. Here is a script for your situation:
dim oXChannel, oYChannel, dLowerLimit, dUpperLimit set oXChannel = Data.GetChannel(My_X_Channel) set oYChannel = Data.GetChannel(My_Y_Channel) dLowerLimit = 1 dUpperLimit = 0.5 ChnEventList1 = ChnEventDetectionWindow(oXChannel, oYChannel, dLowerLimit, dUpperLimit, 0, 0) msgbox ChnEventDuration(ChnEventList1)
Greetings
Walter