Running multiple VI's on same NIDAQ CARD, It only seems to allow me to run one instance on Analog Input per card.

I need to run 20 copies of a top level VI simultaneously. The first VI runs fine, however, when I start the second one, it runs without errors it just doesn't take any Analog Voltage readings. The first one continues to run smoothly. LabVIEW 8.2, Windows XP, Daq card in question is NI-PXI 6225.
It seems to me that if that card is basically "locked" by running one analog measurement, the functionality is SEVERELY limited. like 1/80th usable unless I pile all of my code into a single VI.
Please advise. Is there a way for multiple VI's to "share" this card?
One should welcome adversity as an opportunity to excel.

You don't have to 'pile' all of your code into one VI but you can't have multiple analog in tasks running at the same time. You have a single A/D converter and a single scan clock. Because of this, the DAQmx driver prevents you from starting more than one task. You could have a single VI that does nothing but scan all of the channels and publishes the results to either a shared variable or uses DataSocket. Or, a single VI could respond to requests from other VIs to add channels on a dynamic basis. In order to do this however, the running task has to be first stopped. You would also have to deal with any possible conflicts with different scan rates.

Similar Messages

  • Multiple accounts with the same credit card

    I recently opened an account for my daughter so she cannot download any of my apps or music. I am now having trouble making purchases. Can I not use the same credit card on both accounts? Thanks in advance.

    Hi jasons1014,
    Do you mean you created a new Apple ID for your daughter?  If so, you should be able to add your credit card to the billing for that account.
    Below are two links that will explain how to do this.
    Frequently asked questions about Apple ID
    The article below will explain how to setup the billing information for your daughter's iTunes Store account:
    iTunes Store: Changing account information
    The accepted forms of payment at the iTunes Store are summarized here:
    iTunes Store: Accepted forms of payment
    I hope this information helps ....
    - Judy

  • I have multiple devices on the same account, can I increase my cloud allowance without paying extra?

    Each device gives 5gig but multiple devices on the same account don't increase the cloud space. Do Apple recognise this and help?

    Malcolm wrote:
    Wow that's really harsh. Both my wife and daughter have disabilities and the idea of having one ID is to allow me to be able to track them quickly in times of emergency through 'find my iphone'. I did not realise this was 'creating a mess'.  I thought support communities were intended to, you know, support people with genuine questions like mine not to rush to criticism. Unfortunately both answers to my question have been negative.
    I am not being harsh, the truth is you are really creating problems for yourself e.g. calendars, contacts, etc. are all mixed up.
    Support Communities are there to show you how to use the devices as intended, the "criticism" is about how you use the devices and not about you as a person. We are trying to help if you can listen.
    You can use Find My Friends instead of Find My iPhone for your purpose.

  • Multiple databases with the same name ... only one named DB can be found

    Hi All
    We are currently in the progress of migrating over to APEX 3.2 from HTMLDB 2.1.
    We have 3 instances on each version - DEV, UAT, LIV.
    The HTMLDB servers and databases are set up with no problems in grid control. However, the new apex instances are not being found (different servers) - I think this has something to do with the names (global database name) being the same as an existing database that is already configured on GC.
    Is there a way around this? as we plan to keep both versions of APEX/HTMLDB running in parallel for at least the next few months.
    Thanks in advance.
    Jake.

    can you manually discover the new instances on the new server?
    Then just make sure the name that appears in Grid Control is different.
    e.g. prod.world is on server A and B. When you discover in Grid control, you can make it prod_B and you will see the latter without any problem.

  • Using airport utility to control multiple speakers at the same time

    Can I use the aiport utility on my Ipod to control multiple speakers/airport express units at the same time?  I am able to do this directly in ITunes but when I use my Ipod as the "remote" by using the airport utility it only seems to allow me to play music on one set of speakers at a time.  If I stream music to one set of speakers and then select a different set it stops the music that was going to the first set in order to stream it to the second set.  I hope that this is just user error and not a limitation of the airport utility because I just purchased a brand new Ipod in order to be able to do this (airport utility wasn't compatible with me 2nd Gen).  Thanks in advance for any help!

    If you have not already done so, now would be a good time to perform a complete power cycle of the entire network.
    Power off all devices...modem, routers, computers, etc....in any order that you wish
    Wait a few minutes
    Power up the modem first, and let it run 2-3 minutes by itself
    Power of the wireless router connected to the modem next the same way
    Power of the other AirPort routers one at a time about a minute apart
    Keep powering up devices one at a time about a minute apart until the entire network is back up
    Check the network

  • Is there a way to delete multiple pictures at the same time from the iphone4s?

    Is there a way to deleter multiple pictures at the same time, from my iphone4s? I know how to delete one at a time. Thanks

    Open your Photos App > Camera Roll > At the top right corner you will see a rectangle with a right arrow, select that. Now you can select as many photos as you want and you can hit the red Delete button on the bottom right.

  • How to use multiple languages at the same time for spell checking?

    I use two different languages all the time and words are mostly so different (English and Finnish) that I could have spell checking on for both languages at the same time.
    Now it seem to allow to select only one language at the time and I have to switch back and fort zillion of times per day.

    Thanks for the quick answer.
    The Dictionary Switcher doesn't seem to work with Finnish language, it doesn't detect it at all to be one of the choices although in the Firefox context menu Languages -> Finnish/Finland is shown.
    Also, if it would work, I would need to get rid of multiple EN_* langauges. I just need EN_UK or EN_US, not all 22 different EN_*.
    One option would be to create a custom dictionary, which would have words from both languages. The next task is then to find out how to make this kind of custom ENFI-dictionary, which would have words from both English and Finnish languages.
    Finnish may be a some kind of special case for spell checking anyway, because the support is in its separate plugin:
    http://voikko.sourceforge.net/

  • How can I share a gift card on multiple devices under the same Apple id

    how can I use the same gift card on multiple devices using the same Apple ID?

    Redeem it on any one; it'll be available to the others automatically.
    (119212)

  • Run invoke-command on multiple machines at the same time

    Hey all so I read that if I store my New-pssession in a variable then used that in my invoke-command it would run all computers at the same time.
    $a = Get-Content "C:\Users\cody-horton\Desktop\list.txt"
    $session
    for($i=0;$i -lt $a.Length;$i++){
    if(!(Test-Connection -Cn $a[$i] -BufferSize 16 -Count 1 -ea 0 -quiet)){
    Write-Host $a[$i] -foregroundcolor red
    else{
    $session = New-PSSession $a[$i]
    Invoke-Command -Session $session -FilePath "\\My computer\C`$\Users\public\Documents\zip folder.ps1"
    What exactly am I doing wrong I just need to run this script on multiple machines at the same time.
    Thanks.
    Edit: Also what would be the best way to close all the sessions thanks.

    Hi there,
    So what I think you are doing wrong here is that you are overwriting the value in $Session everytime you executed code inside for loop. try the below:
    $a = Get-Content "C:\Users\cody-horton\Desktop\list.txt"
    $session = @() #define this as an array
    for($i=0;$i -lt $a.Length;$i++){
    if(!(Test-Connection -Cn $a[$i] -BufferSize 16 -Count 1 -ea 0 -quiet)){
    Write-Host $a[$i] -foregroundcolor red
    else{
    $session += New-PSSession $a[$i] #add the new session to the array, at the end it will be a collection of sessions
    Invoke-Command -Session $session -FilePath "\\My computer\C`$\Users\public\Documents\zip folder.ps1" #I think the above one won't work..first you need to copy the script locally on the machine and then execute it#Why this won't work because of Second-Hop Authentication
    Have put comments where I edited your code.
    Hope this helps
    Knowledge is Power{Shell}. http://dexterposh.blogspot.com/

  • Can I run the currency translation for multiple years at the same time?

    Dear Friends,
    I set up currency translation on our BPC NW 7.0 system and it is working fine ONLY if I run it for any one year at a time. But if I select multiple years in the data package (FX Restatment) selection it only calculates for the first year in that selection.
    say if I run the data package for years: 2009, 2010, 2011, 2012, it only performs currency translation for the year 2009.
    Can I run the currency translation for multiple years at the same time ?
    Note: The year is determined from the YEAR property of the "Time" dimension
    appreciate any inputs,
    thanks

    You can run currency translation for multiple years.
    I think the problem it is actually related to how you are sending the parameter to currency translation script.
    Just review the script logic log and you will see with what parameters was called currency translation FXTrans.
    My expectation is that actually the script is called just with first year and that's the problem.
    Log of script logic you can find it into:
    C:\BPC|DATA\Webfolder\YourAppset\YourApplication\Private Publications\Users used to run logic\Temp
    Regards
    Sorin Radulescu

  • Can we use the same credit card for multiple customers???

    One of my clients has a requirement where they need to use the same Credit Card number for multiple customers. I have looked into the possibility of using the 'Alternate Payer' functionality but besides that is there any other way SAP can be tweaked to accept the same credit card on multiple customer accounts?
    Thanks in advance for any help or guidance you may provide.
    SJ

    I know SAP throws an error message which is why I was looking for a solution. I do have a work around. By pointing to an 'Alternate Payer' on the Payment Transactions tab on the customer master you can have a credit card on this alternate payer master record and use this payer on several other customers. All these customers will not have any credit card stored on their master records.
    Thanks for your response though.

  • Running multiple agents on the same server

    Has anyone run multiple instances of essbase on the same server, using the agentport command? If so, how well did it work and what do you think about running it in a production environment?Thanks alot!

    I have tested it, but the documentation does not recommend using this feature in production. You can achieve the same thing with creating test applications/databases.Also, when you run 2 instances of the agent on one box, you must modify the essbase.cfg of the client machine to indicate which instance (port) that client will connect to.Regards,Jade------------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected]

  • Running Multiple JVM's on same Server has OutOfMemory - PermGen Errors

    I have a scenario where I have 2 application servers. One is running one JVM and the other is running multiple JVMs.
    Both are configured with:
    -XX:+UseConcMarkSweepGC
    -XX:+UseParNewGC
    -XX:MaxPermSize=256m
    -XX:+CMSPermGenSweepingEnabled
    -XX:+CMSClassUnloadingEnabled
    The server that is running with only 1 JVM runs stable, however the server that is running multiple JVMs has frequent crashes due to OutOfMemory - PermGen errors. The only other difference is the Heap size. 512mb for each JVM on the app server with multiple instances and 1GB for the server with 1 instance. Is there a relationship/settings that need to be tuned when running multiple JVM's on the same server to avoid this?
    Thx

    The only other difference is the Heap size. 512mb for each JVM on the app server with multiple instances and 1GB for the server with 1 instance.This isn't a trivial difference. Basically you're saying "When I give the server 1 GB then it's okay but when I give it 512 MB it's not okay." If I saw those symptoms I would take them at face value to start with.
    So, turn off one of those servers on the machine that has two. Don't change anything else. Testable prediction: That won't fix your problem.

  • Open/run Multiple Windows of the same VI

    Hi!
    In my current project I would like to have the user open multiple windows of the same VI.  I've made a re-entrant VI:
    This is, currently, a very simple VI that just has a numeric control, a loop, and a stop button.  I then have a VI that calls the re-entrant VI.  I'd like it so that each time the user presses the "Call Re-Entrant VI" button, a new window of this VI is spawned and run.
    The first time the button is pressed, the re-entrant VI opens and runs fine. The title of the VI in the title bar is "Re-Entrant.vi:1 (clone)" (as expected).  When I try to launch another instance I get this error:
    I'm running LabVIEW 2009.
    Thanks for your time.
    Solved!
    Go to Solution.

    Here we go.  The Close Reference VI was causing my re-entrant VI to stop execution.  What do you think of this:
    This appears to work.  I'd probably want to get the path of my referenced re-entrant VI outside of my loop (since this will remain constant throughout the programs execution).  My guess is the Auto Dispose Ref feature will mean that as these windows are closed by my user, their garbage will be collected properly....?
    Thanks for your help.
    Edit: how odd that my Error Cluster constant in the VI Snippet wasn't saved to the image properly.
    Message Edited by Nickerbocker on 10-08-2009 10:33 AM

  • HT201303 Can I use the same Visa card for multiple accounts?

    Can I use the same Visa card for mine and also my partners apple account? Or is it one card can be linked to only one account?

    You can use one card for a few account. I would believe it you attempted to use it on too many accounts (5+), it may cause some issues. But using the same card on two accounts is fine.

Maybe you are looking for

  • I bought an HDTV cable to connect my MacBook Pro to my Sony TV via HDMI so I could watch videos from my computer on my TV.  My TV then shows my basic computer background but the videos won't play.  What am I doing wrong?

    I bought an HDTV cable to connect my MacBook Pro to my Sony TV via HDML.  The TV recognizes my computer; I see my basic computer screen on the TV. I tried to watch videos on my TV but got nothing. (tried via my facebook vidoes and Youtube.  What am I

  • How to change order of action items

    I've got four photos involved in a "dissolve" action. When I see them in the HUD window, I would like to be able to re-order them. Can't figure out how to do this -- clicking and dragging doesn't work and I've tried do that while holding down various

  • Connect to a external MAXDB

    Hello, I want connect to a externat DB with ABAP. TABLE: DBCON DBNAME       SAPSQL                                                               DBMS           ADA                                                                 USERNAME  uperdba     

  • USB 8451 no timer / counter ?

    Hi all, i´m not sure if i´m in the right topic now, but i found no answer with the search function. I tried to generate an digital pulse using timer/counter functions with Labview 8.5 and an USB 8451, but it didn´t work. Is it possible that the USB 8

  • My Safari keeps quiting

    Hi! My Safari has been quiting on itself for a while now. I don't really know what started it, and I can't figure out what triggers it to do so (it usually happens when I have a window oppened, but I am using another program). Does anybody know how t