Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

program to measure cable deformation


Forrest Mar 19, 2011 04:14 PM

Public PTemp_C, batt_volt

Public mux_ch, tdr_wave(5000)

DataTable (tdr_wave,true,-1)
Sample(1,PTemp_C,FP2)
Sample(1,batt_volt,FP2)
Sample(1,mux_ch,fp2)
Sample(1009,tdr_wave(),ieee4)
'' Maximum(2,tdr_wave(),ieee4,0,1)
'' SampleMaxMin(11,tdr_wave(),ieee4,0)
EndTable
'
DataTable (sec,true,-1)
Sample(1,PTemp_C,FP2)
Sample(1,batt_volt,FP2)
Sample(1,mux_ch,fp2)
Sample(409,tdr_wave(),ieee4)
'' Maximum(2,tdr_wave(),ieee4,0,1)
'' SampleMaxMin(11,tdr_wave(),ieee4,0)
EndTable

DataTable (thi,true,-1)
Sample(1,PTemp_C,FP2)
Sample(1,batt_volt,FP2)
Sample(1,mux_ch,fp2)
Sample(79,tdr_wave(),ieee4)
Maximum(1,tdr_wave(),ieee4,false,false)
' SampleMaxMin(11,tdr_wave(),ieee4,0)
EndTable


BeginProg

Scan (2,min,0,0)
PanelTemp (PTemp_C,250)
Battery (batt_volt)

mux_ch=1003
TDR100(tdr_wave(),0,1,1003,4,0.78,1000,0,100,0.3,0.085,1,0)
CallTable(tdr_wave)

mux_ch=2002
TDR100(tdr_wave(),0,1,2002,4,0.78,400,0,40,0.3,0.085,1,0)
CallTable(sec)

mux_ch=3001
TDR100(tdr_wave(),0,1,3001,4,0.78,70,0,40,0.3,0.085,1,0)
CallTable(thi)

NextScan
EndProg


the above is used to measure cable deformation, is there anything wrong with it, if not, why the data collected from the program is different from those collected from PCTDR(when TDR100 connects to PC directly). Anyone can help me out here ,thanks.

Log in or register to post/reply in the forum.