Morning everybody,
I need a help for script or program BF3 (PAR). It wired on the cr1000.
This's the diagram wire on the multiplexer AM13/32 : 7H white, 7L green, grey 8H, red Power V+, violet power oV,
I have others sensors on the Cr1000 and multiplexer.
'Declare Variables and Units
Public BattV
Public DiffV(2)
Alias DiffV(1)= Diff1
Alias DiffV(2)= Diff2
Units BattV=Volts
Units Diff1=mV
Units Diff2=mV
'BF3 1mV = 1micromol*m-2*s-1; 1mV=0.5 W*m-2
'Define Data Tables
DataTable(Meteo,True,-1)
DataInterval(0,1,Min,10)
Average(1,BattV,FP2, False)
Average(1,Diff1,FP2,False)
Average(1,Diff2,FP2,False)
EndTable
'Main Program
BeginProg
Scan(30,Sec,1,0)
'Default Datalogger Battery Voltage measurement BattV
Battery(BattV)
'Turn AM16/32 Multiplexer On
PortSet(3,1)
Delay(0,150,mSec)
'BF3
PulsePort(1,10000)
VoltDiff(DiffV(1),1,mV2500,6,True,0,_50Hz,100,0)
PulsePort(1,10000)
VoltDiff(DiffV(2),1,mV2500,7,True,0,_50Hz,100,0)
'Turn AM16/32 Multiplexer Off
PortSet(3,0)
Delay(0,150,mSec)
'Call Data Tables and Store Data
CallTable(Meteo)
NextScan
EndProg
Thank's!
Vik.
Vik, your post is not communicating the following things:
1) What is your problem?
2) What is BF3 (PAR)?
3) What wires of the BF3 are connected to which terminals on the AM16/32?
4) What wires of the AM16/32 are connected to which terminals on the CR1000?
5) What is the mode selector on the AM16/32 set to? 16x4 or 32x2?
Good luck.
Thank's Nico for your message,
My problem is the values of the globale solar and the diffus radiation are very low;
2) The BF3 (PAR) is a Sunshine sensor for Photo active radiation.
3) It' s wired on the AM16/32 by :
white --> H6, green---> L6, gris---> H7, violet--> power 0v, red---> 12 V.
4) the AM16/32 is connected on the cr1000 by :
COM ground--> |||- cr1000; com odd H--> c2 CR1000; com odd L-->L1; GND-->G cr1000;12V--> 12V cr1000;CLK --> C1; RES--> C3;EVEN H --> H2; EVEN L --> L2
5) the mode selector on the AM16/32 is 16x4.
Thank's
vik