Problem to get all channel work

I am designing a system to read temperature using SCXI1000,SCXI1100,SCXI1303,type T Thermocouple, and Labview7. The problem is that I want to use 9 channels, but only one works ( channel 0)when doing a test on the channels using MAX. I am wondering why that happen. Is it a hardware problem, configuration etc....Please give me an idea what may happen.

You do not have a hardware or software problem. When you use an SCXI chassis, all the channels are mutiplexed through channel 0 of your DAQ card. You will not be able to view any of the channels by merely referencing channel 0 using the Test Panel function.
You could use one of the SCXI-1100 example VIs that ship with LabVIEW, or, you could consider using Measurement and Automation Explorer (MAX) to create virtual channel names. This will serve several purposes:
1) It provides uniques names for each channel
2) It simplifies the channel call syntax during acquisition (you would use T0,T1,T2... instead of ob0!sc1!md1!0:8
3) It provides a means to output reduced temeprature data directly without writing a VI for data reduction
4) The temperature readings will alread
y be referenced to the cold junction on the 1303 module, and,
5) You will be able to use the channel viewer within MAX to view all of the temperature readings.
To create a virtual channel name, launch MAX. Under the Configuration tree (LHS window) RIGHT mouse click (RMC) on the Data Neighborhood entry and select >> Create New...
In the pop-up window, select Virtual Channel and press the finish button. Now follow the Channel Wizard prompts to create the virtual channel. Choose any name you like for this first channel. Once completed, you can go back to the Configuration tree, RMC on the channel name and select "Duplicate...". It will create muliple copies and assign them sequential names and assign them to sequential channels on the 1303 module. Once you have finished, you can view the channels using MAX. If you Select TEST on the top menu bar, a window will be launched that will allow you to view the reduced temperature readings.

Similar Messages

  • .....Can't get all channels to work..

    %? 5. sound system... Now at first I thoght this was aproblem with my sound system... but it's not, I tested it other places..
    So stats...
    Amd64, Asus Board... 4 GIgbytes of Ram, and windows Vista 64... Xifi-Xtreme Gamer
    I had all the channels working b4, but I can't seem to find the right pack form daniel I used... I'm guessing he changes the packs, and updates... but what about the solid core? I've had this same problem with the COnsole launcher, with the site itself... WHen I DIDNT have the cd..
    I would install the launcher and nothing... I would have to go back to a past update to find a fix to this... so I was wondering if the "side packs" work the same way? because I'm trying to re-do this sound card and I cannot getting it going...
    any help will work..
    ALl the channels, except for bass... is running to the right channel

    Are they plugged into the power connector?  
    heh just playing.
    Is the BIOS set to recognize either?

  • Problem with getting iPod to work.

    I'm having a problem with getting an iPod to connect to my computers. Also I can't even really get it to run. My brother gave it to me one or two years ago and it had these problems I just didn't think of the idea of going directly to Apple to figure it out. It's a 30 GB black iPod if that helps. When I plugged it in it showed the battery symbol. When I leave it for a while it shows the Apple symbol. Then it comes up with this: http://spirrwell.webatu.com/ipod.jpg If you can help thanks in advance!
    Message was edited by: Spirrwell

    I figured out that it was a hard drive problem so I'll find a fix if not I guess I'm screwed.

  • Problems with getting email to work in iFS.

    Hi,
    I have stumbled into some problems with the sendmail functionality in iFS. I have a working installation of iFS and now I would like my users to be able to receive mail and have these appear in the inbox folder. I think that I have followed the instructions for installing sendmail and configured the SMTP Protocol Server on NT.
    But the situation is this:
    The Protocol servers are running, I can use IMAP to check the INBOX. Sendmail receives the mail and it is placed i a queue, but iFS does not accept and connection from Sendmail.
    The SMTP log file has the following entry:
    Oracle 8i Internet File System SMTP Server: Release 1.0.8.3.0
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Connections on port : 2500
    127.0.0.1/127.0.0.1 tried to illegally connect
    127.0.0.1/127.0.0.1 tried to illegally connect
    Is there configuration that I have forgotten about? Or has this something to do with unsupported functionality on win2000, which is my platform?
    Thanks
    null

    Sorry, but Win2000 is not a supported platform for 1.0.
    -S

  • IMessage problem - Cannot get it to work

    iMessage problem - I cannot get iMessage to sync. I have a iPhone 4 and iPad 2 both on iOS 5. everything else works fine. I cannot get the iMessage to sync. Both have the same @me id. if I try to add another email I get "iMessage Activation Unable to veryify email because it is already in use." Going crazy for 2 days any ideas?

    I'm guessing, but the email address is used as a unique address, (it's easier with an iPhone as it has a phone number). This error could be saying that another iTunes userid has linked with that email address.  That is only possible if they verified it.
    Do you have two AppleIDs / iTunes IDs in the house, but a family (shared) email address?
    Simple solution then would be to create a new gmail email address and use that.

  • Custom authorization provider for WL7 problem (not getting all parameters from ContextHandler)

    I'm implementing a custom authorization provider for WebLogic 7.
    In my Access Decision isAccessAllowed method I need to check values of
    the parameters passed to an EJB method. Now, if an EJB method I have
    two parameters of the same type, for example int, when I get
    ContextElement array from ContextHandler and iterate through it to get
    names and values of the parameters I get the same value (value of the
    first int parameter) from both ContextElement's.
    Here is the code:
    String [] names = ch.getNames();
    for (int i = 0; i < names.length; i++)
    String name = names;
    System.out.println("name = " + name);//here it gets array of
    Strings, which contains two parameter names: "int","int",
    which are the types of EJB method parameters
    ContextElement[] ces= ch.getValues(names);
    for (int j = 0; j < ces.length; j++)
         ContextElement ce = ces[j];
         System.out.println(ce.getName()+ " = " + ce.getValue());
    //here if the value of the first int was 2 and the second 0,
    it would get 2 from both ContextElements (each of ContextElements will
    have name "int"
    If I try this with method parameters of different types, for example
    int with value 2 and long with value 0, then this code work fine -
    first ContextEleement has name int and value 2 and the second has name
    long and value 0.
    Thanks,
    -Oleg Kozlov.

    I'm implementing a custom authorization provider for WebLogic 7.
    In my Access Decision isAccessAllowed method I need to check values of
    the parameters passed to an EJB method. Now, if an EJB method I have
    two parameters of the same type, for example int, when I get
    ContextElement array from ContextHandler and iterate through it to get
    names and values of the parameters I get the same value (value of the
    first int parameter) from both ContextElement's.
    Here is the code:
    String [] names = ch.getNames();
    for (int i = 0; i < names.length; i++)
    String name = names;
    System.out.println("name = " + name);//here it gets array of
    Strings, which contains two parameter names: "int","int",
    which are the types of EJB method parameters
    ContextElement[] ces= ch.getValues(names);
    for (int j = 0; j < ces.length; j++)
         ContextElement ce = ces[j];
         System.out.println(ce.getName()+ " = " + ce.getValue());
    //here if the value of the first int was 2 and the second 0,
    it would get 2 from both ContextElements (each of ContextElements will
    have name "int"
    If I try this with method parameters of different types, for example
    int with value 2 and long with value 0, then this code work fine -
    first ContextEleement has name int and value 2 and the second has name
    long and value 0.
    Thanks,
    -Oleg Kozlov.

  • [Problem] Cannot get TS_EngineCommitGlobalsToDisk to work (TestStand 3.5)...

    I have CVI based DLL that displays a panel for operator entered values.  I then store these in a StationGlobal structure.  It seems that the actual ini file is not updated unless you complete the sequence.  If terminate it, it does not get the latest memory version of the StationGlobals.  I found the function TS_EngineCommitGlobalsToDisk and added the following function to my DLL which I then call after the panel has closed:
    void  CommitInformation (int promptOnSaveConflicts,
                             CAObjHandle seqContextCVI,
                             char *reportText,
                             short *errorOccurred,
                             long *errorCode,
                             char errorMsg [1024])
      int error = 0;
      ERRORINFO errorInfo;
      ErrMsg errMsg = {'\0'};
      tsErrChk (TS_EngineCommitGlobalsToDisk (seqContextCVI, &errorInfo, (VBOOL)promptOnSaveConflicts));
    Error:
      // If an error occurred, set the error flag to cause a run-time error in TestStand.
      if (errorInfo.wCode < 0)
        *errorOccurred = TRUE;
        *errorCode = errorInfo.wCode;
        sprintf (errorMsg,
                 "Source     : %s\n"
                 "Description: %s\n",
                 errorInfo.source,
                 errorInfo.description);
    Now when it runs "error" contains a massive negative number, but errorInfo does not contain any errors.  The StationGlobals are also not saved.  What am I doing wrong?
    Christopher Povey
    Senior Test Systems Engineer for BAE Systems.
    Solved!
    Go to Solution.

    It looks like your problem was that you were passing a SequenceContext to an Engine method. You have to pass a handle to the Engine. If you don't have an Engine handle handy, you can always get it from the context.
    In general, the name of a CVI function for a TestStand method  is TS_<interface name><method name>, though in some cases the it might be abbreviated. As an example of abbreviation, TS_PropertyGetValBoolean is a method on the PropertyObject interface, there is no Property interface.

  • [SOLVED] Can't get Steam to work, VirtualBox installation

    Hello!
    I'm having problems with getting Steam to work on my Arch Linux installation. I'm new to Linux so I'll just give you a prehistory & console output. I installed the distro on a virtual machine created in VirtualBox, installed xorg & KDE, I didn't install any video drivers because this is what wiki says:
    https://wiki.archlinux.org/index.php/VirtualBox#Installation_steps_for_Arch_Linux_guests wrote:Note: You do not need to also install a specific video driver in the guest system. Install the Guest Additions instead.
    So I installed "virtualbox-guest-utils" package, created a file /etc/modules-load.d/virtualbox.conf with the following contents:
    vboxguest
    vboxsf
    vboxvideo
    Then I executed
    sudo systemctl enable vboxservice
    and rebooted the system. After the reboot I got the shared clipboard feature working => VBox Guest Additions seemed to work. Then I installed "steam" package, launched it via the terminal and waited for it to download it's updated. After Steam downloaded everything, I tried to launch it once again via terminal and got this:
    Running Steam on arch  64-bit
    STEAM_RUNTIME is enabled automatically
    Installing breakpad exception handler for appid(steam)/version(1405013548_client)
    Xlib:  extension "GLX" missing on display ":0".
    Installing breakpad exception handler for appid(steam)/version(1405013548_client)
    Installing breakpad exception handler for appid(steam)/version(1405013548_client)
    Installing breakpad exception handler for appid(steam)/version(1405013548_client)
    Xlib:  extension "GLX" missing on display ":0".
    OpenGL GLX extension not supported by displayAssert( Assertion Failed: Fatal Error: OpenGL GLX extension not supported by display ):/home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/steamUI/Main.cpp:285
    Installing breakpad exception handler for appid(steam)/version(1405013548_client)
    Uploading dump (out-of-process) [proxy '']
    /tmp/dumps/assert_20140712040049_6.dmp
    Finished uploading minidump (out-of-process): success = yes
    response: CrashID=bp-e2313069-9637-4ef3-aeee-fe3b92140711
    and a GUI window saying "OpenGL GLX extension not supported by display". I tried to find a solution on the internet but they all mentioned installing Nvidia drivers. And VirtualBox GPU != Nvidia GPU.
    Is there any way to solve this? Steam is working on my Fedora-VBox (this is the distro our lecturer uses as an example to teach us about Linux) installation out of the box.
    EDIT: forgot to mention that system is x86_64, multilib in enabled, 3D acceleration in VM settings is enabled.
    Last edited by Nathel (2014-07-12 22:10:16)

    Fixed the issue by replacing nvidia-libgl with mesa-libgl & lib32-mesa-libgl.

  • DIAdem 2012 displaying all channels as "Noname" for .tdm files

    Hi
    I'm experiencing a problem with DIAdem 2012 when opening .tdm files. 
    I've reinstalled all NI software components, and still the problem remains.
    All channels are displayed as "Noname", "Noname_1" etc.
    Even worse, all values are displayed as either "0" or "NOVALUE".
    See attached image for example.
    The attached image is displaying the "Example.tdm" file which is opened by default when starting DIAdem.
    When opening the "Example.csv" file the problem is not there (channels have names such as "Time", "Velocity" and values).
    So what could be the problem related to reading/loading .tdm files? (Note, as I said, I just reinstalled DIAdem from scratch)
    Attachments:
    DIAdem_noname.jpg ‏270 KB

    Hi salte,
    "TDM_DataPlugin" is the default name that the ASCII DataPlugin Wizard would give to a DataPlugin you or someone else created to open files with a "*.tdm" file extension.  I'm betting that's where it came from-- the behavior you see in the Data Portal is also consistent with loading a TDM file as if it were an ASCII file.  DIAdem does not install this DataPlugin, and I highly recommend that you remove it.
    To remove the DataPlugin, go to the DataPlugin dialog, select the the "TDM_DataPlugin" in the list, and hit the red "X" icon or the <Delete> key on your keyboard.  To get to this dialog first start in either the NAVIGATOR or SCRIPT panel, then depending on your DIAdem version select one of the following two menu paths:
    "Settings >> Options >> Extensions >> DataPlugins..."
    "Settings >> Extensions >> DataPlugins..."
    Once you've removed the "TDM_DataPlugin", you will again be able to drag TDM files from the NAVIGATOR tree view into the Data Portal.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • IPhone 5 not getting all texts from Galaxy S6

    My girlfriend is having a problem not getting all of my texts. As far as we know, it is only happening to texts from my phone. They are showing as sent on the Galaxy S6, but do not show up, ever, on her iPhone 5. The missing messages are random. 

    Hi there
    I’m sorry to hear that there have been some issues with receiving texts. I’d be happy to look into this for you! Can you please send me a private message by Clicking Here and include the following information?
    Full name
    Cell number
    Recipient’s number
    Best time to call
    Thanks,
    Charise
     

  • Get All Groups from Weblogic

    Hello everyone,
    Well i'm having little problem to get all groups that exists in Weblogic. I already search but the only thing i can get is the groups from the user that is autenticated in the application.
    Best regards,
    Tiago Marques

    See if this helps - http://weblogic-wonders.com/weblogic/2010/11/10/list-users-and-groups-in-weblogic-using-jmx/

  • Unable to get following example working

    http://java.sun.com/products/jlf/ed2/samcode/textme1.html
    i am unable to get this example of file menus working.
    i have created a new project in JBuilder called TextMenu.jpx
    i have altered the project properties to look for TextMenu as the main method but it gives me a compilation error:
    "java.lang.NoClassDefFoundError: TextMenu
    Exception in thread "main" "
    can anyone else get this example working???

    Hi there,
    OK So its been two years since the last reply to this thread, but just incase anyone else out there is having problems with getting this example working in JBuilder here is how we did it.
    First off remove the "package samples;" line from the top of the .java file
    then locate the following line
    resources = ResourceBundle.getBundle( "samples.resources.bundles.TextMenuResources", locale);
    and change the part in the quotes to just "TextMenuResources".
    Finally open the samples.jar file and extract the file "TextMenuResources.properties" to the class folder of the project you are working on (for example if your project was called "TextMenu" then locate the "\TextMenu\class" folder and extract the file to there).
    Then compile the .java file in jbuilder and it runs, hopefully.
    I'm guessing there are easier ways to achieve a working state, but i had to get this working on a college computer with a variety of security precautions in place (including no command prompt, and no control panel which makes altering the classpath environment variable hard unfortunately).
    Hope that this helps someone.
    Sheepy / Andy

  • Getting Unit Of Work without JSP context

    We are developing an application using Toplink and ADF Datacontrols. We have timer (which starts right after deploy) which reads data from magnetic card reader and stores them into database (via Toplink). Our main problem is getting Unit Of Work (server session). If user interacts with application via jsp pages, obtaining uow is done from TopLinkDataControl (getAssociatedUnitOfWork()). But timer lives on its own, it has no jsp pages to get context from.
    We know one solution - getting server session from toplink descriptor (absolute path needed) - XMLProjectReader.read("c:\\...\\toplink-deployment-descriptor.xml"). Is there another way to create Unit Of Work for our timer in order to last whole application existence? Thanks.

    I was wrong, when I thought, that XMLProjectReader.read() with absolute path works. Your solution seems to be similar, with the same result. I'll describe my problem more closely:
    - Our web apllication consists of 2 projects - Model and ViewController. Each has set the classpath pointing to classes of the opposite project.
    - The only way, that I know of starting a Clock (from Model, Runnable) without creating JSP page is instatiating it in some servlet's init() method. (Servlet has set 'Load This Servlet When the Web App is Strted" in WEB.XML).
    - When I try in my clock to create UnitOfWork by XMLProjectReader.read("c:\\...\\toplink-deployment-descriptor.xml"), I get this error:
    EXCEPTION [TOPLINK-3007] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle.toplink.exceptions.ConversionException
    EXCEPTION DESCRIPTION: The Object [mypackage.MyClass], of class[class java.lang.String] could not be converted to [class java.lang.Class]. Please ensure that the class [class java.lang.Class] is on the CLASSPATH. You may need to use alternate
    API passing in the appropriate class loader as required, or setting it
    on the default ConversionManager/
    INTERNAL EXCEPTION: java.lang.ClassNotFoundException: mypackage.MyClass
    - mypackage.MyClass is one of many classes from Model, mapped in toplink-deployment-descriptor.xml. It is in classpath of ViewController.
    - For the time being, our application runs in JDeveloper, it will be deployed to OracleAS 10g.
    Either somebody please help me how to solve above error or maybe suggest how to start my clock together with application deployment (no jsp context).
    Thanks.

  • Getting all raw materials under one Finished Goods

    Hi,
    I have one problem with getting all the Raw materials. I used this FM (CS_BOM_EXPL_MAT_V2) but i couldn't get all the raw material under the finished Goods..
    It shows Semi Finished also..I need all the components under the Finished Goods.
    Please Guide me What I have to do.
    Regards,
    Dhanush.S.T

    Hi Guru,
          This is very urgent, Could any one can help me..
    Regards,
    Dhanush.S.T

  • Getting all rawmaterials under one Finished Goods

    Hi,
    I have one problem with getting all the Raw materials. I used this FM (CS_BOM_EXPL_MAT_V2) but i couldn't get all the raw material under the finished Goods..
    It shows Semi Finished also..I need all the components under the Finished Goods.
    Please Guide me What I have to do.
    Regards,
    Dhanush.S.T

    Hi Guru,
          This is very urgent, Could any one can help me..
    Regards,
    Dhanush.S.T

Maybe you are looking for

  • ITunes shows added music but won't play

    Hi, I recently started having problems with newly added mp3's to my iTunes library.  iTunes appears to have added the song to my library, as it shows up in the recently added playlists and music tab, however when I click to play the song, it skips to

  • Enhancing FI_Gl_4

    Hi Friends I have to enhance FI_GL_4 with purchase order number and its line item values. From Which table i need to get these values.Any idea. Regards Vijay

  • Field symbols to Z tables

    I have uploaded the table data from a file into a field symbol. But I am unable to insert the data present in the field symbol into a custom table. I am getting a dump. Could any one please suggest.

  • Hints and tips about OCP certification 10g

    Hi, in a few weeks I will have my certification test for OCP Oracle 10g. For this I'm interested in hints and tips for the test. Did somebody completed this test (not the upgrade one) and could tell me please the main topic, some tips for best prepar

  • Itunes wont reckognise iphone 5?

    using windows 8 and having the slightly earlier version of iphone 5 not C not S just 5 having updated to the latest itunes i can plug it into any usb port on my windows 8 laptop and nothing at all happens. any ideas anyone?