I have a Kurt J Lesker 354 ion vacuum gauge that puts out an analog 0-9v representing vacuum pressure in Torr.
I'm having trouble getting the custom scaling to work. I have been trying to use the DAQ assistant custom polynomial scale since I need logarithmic scaling.
The KJL354 manual gives the analog output (log-linear 0 to 9 Vdc,1 volt per decade)
Pressure Torr Voltage
1.0E-10 0.0
1.0E-09 1.0
1.0E-08 2.0
1.0E-07 3.0
1.0E-06 4.0
1.0E-05 5.0
1.0E-04 6.0
1.0E-03 7.0
1.0E-02 8.0
5.0E-02 8.698
As you can see, the highest vacuum at 1^(-10), is zero volts and every volt represents a magnitude of ten as the vacuum pressure decreases to 5^(-2)
since these are negative values inverse of the voltage, I put polynomial scale coefficients at:
Order Coefficient
a0 1
+x*a1 10
+x^2*a2 9
+x^3*a3 8
+x^4*a4 7
+x^5*a5 6
+x^6*a6 5
+x^7*a7 4
+x^8*a8 3
+x^9*a9 2
+x^10*a10 1
The scale ends up upside down and representing a small range of exponents, whether I put the coefficients ascending or descending.
I have the pre-scale selected as volts. from what I understand each volt would be the coefficient of x.
Any Help would be apprecieted.