Friday, 20 September 2013

How Do I Increase Interchannel Delay Using NI-DAQmx or Traditional NI-DAQ (Legacy)? - National Instruments

How Do I Increase Interchannel Delay Using NI-DAQmx or Traditional NI-DAQ (Legacy)? - National Instruments: "Using the LabVIEW API
You can manually set your convert (channel) clock using the DAQmx Timing property node. After placing the DAQmx Timing property node, left-click on the property selector and select More»AI Convert»Rate. Then, right-click on the property and select Change to Write to be able to change this property.
 "

'via Blog this'

How Do I Eliminate Ghosting From My Measurements? - National Instruments

How Do I Eliminate Ghosting From My Measurements? - National Instruments: "
Select a transducer with lower source impedance.
Reduce sampling rate and increase interchannel delay to allow enough settling time for the amplifier. See KnowledgeBase 292A3QB5: How do I Increase Interchannel Delay Using NI-DAQmx or Traditional NI-DAQ (Legacy)?
Implement a voltage follower or buffer circuit to decrease source impedance to less than 1 kOhm. See KnowledgeBase 208AD10T: Decreasing the Source Impedance of an Analog Input Signal
Arrange signals to minimize voltage swings between channels.
Choose the high-impedance channel as the first channel in the scan list.
Note: This will only help if you are not sampling in round-robin mode.
Avoid multiplexing – sample one channel at a time or switch to a simultaneous sampling DAQ device."

'via Blog this'

Coupling between two AI channels - NI Discussion Forums

Coupling between two AI channels - NI Discussion Forums: "2) Channel-to-channel settling crosstalk: signals on one channel influence the measurement on the next channel in the scan sequence. When the multiplexer switches from one signal to the next, the signal at the A/D converter does not switch instantaneously from one to the other. Due to limited bandwidth of the amplifier and the A/D converter, and capacitance in the multiplexers, there is a settling time as the signal transitions from one level to the next. At first blush it usually has the shape of an exponential function, though once that part has settled out there's usually slower effects that aren't exponential. Those slower components of the settling curve are often due to thermal transients and dielectric absorption in capacitors. In any case, if the A/D converter samples the signal before it's through settling adequately to the new level, the new signal will carry some residual influence of the previous channel. Since the curve usually decreases monotonically, waiting longer to settle decreases the amount of influence. So one thing to try is to lower the channel-to-channel sample rate within each scan - if that decreases the noise, then your problem is likely related to settling."

'via Blog this'

Coupling between two AI channels - NI Discussion Forums

Coupling between two AI channels - NI Discussion Forums: "On the other hand, the input resistance is very high (> 10 Gohms), and so any charge left on an otherwise unconnected line will determine the voltage on the line. When the multiplexer switches from your connected load cell channel to the unconnected (floating) channel, the charge stored from the first channel remains in the multiplexer circuitry and holds the voltage where it was until a lower impedance is connected and can influence it. This is why the unconnected channel appears to follow the connected one."

'via Blog this'

Sunday, 15 September 2013

How do I filter out AC noise on a load cell? - NI Discussion Forums

How do I filter out AC noise on a load cell? - NI Discussion Forums:

  • A sharp Butterworth filter will work (let's say 12th order with a cutoff freq of 1-2 Hz)
  • The easiest way might be to average over a larger number of points to average out the 60 Hz (or 50 Hz) signal.
  • A shielded and correclty grounded shield on the cable between the measurement system and the sensor.

'via Blog this'

Tuesday, 28 May 2013

Concatenation - Wikipedia, the free encyclopedia

Concatenation - Wikipedia, the free encyclopedia:

In formal language theory and computer programmingstring concatenation is the operation of joining two character strings end-to-end. For example, the concatenation of "snow" and "ball" is "snowball".

'via Blog this'

BET: Microsoft Excel Formulas - A1 or R1C1 Notation

BET: Microsoft Excel Formulas - A1 or R1C1 Notation:


What is R1C1 Notation ?

 
 

This is another way to create cell references which uses numbers for both the rows and columns.

 
 

Cell References are displayed in terms of their relationship to the cell that contains the formula rather than their actual position in the grid.

 
 

Cells are referred to by relative notation. Absolute references have numbers. Relative references have numbers in square brackets.

 
 

The above formulas will be changed to the following when you switch to R1C1 notation.

 
   
 

Negative row numbers mean that the referenced cell is above the cell containing the formula.

 
 

Negative column numbers mean that the referenced cell is to the left of the cell containing the formula.

 
 

Changing to R1C1 notation will change all the formulas in that workbook.

'via Blog this'

TEXT function - Excel - Office.com

TEXT function - Excel - Office.com:

 
1
2
3
4




5




6


7


8


9


10
ABC
SalespersonSalesData
Burke280039300.625
Dykstra40%
FormulaDescriptionResult
=A2&" sold "&TEXT(B2, "$0.00")&" worth of units."Combines cell A2, the text string " sold," cell B2 (formatted as currency), and the text string " worth of units." into a phrase.Burke sold $2800.00 worth of units.
=A3&" sold "&TEXT(B3,"0%")&" of the total sales."Combines cell A3, the string " sold," cell B3 (formatted as a percentage), and the text string " of the total sales." into a phrase.Dykstra accounted for 40% of the total sales.
="Date: " & TEXT(C2,"yyyy-mm-dd")Displays the value in C2 in a 4-digit year, 2-digit month, 2-digit day format.Date: 2007-08-06
="Date-time: " & TEXT(C2,"m/d/yyyy h:mm AM/PM")Displays the value in C2 in a short date, 12-hour time format.Date-time: 8/6/2007 3:00 PM
=TEXT(C2,"0.00E+00")Displays the value in C2 in scientific (exponential) format.3.93E+04
TEXT(C2,"$#,##0.00")Displays the value in C2 in a currency format, with a thousands separator.$39,300.63

'via Blog this'