What is the "Random Noise" specification in the AI Absolute Accuracy Table

I have a PCI-6255 board that I'm planning to use for some sensitive measurements. 
I'm trying to put together an end-to-end error budget and I have a couple questions. 
My model is in terms of analog-to-digital converter counts (also known as LSB in your data sheet). 
In the Absolute Accuracy table on page 5 of the NI 615x Specifications I see a column labeled Random Noise, (uVrms).
I think I understand the residual gain error, residual offset error, and associated Tempco, and the INL error but the Random Noise is puzzling me.
Here is why:  on the +/- .2V range, the random noise is 16 uV.  On this range, the ADC resolution is 6.1 uV so the random noise is about 2.6LSB
If I look at the +/-5V range I see a random noise of 140uV.  On this range, the ADC resolution is 305uV so the random noise is well under one LSB.
Therefore, in my error budget I can use "1 LSB" for the random noise when on the 5V range but I have to use "2.6" or "3" LSB when on the .2V range.
I expect a signal of aproximately 150mV riding on a 2.5V DC level.  I was concerned I might need to offset the signal (remove the 2.5V dc) in order to use the +/-.2 volt range to get better resolution.  I also thought I would get better noise performance too.  In looking at the numbers here though it looks like I would be better off using the +/-5V range (assuming it gives good enough resolution) because the readings have less noise counts (even though it is more noise volts).  
I can account for the Gain Error and Offset Error by injecting known signals and doing a "software correction".  Not sure, but I believe I can also correct for the INL if I use a polynomial fit of 2nd or 3rd order.  It's the random noise I'm having problems understanding. 
Here's the question:  what is the Random Noise shown in the AI Accuracy table for the 625x boards?  Can you give an example of how NI might have measured it?
Secondly, note 2 says "Sensitivity is the smallest voltage change that canbe detected. It is a fucntion of noise."  Was this measured with a signal-to-noise ratio of "1" or "2" or some other standard, or is this a calculated value?
Thanks
MG

wrong forum. Sorry.  I'll repost in proper forum

Similar Messages

  • What are the phase noise specifications for the 10 MHz internal reference in the PXI-5661?

    Im looking for the phase noise specification on the 10 MHz internal reference for the PXI-5661.

    Hello Bob,
    As you may have noticed, and the likely reason for this post is that that spec is not readily available for the PXI-5600. You will however notice that the overall phase noise of the system is noted and my suspicion is that even though the 10Mhz reference helps improve the overall phase measurement, it won't necessarily dictate the measurement. I can ask R&D for this spec but they will likely inquire the need for this specification. Do you intend to use an external source instead of the built in reference?
    Regards,
    Glenn M
    Application Engineer
    Regards,
    Glenn

  • Where is the random play option in the new version?

    Where is the random play option? I want to play all my music through random but you can't seem to make that choice in this new itunes. Anybody figure it out?

    Could it be Controls > Shuffle?

  • What are the internal microphone specifications for the Iphone 4?

    I'm conducting experimental field work using my Iphone and need to include the microphone specifications in my report. Does anyone have this information at hand or know where I can find it?
    Thanks in advance,
    T

    Hello there, TLes84.
    The following is the Technical Specifications document for the iPhone 4:
    iPhone 4 - Technical Specifications
    http://support.apple.com/kb/sp587
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Why won't my keyboard make the clicking noise?? The dial pad doesn't do it either.

    For some reason the clicking wont make a sound!! Help!!

    Do you have Keyboard Clicks set to On in Settings>Sounds (at the bottom)?

  • Can anyone compare the fan noise level of the C2D and the G5 imacs?

    Anyone owned both? Is the C2D much more quiet?

    I'm your huckleberry! G5 rev b went from being pretty quiet except under load,and lately since 10.4.6 and after, the fans started spining a little faster than they use to, thus louder. I didn't mind it. Interstingly I had to unplug it (which I've done to reset the SMU) but I guess never for long enough, now when I plugged it in, it amazingly works like it did at its best, fans didn't speed unless under big load, and then would spin down again. Be that as it may, it wasnever totally quiet. The new one is virtually quiet. Right now I'm encoding video for the last 20 minutes, the back left panal is toasty to the touch the fans are working and you can barely hear it at all. Sounds more like when you here slight moving of air from airconditioning in an office. Thats it for the fans, the quietest I've ever heard on any box I've ever worked on.

  • What (ISO?) document completely specifies the PDF file format?

    Is there ONE (ISO?) document that FULLY specifies the format of a PDF file format? Where to obtain it?
    I need it so I can write a program that will perform some processes on PDF files.
    Thanks

    For all practical purposes there's no file size limit in the ISO PDF specification, however the bit length of internal references means there will be problems at around 10GB. There's also a limit of 2 billion pages (the page count attribute is a 32-bit int).
    Distiller won't output more than 32767 pages at a time, but I know cases of archivists working with 100,000-page text files (created by appending thousands of documents, but not in Acrobat).
    Having said that, the Acrobat Family is 32-bit code, so can only allocate 2GB of process memory. This means you can't perform tasks where an asset larger than the allocated free space has to be retained in RAM, and that includes the save operation. The Acrobat X Family will open an existing file >2GB, and Acrobat X will assemble PDF Portfolios >2GB, but can't save them.
    Given that creating >2GB files is a very rare scenario, there are no announced plans to implement x64 flavors of Acrobat or Distiller.

  • Why is the static method in the superclass more specific?

    Why is the static method in the superclass more specific than the static method in the subclass? After all, int is a subtype of long, but Base is not a subtype of Sub.
    class Base {
        static void m(int i){ System.out.println("Base"); }
    class Sub extends Base {
        static void m(long l){ System.out.println("Sub"); }
    class Test {
        public static void main(String[] args) {
            int i = 10;
            Sub sub = new Sub();
            sub.m(i);
    }The first example compiles without error.
    Output: Base
    class Base {
        void m(int i){ System.out.println("Base"); }
    class Sub extends Base {
        void m(long l){ System.out.println("Sub"); }
    class Test {
        public static void main(String[] args) {
            int i = 10;
            Sub sub = new Sub();
            sub.m(i);
    }In the second example, both instance methods are applicable and accessible (JLS 15.12.2.1), but neither is more specific (JLS 12.2.2), so we get a compiler error as expected.
    : reference to m is ambiguous,
    both method m(int) in Base and method m(long) in Sub match
    sub.m(i);
    ^
    1 error
    Why don�t we get a compiler error for the static methods?

    Thank you for your ideas.
    ====
    OUNOS:
    I don't get Sylvia's response. This is about static methods, what are instances are needed for??Yes, the question is about static methods. I included the example with non-static methods for a comparison. According to JLS 15.12.2, both examples should cause a compiler error.
    And why you create a Sub object to call the method, and dont just call "Sub.m(..)"Yes, it would make more sense to call Sub.m(i). Let�s change it. Now, I ask the same question. Why is there no compiler error?
    ====
    DANPERKINS:
    The error in your logic stems from calling static methods on instances, as ounos pointed out. Solution: don't. You won't see any more ambiguities.A static member of a class may also be accessed via a reference to an object of that class. It is not an error. (The value of the reference can even be null.)
    Originally I was looking only at the case with non-static methods. Therefore, I used sub.m(i). Once I understood that case, I added the static modifiers. When posting my question, I wish I had also changed sub.m to Sub.m. Either way, according to JLS 15.12.2, a compiler error should occur due to ambiguous method invocation.
    ====
    SILVIAE:
    The question was not about finding an alternative approach that doesn't throw up an ambiguity. The question related to why, in the particular situations described, the ambiguity arises in only one of them.
    Yes.
    Proposing an alternative approach doesn't address the question.
    Yes.
    ====
    If anyone is really interested, here is some background to the question. Some people studying for a Sun Java certificate were investigating some subtleties of method invocations:
    http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=24&t=019182
    I remember seeing the non-static case discussed in this forum once before in a more practical context. jschell probably knows the link.

  • Verify that the database is created with the correct path  specification

    Dear All
    When I installed DB2 9.1 with SP4 on windows 2003 64 bit,I use Configuration Assistant tool which is problem
    SQL1031N  The database directory cannot be found on the indicated file system.  SQLSTATE=58031
    Explanation:
    The system database directory or local database directory could
    not be found.  A database has not been created or it was not
    cataloged correctly. 
    The command cannot be processed. 
    User Response:
    Verify that the database is created with the correct path
    specification.  The Catalog Database command has a path parameter
    which specifies the directory where the database resides. 
    sqlcode :  -1031
    sqlstate :  58031
    Thanks

    Hi Phuc,
    Could you please validate, that the database TST is located in driver H: ?
    If the database is there, you find a directory with the name of your instance under the H: drive, inside this directory, you must find a NODE0000 directory and finally inside the NODE0000 directory there must be a SQL0000? directory, where ? is a number.
    You get your instance name from the environment variable DB2INSTANCE or simply by the execution of:
    db2 get instance
    If there is no SQL0000? directory at all, this means the database is located somewhere else.
    If there is SQL0000? directory in that drive, you can perform the following:
    db2 CATALOG DB TST AS TST ON H:
    And provide the error message, if any.
    Hope this helps
    Best regards, Edgardo

  • Is the serial number for an iPad mini specific to the gb's on the device?

    I just bought a 32 gb iPad mini off eBay with some damage.  Taking it to the Apple store, I found out I was able to get a new one free of charge because it was under warranty.  They did this by checking the serial number.  After I came home, I realized they gave me a 16 gb instead of a 32 gb, like I had ordered off eBay. Is the serial number specific to the amount of gb's on the device or did the Apple store just mess up?

    If in fact it was a 16GB iPad, you can file a complaint with eBay and the seller will probably have to give you a partial refund.
    http://resolutioncenter.ebay.com/
     Cheers, Tom

  • Is the operating system installation specific to the particular machine?

    If I move the os harddrive (which is leopard 10.5.1 + all applications) into a new machine, would it work? Both are intel machines and I'm trying to avoid not only downtime in setting it up but also this setup is very stable....BUT I don't want to do this if the installation is specific to the machine on which it is installed and doing it this way would cause me more headaches than time. Thanks
    Message was edited by: GRS

    It depends. All new Macs come with a set of Software Restore discs. The version of OS X on the discs is often specific to that model - a special build. The retail version sold by Apple may contain a build that does not work on machines made after the retail version was released. For example, the 10.5 version of Leopard released last October will not work on the 2008 models because the new models require a later build (or even a later version.) The Early 2008 Mac Pros are delivered with a version of 10.5.1 that is not the same as the version installed by the 10.5.1 standalone updater.
    It's reasonable to assume that whatever version of the operating system is on the gray labeled discs that come with a Mac, it is not compatible with a different Mac model.
    Furthermore, if you install any version of OS X on one computer you cannot install that same version on another Mac at the same time without violating the license agreement unless you have either a Family Pak 5 machine license or a site license.

  • How Random is the Random method ?

    Hi ,
    I have designed this method to read in an array of integers and then to shuffle the integers in the array.
         public int [] shuffle(int [] array){
         Random rand = new Random();
         for (int i = 0 ; i <=1000 ; i ++)
              int x = rand.nextInt(312);
              int y = rand.nextInt(312);
              temp = array[x];
              array[x] = array[y];
              array[y] = temp;
              temp = 0;
         return array;
    I then call the method with 10 arrays. The arrays are 312 integers long and the values range from 1 .. 13 . But fairly often I get identical patterns of numbers . I was wondering if it was because of the Random function repeating itself or something I am doing
    Thank you for your time
    Craig

    Ok , Thanks for that .
    So basically because my program is runnning so quickly the Systems clock has not updated by the time when the second array goes into the method and so the random numbers generated are the same.
    Can anyone suggest a way to solve the problem ? because I can not remove the Random generator from the method.
    Thanks Again Craig

  • Technical Specification of the USB Power Adapter

    Hey guys/gals, do you know the exact technical specifications of the "Apple iPod USB Power Adapter"? I want to know its Voltage Input Range, Voltage Output, Power Output (Watts) and Pin Assignment, i.e. which pin is +V, NC and GND. Thanks.

    The USB Power adapter isn't a smart device - much more like a charger: The only way to switch it off, is to unplug it from the A/C outlet.
    But you may leave it pluged into A/C: Nothing will happen except a small consumption of electricity.
    ad 2: You may view a video through your connected TV set, but there will be nothing like a TV menu to select it - if you want this feature you have to buy a 3rd party docking station.

  • Speaker wire cut, want to fix myself - which is the best way to connect the wires back together?

    Some how, one of the wires going to my left-center speaker got cut in half. Not sure if it was the vacuum or my dog........anyway, I want to fix it, so - would you recommend butt-connectors, soldering the wire back together, or some other method?
    Also, does it matter which wires connect back together? The wires are identicle (smooth covering) and both wires appear to be copper........ I was just wondering if anything would happen if you were to connect the wires back together, but backwards.
    Please let me know so I can get this fixed quickly.
    Thanks,
    -Officer_Dufus

    http://www.eminent-tech.com/music/multimediatest.html
    Go to the above link and listen to the Pink Noise Monaural and the Pink Noise with Reversed Polarity tests. When a speaker is of opposite polarity, that means that the wires are connected backwards (positive to black and negative to red). If this happens, when your speaker should move out it'll move in and vice versa. This makes the sound seem to come from everywhere but the speaker. Play the tests to see what I mean.
    If you solder your wires back together and notice this problem with your speaker, just reverse the connection to the speaker itself and you should be okay.

  • You are not the candidate/staffing manager for the specified org unit

    Hi all.
    With cProjects 4.0 (SP10) we are using the staffing scenario "Resource manager via responsible organization" meaning that the role will be directed to the organizational unit specificed in the "staffing process" tab who then handles the staffing.
    Despite the above I get the messages from the Subject header when maintaining the role
    You are not a candidate manager for the specified or initial organizational unit   
    You are not a staffing manager for the specified organizational unit"
    As the scenario builds upon the project creating requirements through the role the above messages seem unlogical.
    Is there an explanation for why the messages are received?
    Best regards / Anders

    Hi.
    I also assume that is meaning of the message - but is that logical in this staffing scenario?
    The project (leader) should create & update the role and then hand it over to the org unit for staffing by changing the status of the role "Start staffing process".  The above message should not be received upon setting that status.
    It can not be the intention that the project leader should be assigned as a resource manager to all possible org units.
    Phrasing it differently, when the status of the role only is "Staffing in preparation" the project leader must be able to update it including setting the staffing status without these messages being received.
    When the status of the role is Staffing in process the only thing the project leader ought to be able to do is the reset the status of the role (cancel the staffing request).
    Regards / Anders

Maybe you are looking for

  • Can you change a group of PO's for the same Service Receipt Approver?

    When a Manager leaves/moves teams, we run a report via SQ01 to find out which PO's are still open, and manually go into each and change the Service Receipt Approver tot he new Manager's ID. This is to ensure workflow works correctly for approving the

  • Payment for Multiple Invoices thru F-53 or F-58

    Hello all, My client is currently having this problem.  She created three Vendor Invoices using FB70 A, B, and C of the same vendor with DIFFERENT VALUES in the Assignment Field.  She pays these invoices using Transaction F-53.  The problem is the th

  • How to select all (dots) in a scatter plot matrix?

    I have a scatter plot matrix, and I'm manually changing the color of each trend line, which probably isn't the best way but it's an easy but time consuming way to do it. I can't feasibly change the color/stroke of every single scatter plot dot in eve

  • Forcing a page to open at an anchor

    Hi, I'm new to Muse and web design in general. Is there a way, perhaps with anchors, to make a page load at certain point maybe 1/4 of the way down a page. I ask because I've used scroll effects to make the header on my home page shrink to a smaller

  • Web browsers and app store keep crashing

    Hi, both Safari and Firefox keep crashing on me at random intervals.  The app store will crash as well, though not as frequently.  I can't seem to identify any particular trigger that causes the crashes but I have reinstalled Flash, Java, Safari, and