04-09-2008 10:41 AM
04-09-2008 12:16 PM
| Matthias Alleweldt Project Engineer / Projektingenieur | Twigeater? |
04-10-2008 02:06 AM
04-10-2008 02:25 AM
| Matthias Alleweldt Project Engineer / Projektingenieur | Twigeater? |
04-10-2008 02:35 AM
Hello,
the curves I have are measured on a Transistor with Voltage on the X-chn and Current on the Y-chn. The Curve could look like this one http://www.simucad.com/simulationstandard/1992/apr/a1/a1_fig2.gif
Thanks,
Andreas
04-10-2008 03:38 AM - edited 04-10-2008 03:41 AM
Option Explicit
' Create some snapback demo data (simplified)
Call DataDelAll()
Call ValueToChn( Array(0, 2, 4, 6, 8, 10, 12,14,15,14,12, 10, 8, 7.2, 7), "X-IN" )
Call ValueToChn( Array(1, 1.5, 2, 2.5, 3, 3.8, 4, 5, 6, 7, 8, 10,14,20, 25), "Y-IN" )
' Generate linear monotene mapping channels
Call ChnLinGen("BASE-TEMP",1,1000,1000)
Call ChnLinGen("X-TEMP",1,1000,ChnLength("X-IN"))
Call ChnLinGen("Y-TEMP",1,1000,ChnLength("Y-IN"))
' Map both channels on oneself
Call ChnMapLinCalc("X-TEMP","X-IN","BASE-TEMP","X-OUT", 1, "const. Value" , NoValue, "analogue")
Call ChnMapLinCalc("Y-TEMP","Y-IN","BASE-TEMP","Y-OUT", 1, "const. Value" , NoValue, "analogue")
| Matthias Alleweldt Project Engineer / Projektingenieur | Twigeater? |
04-10-2008 03:42 AM
| Matthias Alleweldt Project Engineer / Projektingenieur | Twigeater? |
04-10-2008 06:33 AM
04-18-2008 05:16 AM
| Matthias Alleweldt Project Engineer / Projektingenieur | Twigeater? |
04-18-2008 06:24 AM
Hy,
no problem;)
I have following:
Vtest = monoton increasing Test Voltage generated of the Powersupply (zB 4,8,12,...)
VDUT= resulting "Device Under Test"-Voltage at Vtest (zB at 4V-Vtest, VDUT is 3V2), the Voltage is not monotone increasing (zB Snapback, ...)
IDUT= resulting "Device Under Test"-Current at Vtest (zB at 4V-Vtest, IDUT is 35mA), the Current is not monotone increasing (could be smaller then the previous value)
What I want to do:
Divide the IDUT-channels of two measurements. To make this possible I have to bring the VDUT(of both meas.) on the same values=> so i have to interpolate the value I need with some operation...
I hope this is a bit helpful for you!
Thank you so much!!
BR
Andreas