All AI channels have the same value

I use the example aiex2.cpp for a multichannel AI read with the mseries devices NI6280.
This example works for one channel, but the other channels have the same value
For example: I set 5Volt on the first channel and then the other channel have 5Volt too.
What should I consider in the configuration?
beilei
Solved!
Go to Solution.

Hello Beilei,
I think that you are running into the AI ghosting issue.  Are the other channels you are using connected to ground when you connect the first channel to 5V?  If the other channels are floating, they will read the same value as the first channel...5V.
Steven T.

Similar Messages

  • All AI channels have the same value - NI PCI-6221 and NI PCI-6229

    Hello,
    I use the example aiex1.cpp for a multichannel AI read with the mseries devices 6221 and 6229.
    This example works for one channel, but the other channels have the same value (+- 0.001 Volt difference).
    For example: I set 5Volt on the first channel and then the other channel have 5Volt too.
    What should I consider in the configuration?
    Please, can someone help me?
    Best regards,
    Heiko
    Solved!
    Go to Solution.

    Hi Heiko,
    Like Moritz, I'm curious what signals you have connected to your AI channels. What voltage do you expect to read on each channel?
    Tom gave me your initialization code and it looks like you've modified aiex1.cpp. Does the example work without any changes?
    I have some more questions that will help me determine where the problem could be coming from, but these two are the easiest. We'll keep getting more and more specific as we remove possible causes.
    Joe Friedchicken
    NI VirtualBench Application Software
    Get with your fellow hardware users :: [ NI's VirtualBench User Group ]
    Get with your fellow OS users :: [ NI's Linux User Group ] [ NI's OS X User Group ]
    Get with your fellow developers :: [ NI's DAQmx Base User Group ] [ NI's DDK User Group ]
    Senior Software Engineer :: Multifunction Instruments Applications Group
    Software Engineer :: Measurements RLP Group (until Mar 2014)
    Applications Engineer :: High Speed Product Group (until Sep 2008)

  • Can i make it so that all my clients have the same wallpaper Leopard Server 10.5.8

    hi i am running leopard server 10.5.8 and i was wonderg if i can make it so that all my clients have the same wallpaper
    that they can not change

    com.apple.desktop
    i think that the name of the file as least

  • YTD and accumul. depreciation have the same value when dpis is 2 years ago

    Hi all
    I am using FA and i have some problems. I have just setup this module and now i want to migrate assets in the system. The customer gave me an excel with the following fields that want to be in the system like: asset cost, accumulated depreciation, date placed in service, ytd accumulation and so on.
    the problems are:
    1) when i want to enter new asset manually the ytd depreciation and accumulated depreciation are required to be equal. ok so far, i register new asset on test environment and when i enter the date placed in service for example two years ago (because that is the real date placed in service of the asset) and run depreciation, the system has calculated correctly the accumulated depreciation, but has calculated the same value even for YTD depreciation which is not true, because in this case accumulated depreciation and ytd depreciation are completely different. how to solve this problem? How can i put correct values in this fields?
    2) when i enter these assets directly in the fa_mass_additions table according to the fixed assets user guide, i have the following errors: when i put "ON HOLD" on queue name, and open these assets on the system, the on hold field has no value (is empty)
    When i try to run post mass additions, the report is not finding the parameter (book) because the system is giving en error message telling me that there is no value in this list of values
    please help to solve this problems because i am not being able to migrate assets for the company.
    Thank you and best regards

    gaskins,
    You may have different Color Settings, and if you use Pantone you should be aware that the whole interpretation has changed (a number of times, most radically recently).
    If you say more, more can be said.

  • How do I resolve inconsistent color definition message even if all my files have the same definition

    All of the files in my book have the same exact color definiti
    ons: New Color1. Yet I keep getting the inconsistent color definition messag
    es every time I go to print or regenerate my toc. I still get results but It's annoying!

    Does EACH document have the SAME definition of NewColor1? Having the same name does not imply that they are the same definition.
    Try opening the first document in the book. Then select all the documents in the book file and import the color definitions from the opened file. This will make all the documents have the same definitions as in the first document.

  • TS2972 What is the point of Home Share if all devices must have the same Apple ID?  Three family members in this home would like to use the facility but all have different Apple IDs.

    Three family members use ITunes and would like to use Home Share but the HOme Share set-up guidance states that all devices must use the same Apple  ID.
    Is there a workaround for this impasse?

    Three family members use ITunes and would like to use Home Share but the HOme Share set-up guidance states that all devices must use the same Apple  ID.
    Is there a workaround for this impasse?

  • Automation plugin: how to select a spot channel when 2 channels have the same name?

    I have a CMYK document opened in photoshop. In "CHANNELS" panel, I just added 2 spot colors with the same name "Sport Color 1".
    As I click any of the spot channel to select it, the "Listener" plugin will output some c++ code like below:
    SPErr PlayeventSelect(/*your parameters go here*/void)
         PIActionDescriptor result = NULL;
         DescriptorTypeID runtimeKeyID;
         DescriptorTypeID runtimeTypeID;
         DescriptorTypeID runtimeObjID;
         DescriptorTypeID runtimeEnumID;
         DescriptorTypeID runtimeClassID;
         DescriptorTypeID runtimePropID;
         DescriptorTypeID runtimeUnitID;
         SPErr error = kSPNoError;
         // Move this to the top of the routine!
         PIActionDescriptor desc0000000000003980 = NULL;
         error = sPSActionDescriptor->Make(&desc0000000000003980);
         if (error) goto returnError;
              // Move this to the top of the routine!
              PIActionReference ref0000000000001A48 = NULL;
              error = sPSActionReference->Make(&ref0000000000001A48);
              if (error) goto returnError;
              error = sPSActionReference->PutName(ref0000000000001A48, classChannel, "Spot Color 1");
              if (error) goto returnError;
         error = sPSActionDescriptor->PutReference(desc0000000000003980, keyNull, ref0000000000001A48);
         if (error) goto returnError;
         error = sPSActionControl->Play(&result, eventSelect, desc0000000000003980, plugInDialogSilent);
         if (error) goto returnError;
    returnError:
         if (result != NULL) sPSActionDescriptor->Free(result);
         if (desc0000000000003980 != NULL) sPSActionDescriptor->Free(desc0000000000003980);
         if (ref0000000000001A48 != NULL) sPSActionReference->Free(ref0000000000001A48);
         return error;
    You can see "PutName" add the channel name "Spot Color 1" to reference, and I think it will not work correctly if I add such code to my project since PS cannot differentiate the 2 channels only by name. Can anyone tell me if there's any other method for selecting spot channel? Thanks in advance.

    Hi
    Here is the something from docs tht you may find usefull.
    Tryusing index instead of name:
    SPAPI OSErr(*
    PutIndex )(PIActionReference ref, DescriptorClassIDdesiredClass, uint32 value)
    Puts an index into a reference (formIndex) along with the desired class for the reference.
    Unfortunately I dont have C++ here to try i just used definition from docs.
    Hope that this help.
    Regards,
    Momir Zecevic
    Ars Media
    www.arsmedia.tv

  • All my contacts have the same birthday... how to remove them?

    HI all,
    I have had this issue for a few years... in fact, since the very DAY I switched from Windows to MAC! All my contacts have that date entered as their birthday as well as their aniversary. Sounds funny perhaps but.... is not, really.
    How can I just deletes all birthdays and anniversaries in bulk or (even better) only do that for those ocntacts that have that specific date entered as thier birthday/anniversary (as I do have some contacts with correcth birthday which Iñd love to conserve). Thanks.

    Thanks Bro. I have backup. and I did the same thing twice but only 26 contacts appear on the device. Now again yesterday after your suggestion again I restored the device but the result was same. Then I thought a new thing. I restored the device one more time but after restoring I didn't configure the icloud account. Surprisingly all my old contacts are there in the device but those 26 contacts are not there. Now I will tell you how this must have happened? I had 3gs earlier. that was stolen 3 months ago. I put the device in lost mode. I purchased new iphone4. I restored with itune. All my data came back. After that I saved these 26 new contacts to my device which also saved in icloud but when I tried to backup on my pc it was not happening. the messege coming device disconnected. 2 days back my stolen device came online. Lost mode was activated by icloud. But what I think in between that time the other fellow must have deleted the phone contacts. And as per icloud also deleted the same. Only the 26 contacts which I saved in these 3 months remained in icloud. Now bro can u help me out? What I should do? I have 26 contacts in icloud and < 500 in my device. I don't understand when all other Co's mobile you can import contacts from any backup file iphone can not. This is the DRAWBACK OF IPHONE.

  • Counting Numnber of Cells in a Table that Have the Same Value

    Is there a way/formula to do this, other than they way I'm doing it now, which is by using COUNTIF? In a table with 1000 rows for instance, let's say the values in the A column are what I'm keying off. I would like a count of all the cells in the A column that have the word "example" as their value. Right now for each unique value in a cell in the A column I am manually creating a COUNTIF(A1:A1000,"<value i'm matching against>) but if there are many unique values in the A column, it's quite laborious. Ideally I'd like to just have a table generated that gives me the top 5 or top 10 most occurring cell values in the A column in the table. What's the best way to do this?

    So for instance, for a column like this:
    1
    1
    1
    2
    2
    4
    5
    I want a way to get back the number of times 1 appears in the list (3), the number of times 2 appears in the list (2), 4 (1), 5 (1), and so on. If I do a COUNTIF and there are thousands of rows, I have to manually put the matching string in each one.

  • Cannot separate muulti pages for numbering. If I make first page (1), all following pages have the same number. How do I fix that?

    Cannot separate multi page document for page numbering. First page numbered (1) produces same number on 5 following pages. How do I correct this?

    You just wrote a 1 in the footer? Use Insert > Page number instead.
    You have an online help in your Pages Help menu. It does have basic help

  • All my libraries have the same photos

    I have iphoto 7.1.3 and several libraries... call them A, B, C, D. The libraries are all there, but when opened they only show the photos of one of the libraries .. i.e. Libraries A, B, C, D all show the photos of Library A. All photos from the other libraries (thousands) are missing.

    How are you opening them? the only way to change libraries is to launch iPhoto while depressing the option (alt) key and using the select library function or to us iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/
    If you are double clicking on a particular iPhoto library thinking that that will open that one - it does not - it opens iPhoto using the standard library that was last selected using the select library function described above
    LN

  • Nodes in VBox have the same values from localToScene.

    var b1=Button {text: "Button1"}
    var b2=Button {text: "Button2"}
    var aVBox = VBox {content: [b1,b2]}
    Stage {
        scene: Scene
            width: 100
            height: 100
            content:[aVBox]
    println("{b1.localToScene(b1.boundsInLocal)}");
    println("{b2.localToScene(b2.boundsInLocal)}");I expect those two buttons adjacent to each other should have different bounds in the scene. But they are almost identical. Is that a known problem?
    Basically, I want to get the coordinates of nodes in a VBox in the scene.

    Actually, at the time you print out the values, the layout isn't started (or finished) yet.
    You can see the difference with a little change:
    var b1: Button = Button {text: "Button1"}
    var b2: Button = Button {text: "Button2",
    action: function(): Void
    println("{b1.localToScene(b1.boundsInLocal)}");
    println("{b2.localToScene(b2.boundsInLocal)}");
    var aVBox = VBox {content: [b1,b2]}
    Stage {
        scene: Scene
            width: 100
            height: 100
            content:[aVBox]
    println("{b1.localToScene(b1.boundsInLocal)}");
    println("{b2.localToScene(b2.boundsInLocal)}");When I click on the 2nd button, I see different values of Y.

  • How can i get a list with all devices that have the same icloud account for iMessage, FaceTime, Reminders, etc...

    Hi, I want to know which devices (iMac, MacBook, iPod, iPhone, iPad & PC) are using my iCloud account, specifically because of iMessage going to devices that im not aware of.
    A list of those devices would be great.
    I do have a list of the ones with find my i activated, but i want the full list. Or at least the ones being used by FaceTime or iMessage!
    Thank you in advance!

    I don't think there's a single place that will give you a list but you can check your devices to create one.  On your iOS devices go to Settings>Messages>Receive At and check the Apple ID at the top.  You can check FaceTime at Settings>FaceTime.  You can check iCloud at Settings>iCloud>Account.  On your Mac go to System Preferences>iCloud> click on Account Details.  On your PC go to Start>Control Panel>Network and Internet>iCloud (you Apple ID is listed on the left).

  • HT2693 What is wrong with the new iOS 6 software on the iPhone 4 and 4s it's made all apps, messaging, calling etc very glitchy and slow!? Myself and a few of my mates have the 4 or 4s and all seem to have the same problem. If its apples software, are the

    WWhy's the new iOS 6 so slow and glitchy?

    Im having problems since the new update also!! ALL my apps crash! This is getting old! No help from apple! Very frustrated!!! I dont know what to do!!!help please!!

  • User Logon Name (pre-Windows 2000) and Domain Name Don't have the same Value

    Hi
    is it possible to have User Logon Name (pre-Windows 2000) and Domain Name with different value?
    Exemple:
    domain name domain1.com
    and User Logon Name (pre-Windows 2000) Domain2\user

    If you have trust in place, then also you can use trusted domain name to login from trustee domain. Also, UPN suffix can be added.
    http://technet.microsoft.com/en-us/library/cc773178%28v=ws.10%29.aspx
    Awinish Vishwakarma - MVP
    My Blog: awinish.wordpress.com
    Disclaimer This posting is provided AS-IS with no warranties/guarantees and confers no rights.

Maybe you are looking for

  • Inconsistent results with MDX formula

    Hi. I'm converting a BSO cube to ASO, and it has dynamically calculated formulas that I'm converting to MDX. I have a formula that is supposed to accumulate an account (Order Intake) through the months and years until it gets to the current month of

  • BAdi: Construct ID from Components in Bar Code

    Has anyone used this BAdI in Aii 7.1?  Trying to find where this BAdI is called.  Looking for a method to convert between various barcode data, e.g. (01) (21) (10) (17) (30), and either parse out the AI data not contained in the GS1_SER ID or convert

  • CTM planning related conceptual questions

    In an attempt to understand the CTM functionality for master planning I have the following  questions 1.In real implementation where is the safety stock planning done by the standard methods and the where are the service levels considered. 2.when is

  • Need logic in sap script text elements.

    Hi experts I need a logic for the below requirement in text elements. I am giving IF condition for some tax codes against to C - Form., But my condition given in second line is getting failed  . my condition logic /:       IF &EKPO-MWSKZ& = 'CA' OR &

  • New IPhone is a Brick - after new Software Update

    Last night I synced my new IPhone 3G that I got this past July after lining up for 2 hours. Love it! However, it's been turned into a brick. I synced with iTunes 7, using the correct cable with no dock, and it mentioned that there is an update for th