10-01-2015 03:48 AM
Hi,
I am working on an analog IC,the schematic of which is as shown below:
There are two operating stages for this depending on the switch position(switch varied manually).They are:
1.VINA = VINB which gives output say G1 and P1 .
2.VINB = VINC which gives output G2 and P2.
Now I need to acquire G1,P1 first and then G2,P2.Once these signals are acquired I need to perform some mathematical operations involving all four to generate the final output.
Can anyone tell me how to acquire these signals in LabVIEW?I tried using DAQ Assistant but could not figure out how to distinguish G!,P1,G2 and P2 from the acquired graphs.
10-01-2015 04:33 AM
10-01-2015 05:05 AM
As I mentioned in the post,the switch is manually controlled now.
Is it possible to control the switch through LabVIEW?
10-01-2015 05:08 AM
Since the switch is controlled manually, I would use a state machine to perform the following steps:
Keep the measurements in shift registers.
10-05-2015 10:45 PM
Is it possible to give two signals from two channels of DAQ (after splitting) to the same shift register,find each signals average and store them as output values?
10-06-2015 12:17 AM
10-06-2015 06:19 AM
This is how I want this to work:
1.Run the VI once,acquire 500 samples each of two signals from ai0 and ai1.Store this in an array(or even store only a single value for each array which can be the average of the 500 samples)
2.Now change the switch position
3.Run the VI again and acquire 500 samples again of two signals,subtract the previous value / values from this set and do further mathematical opertions to obtain the final value.
How will I use shift registers for this application?