Help, I need to measure from multiple UUT with independent timers.

Hello, I want to set up 20 independent test all controlled from one VI.  I want to have the information feed back to the main VI in real time.  I also want to have each test on its own timer with separate start and stop.
I want to use a HP 34970 to control relays and take voltage and current measurement through out a charge and discharge cycle.  One 34970 can support 20 sets of these measurement.  I want to take a measurement from each set every minute or so over the hour period of the test.  I need to pass a Start, and Stop Boolean, and two strings or numbers from the subvi's to the main for each of the 20 sets.
I have looked at passing information in a cluster but I need to know if the only way is to create a refnum of each element in the cluster, bundle them into a cluster and pass it into the subvi, or if there is an easier way.
I think I need to use semaphores but am not clear if notifiers would be more efficient.
I think a while loop with a timer for both charge and discharge will work best as it can run continuously and after the time is reached it will exit the loop and go to the next step without monopolizing the CPU.
Please give me any ideas and help me find the best way to make this work.
Ben
Attachments:
Discharge Test.vi ‏16 KB
Discharge SubVI.vi ‏67 KB

ok thanks yea thats helped alot im new to this so thats why it seems basic to you but not me. i have tryed to find out through tutorials but could work it out. im now able to do this but i want to draw my mask free hand and it seems you can only place points with the pen tool? is this the only way to make the shape of my mask? or example in photoshop which i know well i can use a paint brush and paint any shape i want to make a mask but i cant see how to do that in after effects? any help on this would be greatly appreceated. thanks josh

Similar Messages

  • I have been backing up  since 2010 but my machine will only go as far back as feb 11 ... why is this? please help i need valueable info from 2010

    i have been backing up  since 2010 but my machine will only go as far back as feb 11 ... why is this? please help i need valueable info from 2010

    Welcome to the discussion area!
    When the Time Capsule disk starts to become full, Time Machine will automatically delete the oldest backups first to make room for new backups.
    For more details, I think you will get a faster and more informed response if you post in the TIme Machine forum for questions like this. We primarily handle configuration set up and networking questons about the Time Capsule as a hardware device on this forum, but it's possible that someone may see your post and respond from here as well.
    Please click the link below and then click the "Refine this list" 'button to see the Time Machine area.
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard?categ oryID=263

  • Help trying to list measures from cube.

    Hi all,
    I'm trying to list measures from a cube using BAPI_MDPROVIDER_GET_MEASURES, but the name of the measures (MES_NAM) I get seems to be coded, and I haven't been able to find how to convert it to "the usual" name.
    I must note that I don't know much about BW so accept my apologies if it seems that I don't know what I'm talking about ... because I don't ;).
    Thanks for any help you can provide.

    I couldn't resolve this, look here:
    What says below isn't right. sorry.
    Hi,
    In case anyone has a similar problem, what I was trying to do is get a list of cubes, get the queries associated with those cubes, get the characters and key figures associated with those queries, so I could upload a file to BW.
    My solution was to get the chars and keyfigs related to the query using BAPI_CUBE_GETDETAIL, that would give me the tecnical name of the char/keyfig and then made a RFC that calls RSAR_INFOOBJECTS_GET_TEXTS to get the description of the char/keyfig.
    I don't know if its the best way to do it, h*ll I don't know exactly what I'm doing...but as long as it works (for me)...:)
    Cheers
    Message was edited by: Andrés Acero

  • Plz help i need to build a flash gallery with thumbs

    plz help me i need to build a flash gallery with thumbs plz
    give me the code or the fla file ........ !

    You don't give a lot of information about your set-up but there are a couple ways to do this.
    You can run Open Directory on your OS X Server and bind that to your Active Directory forest. This will allow people to authenticate against your OD using their AD credentials. This will work (it's better/easier in 10.5 than 10.4) but will result in Kerberos ticket which you would need to integrate to your site's permissions. You might be able to use Service ACLs to only allow authenticated users to access a certain site or service and that would take care of the authentication and control for you - but would require a certain amount of server manipulation and ODAD interaction. From the tone of your question I'm guessing this is an answer beyond what you were looking for.
    Alternately you should be able to build a website that presents a dialogue and uses LDAP against the AD server. Almost all the examples of this are, of course, using MS specific tools and code like C# and .Net. But even to get this working would certainly programming (using PHP, Java or some other language) to handle the request and answer from the server and this will be beyond anything included in CS4. Depending on your resources maybe you could create the whole website except for the authentication and have someone code that for you. But it would need to be someone not from the MS world because they will probably want to use tools that are Windows specific.
    Lastly there is the web specific .htaccess method that you could use without programming, but as you anticipate it will require you to manage the file that has the name/password information in it and will not talk to AD for information. This is the easy and local way to do it because it cuts AD out of the picture, but that puts the burden of maintenance on you.
    I guess the answer is yes this is possible, but it is not easy or automatic.
    Good luck,
    =Tod

  • Help Creating an Antenna Pattern from Multiple Files

    Hello, I would like some suggestions on how to create a 3-D plot from mulitple data files. In my setup I measure a receive antenna using an HP 8510. The transmitter is stationary but the receive antenna is able to be positioned at different angles. For each angle we sweep the receive antenna in the azimuth axis. So for each azimuth sweep I generate a data file,  and each new sweep I roll the antenna in the phi direction. I would like some suggestions on how I would write an application where the user could select the multiple data files and then plot the data in a 3-D plot generating an antenna pattern or some call a volumetric plot.
    Thanks,
    joe

    Hi Joe,
        Attached are three vi's to get started with. AzElAntennaPattern generates a dipole antenna pattern (r = sin(theta)) in radius, elevation (theta), azimuth (phi) coordinates. It transforms the coordinates to Cartesian and puts every azimuth sweep into a new row in an array. This creates 3x 2D arrays, one for X, Y and Z, each row an azimuth sweep. These can then be plotted in a 3D parametric graph. Technically the parametric graph accepts spherical coordinates, but it won't draw axes or grids in spherical as far as I can tell. I'm sure it uses the normal spherical coordinates anyway, so best to transform to Cartesian yourself. DipoleWrite, generates azimuth sweep files and puts them into a folder you choose. Choose the folder by pressing the small folder icon before running it. AzElAntennaPatternFromFolder, shows how to read these files back in and plot them. If you post one of your files, I can help with a file reader.
    Good luck!
    Attachments:
    AzElAntennaPattern.vi ‏167 KB
    DipoleWrite.vi ‏15 KB
    AzElAntennaPatternFromFolder.vi ‏180 KB

  • I need help with motion control. I am programming in Visual Basic. I will need help with what parts I need to purchase from NI, along with help on the code.

    I am using a Papst servo motor and I need to know where to start and what to purchase to get this motor to spin. I am using visual basic and in my program I calculate the direction and RPM's needed from the motor. It will spin anywhere from 1 to 10000 RPM's. It seems rather easy, but I have no idea on how to spin the motor at the specific RPM, and stop it with a command stop in the program. Please help.

    We really should know a little more about your intended uses for this system, but assuming you want to do relatively simple (or even not so simple!) motion, you'll need a few components...
    A motion controller, such as the PCI-7342, can take your VB commands and turn them into the commands needed to "run" the motor. Next you'll need a drive, such as the MID-7342. This includes the servo amplifier that actually powers the motor. It also has connections to "pass through" the encoder signals from the motor back to the motion controller.
    The above-named pieces assume one or two axes of motion. You'll also need a cable to connect the two (can't remember the model right now). You can use MAX to configure the motion controller, and there are just a few VB calls you
    'll need to make using NI-Motion functions to define the motion and get it going.
    Hope this helps!

  • VBA needs to pull from multiple tables, how to code for best efficiency?

    I have one main table, and three other tables that exist in a one to many relationship off of the main table.
    I need data from all 3 tables for my calculation. I'll iteratively run through the recordsets of each of these tables for the record on the main table, to perform my calculation.
    Now I need to run this calculation for each record on the main table. I see two options:
    1. Query the three tables for relevant records, for each individual record on the master table. I suspect this approach would be computationally inefficient.
    2. Create additional logic within my calculation to limit the recordset movement to just the record at hand. I can no longer use end of field, or move first type properties/methods, so this will add a good bit of complexity to already complex code.
    I'll need to run this monthly for approx 3000-5000 records.

    Since you can't include multiple independent 1-many relationships in a single query, I only see two choices.
    You can open a recordset for each of the four tables sorted by the main table's primary key. Use an outer loop to move through the main table row by row. Within that loop you loop on each of the child tables using the condition While child.Fields("FK")
    = parent.Fields("PK").
    Another approach is to define a querydef for each of the child tables including a parameter for the foreign key value. Then within the outer loop you assign the parameter and open a recordset from each of the child querydefs. You're still querying the
    database 3 times for each iteration of the parent table, but I think it saves some time to be able to reuse the querydef instead of creating a new one each time.
    I think either approach should be fast enough for 3-5,000 records done monthly.
    Paul

  • Help,..Need some suggestions from organized iTunes users

    A couple of simple questions.
    1. I have 5000 songs. A total unorginised mess where many are not labeled completly or correctly ( missing album or named incorrectly with band and title in the name box or worse with a number preceeding the whole name ).
    All songs are listed under music Library in one big list.
    MY 1st QUESTION IS,
    what would be the best way todeal with this mess and orginze it
    2. I have songs and albums I have downloaded or songs from cd's I have in a folder that is not my main music folder.
    MY 2nd QUESTION IS,
    what the best way to get these in the itunes music folder and recognised by itunes.
    3. My 5 gig ipod is in the same mess, any advice on cleaning it up.
    Thanks for any help or suggestions

    The iTunes library refers to 2 things.
    It's all the music you see when you open iTunes and click on Library.
    It is also a file in iTunes folder, which contains and the song info, playlist, ratings, etc.
    Playlists are simply a list of songs in the library.
    If song is not displayed in iTunes when you select Library, it is not in iTunes.
    The iTunes music folder is not the iTunes library.
    The music in that folder should be in the library, but it is not the library itself.
    If you have songs on your computer and you cannot see them in the iTunes app, use File -> Add file {or folder} to library.
    Once you have all your music in iTunes, follow the stpes to consolidate. This copies everything which shows up when you select Library in iTunes to the location in iTunes prefs -> Advanced.
    Once this is done, select Library in iTunes.
    Everything you see here (and only what you see here), will be in the new folder in iTunes prefs -> Advanced.
    You can then delete all the music files in any other location on your computer.

  • Help for BI Content extraction from multiple datasources

    Hello,
    I am working on a new installation of BI having just come out of the BW310 and BW350 classes, so please be patient with me. :~)  I only have a development instance running, and for my first project, I'm working on the Cross Application Time Sheet.  I have the infocube set up for Time Sheet (OCATS_1), plus the other associated ICs (OCATS_C01, OCATS_C02, OCATS_MC1) and I am getting data from the appropriate datasources (0CA_TS, 0CA_TS_IS_1, 0CA_TS_IS_2). 
    The problem I am getting, is that the transformations from the datasource(s) into the DTP leaves out several fields which are found in the Employee datasource.  How would I go about combining the information from the employee datasource into the Time Sheet infocubes along with the timesheet data?
    Thanks. 
    (Points will be awarded, per usual)

    SRM doesn't use kind of "cockpit" LO-like in ECC.
    Overall picture:
    http://help.sap.com/saphelp_srm40/helpdata/en/b3/cb7b401c976d1de10000000a1550b0/content.htm
    If you setup data flows accordign Business Content of SRM:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3a/7aeb3cad744026e10000000a11405a/frameset.htm
    Then just perform an init load and schedule the deltas.

  • Dynamic Distribution Group Help filtering - Need to user CustomAttributes (multiple) and Title (multiple)

    Hello,
    I'm having trouble getting this dynamic group to populate.  Any idea what i'm doing wrong?  If I split it up by just running the customAttribute1 items, it populate; if I just run the Title items it populates; putting the 2 together results in
    nothing
    New-DynamicDistributionGroup -name "West-Test" -alias "WestTest" -RecipientFilter {(((CustomAttribute1 -like "021926") -or (CustomAttribute1 -like "021927") -or (CustomAttribute1 -like "021928") -or (CustomAttribute1
    -like "021930") -or (CustomAttribute1 -like "021938") -or (CustomAttribute1 -like "021939") -or (CustomAttribute1 -like "021940") -or (CustomAttribute1 -like "021941") -or (CustomAttribute1 -like "021942")
    -or (CustomAttribute1 -like "021943") -or (CustomAttribute1 -like "021944") -or (CustomAttribute1 -like "021945") -or (CustomAttribute1 -like "021946") -or (CustomAttribute1 -like "021947") -or (CustomAttribute1
    -like "021948")) -and ((title -like "S O Manager") -or (title -like "SO R Director") -or (title -like "Manager, A. Services")))} -RecipientContainer "hhmi.org/People"

    First off, you are using -like, but not allowing for a choice (for example
    CustomAttribute1 -like "021927" instead of CustomAttribute1 -like "021927*", where you would get all CusAttr1's where they start with 021927 - your current setting is no different than
    CustomAttribute1 -eq "021927").  If there is only one choice, -eq will work better, if that is your goal.
    That being said, have you tried working this with fewer CusAttr1 values, just to see if you can find a match?  Even if you just run the following:
    Get-Recipient -RecipientPreviewFilter { ((CustomAttribute1 -like "021926") -and ((title -like "S O Manager") -or (title -like "SO R Director") -or (title -like "Manager, A. Services"))) }
    Using this, you can easily iterate through your CusAttr1 values to see if you can find some matches.
    BTW, the same "like" vs "eq" holds for your title field, as well.  If they will exactly equal "S O Manager", use -eq, not -like.  Your filter will run faster.

  • HT2693 How to download pictures from multiple iPhones with the same Apple ID?

    I have multiple iPhones (e.g. iPhone 4S, iPhone 5) registered under the same Apple ID however i only manage to download the pictures in my iPhone 5 via iCloud.
    How do I retrieve the remaining photos that was uploaded to iCloud previously from my older iPhones with the same Apple ID?
    Pls help!!!

    Hi edristiew,
    Are the photos that you are referring to still in Photo Stream? Remember, Photo Stream has limits which are outlined in this article:
    iCloud: Photo Stream limits
    http://support.apple.com/kb/HT4858
    If the photos are still stored in Photo Stream, this resource may answer your questions about how to extract them (Mac or PC):
    iCloud: Photo Stream FAQ
    http://support.apple.com/kb/HT4486
    If the photos are no longer in Photo Stream, but are in your camera roll, you can import them to your computer:
    iOS: Importing personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/HT4083
    Cheers!
    Matt M.

  • Need advice for dispalying multiple rows with datatable.

    Hi All,
    We have to design a conference booking search form which contains nX48 table.
    n -> indicates the conference rooms and 48 are the time slots(30 mins gap).
    While booking a conference room user enteres from time and to-time and from and to dates.
    In our search form, user searches with in the range of dates and times.
    We give a option for user to view according to date wise or room wise.
    Now main prblm is that we are capturing from and to times but how do we represent in data table.
    out of 48 columns assume only 4 slots are booked i.e 1200 hrs to 1400 hrs. so we need to display an image in that columns and up on clicking on that cell we have to produce data regarding that booking.
    In our pojo we have to and from time variables , but how can we display in datatable..should have to take a 48 column pojo.., if so how can I get the data at intersection point?
    Please do help me...
    Regards,
    Kranthi Kiran

    You could certainily create a 48 or 96 column grid. I would assume a simple "bar" image would go into that grid. You can create a method that gets called to determine if the image is rendered or not. Use a stylesheet (inline style) to set the width of the grid.
    While making a table with 48 column definitions is somewhat messy it is certainly no harder than cut and paste. The messy part is how to implement the boolean getter (DI) call to determine if a cell image is rendered as this would require 48 or 96 unique method definitions (one for each time slot). If you are will to do this then the solution is straight forward with a table.
    As for clicking on the image cell that is not an issue and easily handled.
    You have not mentioned what component suite you want to use. May I recommend that you take a look at Apache Trinidad (MyFaces project) or Oracle's ADF offering.
    If not you could do this with two tag iterators (e.g. tr:iterator) but fussing with trying to make sure you get cell alignment might be hard to do since you would not have a "master" grid in which you would be rendering your data.
    Could also write your own component ... but suspect you don't want to go there.
    You will find that they provide a robust table implementation that also supports the concept of "details", sort of a drill down capability that you can add to see additional information associated with a summary line in a table.

  • HELP How to rescue data from a HD with only the Terminal utility working

    I can no longer access the hard disk on a 2008 unibody Mac Book after an failed OS upgrade (?). Running the original OS 10.5.5 from the grey CD-ROM that came with the device and using the "Terminal" utility, I find all data in their place and within the correct structure.
    I tried to make an image of the HD or to copy the files to the external disc using the Hard Disk utility, but all attempts have produced an "operation not possible" message. Target mode will not work, as the device has no firewire connection implemented.
    How can I access the files (I know they are there, I can see them...) and e. g. copy them to an external disc or rescue them with an other method?
    PLEASE HELP ME
    Thank you, Martin
    PS Please don't tell me that experienced users will always have backups of their files: It is my wife's device and that's exactly what I have been telling her for years. Still, it's my wife... 

    Click here and choose 10.5 from the menu for usage instructions. Installing the OS on an external drive is done the same way as doing it on the internal drive, but it needs to be formatted as Mac OS Extended (Journaled).
    (61589)

  • Need to boot from USB device with my Portege 7020ct

    hi!
    i need help!!!
    situation: me and my girlfriend go for a long trip on tuesday. we have to work, so we bought a second hand portege 7020ct.
    it has no cd or floppy drive. win98 is installed but without drivers for the modem. the infra-red can locate other computers, but is not able to connect.
    so the onliest thing i have is one usb slot.
    i want to install win2000 or at least put some data on the hard drive.
    so i need to use my external cd drive or a usb stick. the problem is, the system (usb slot) found the external drive and the usb sticks, but i need to install some drivers to get them ready! but how???? --> no internet, no floppy, no internal cd, no infra red....
    what can i do????
    i tried to get into the bios to find out, if it is possible to boot from the usb slot, to perhaps get the external drive runnin and then install win2000.
    but i can´t find out how to enter the bios!!!! ...but i´m not sure if this will work.
    how can i get into the bios?
    do anybody has an idea what i can do? how can i get drivers into the system?
    how can i get the external drive runnin or the usb sticks`??
    please! i need very quick help, cause tomorrow is my last day...
    thanks to everybody in advance,
    deko

    Hi Deko,
    Pressing the <esc> button on power up takes you to the BIOS settings.
    Installing the drivers could be difficult. I have a 7010CT and there's no option to boot from USB (just floppy - hard disk - cdrom - lan). I don't think Windows98 supports USB sticks without extra drivers. I upgraded from Windows98 to Windows2000 by using an external PCMCIA cdrom and starting the installer from Windows98. Maybe you could try a PCMCIA network card of try to find a floppy disk for the Portege.

  • How can I send data from multiple range with VBA API ?

    hello everyone,
    i have one worksheet , multiple range. With addin , we can specified the range to retrieve or submit.
    In smart view  for retreive, I have the API retrieverange so  I can do the same. But for submitting data, I only have the API "HypSubmitData" and it doesn't take any paramater like a rangebut only the sheet !
    So how do you manager to do it ? one worksheet per range ?
    thanks for answers

    11.1.2.5.400 added the capability to perform range submission, however I doubt that the vba is not updated with the function. So you might have to wait for a while, or you can create a code which copied the selected cells to a hidden worksheet and perform submit from that sheet. Keep in mind that when the use make the selection, you'll have to copy the pov too.
    Regards
    Celvin Kattookaran

Maybe you are looking for

  • How commercial account can be set up in App store ?

    We are company from Slovak republic, Europe and need to create commercial account in App store. We need to have: - official ducuments (bills, invoices) to put into our accounting evidence - proper indication of VAT on bills/invoices we receive I rece

  • IMac a little slow on start up

    my iMac is a little slow lately and that had never happened before. I am running OS X Yosemite  and I have 1.68 TB free of 2TB I do not think it should be slow. Slow when it has been sleeping and I come home and touch the pad and it takes a while for

  • Communication channel not listed in RWB

    Hi, I'm facing a strange problem. Working on File to IDOC scenario. Suddenly my communication channel has stoppped listing in RWB. It say 0 channel found. Initially it was not so and I was able to monitor my channel. Any help on this ? Vikas

  • Cleaning up edited photo files

    I have just joined the forum and reviewed 30 pages of topics without finding this covered, although I did learn a lot. After doing numerous edits to RAW files, which were saved a TIFF, I decided to use JPEG instead to conserve disk space. To make sur

  • WAAS Email Alerting

    Is there a way to set up e-mail alerting for when the central manager shows an alert.  For instance recently one of our appliances show that a power supply is bad and needs to be replaced.  I see in the central manager that there is a section for SMT