I have a Vaisala HUMICAP® Humidity and Temperature Probe HMP155 that i connect to CR1000 in mode single ended...the probe provides me values of temperature that in the range of the first decimal it is not stable in the measure (the measure ranges too much).Verifying with a digital multimeter, it is estable, but not in cr1000.
Which can be the reason of this oscillation?
Thanks.
新对话如下:
Two possibilities:
a) you are trying to make a fast integration measurement which being fast will pickup noise on the sensor output (which most multimeters will not see). Try the 50 or 60 Hz integration times and try the default settling time or even a longer settling time as some Vaisala sensors are sensitive to switched loads (as happens when the logger switches the sensor in to be measured).
b) you are not allowing enough power up time, if you are switching the power on and off. You need ot allow at least 2 seconds for that sensor.
新对话如下:
Thank you FOR your recommendations!
I made this program:
'CR1000
'Created by Short Cut (2.8)
'Declare Variables and Units
Public BattV
Public AirTC
Public RH
Units BattV=Volts
Units AirTC=Deg C
Units RH=%
'Define Data Tables
DataTable(Table2,True,-1)
DataInterval(0,0,2,0)
Minimum(1,BattV,FP2,False,False)
sample (1,AirTC,FP2)
EndTable
'Main Program
BeginProg
Scan(10,Sec,1,0)
'Default Datalogger Battery Voltage measurement BattV
Battery(BattV)
'HMP155 (panel switched power) Temperature & Relative Humidity Sensor measurements AirTC and RH
PortSet(9,1)
Delay(0,5,Sec)
VoltSe(AirTC,1,mV2500,3,0,0,_50Hz,0.1,-40)
VoltSE(RH,1,mV2500,4,0,0,_50Hz,0.1,0)
CallTable(Table2)
PortSet(9,0)
If RH>100 AND RH<108 Then RH=100
'Call Data Tables and Store Data
NextScan
EndProg
with this program I obtain a mesasure more stable of the HMP155.
We have observed the same "problem" with the HMP155.
The initial measurement of humidity was as follows:
(HMP155A model with 0.0 to 1.0 VDC output, 0-100 % humidity)
Every 10 minutes the CR1000 program would
- turn on HMP155 for one minute (switched 12V)
- take measurement (250 micro second sample)at end of one minute.
- turn off HMP155A
we observed also an oscillation in the measured humidity that when plotted appeared as a modulated sawtooth pattern.
There were periods where this did not occur.
We then used a Beckman model 310B digital voltmeter to monitor the output of the HMP155 during the one minute period it was powered up by the CR1000.
The output appeared stable and the returned value by the CR1000 agreed to within 0.1 VDC of the voltage measured by the 310B meter.
We have concluded that the CR1000 is returning a valid voltage and is what we observe with 310B meter.
When the HMP155 was powered continuously we also observed some variations.
We conclude there is an additional issue here. When the HMP155 is powered up each time there results the saw tooth pattern in voltage outputs.
As an additional note, we have observed the same thing with the Vaisala PTB110 (CS106) barometer.
Our investigations will continue and we will post results on our web site so that interested parties can comment.
I will be notifying Vaisala of these observations as well.