How can I make graph waveform or file with two different values of DBL Dynamics excel?

As described in the question, I have two sources dbl from a load cell and linear actuator (from remote). I want to do a curve of load/displacement of the readings of the strength of the load cell and the readings of travel of the linear actuator. Load cell generates an analog signal that can be acquired by data acquisition and the actuator is delivered with a Board and a program of VI to control speed and measure the movement of the actuator at a sampling frequency of my choice. Is it possible that I can do a VI where he continues to collect data and build the chart I'm looking for?

I think I see where the confusion is.  Looks like your trip data do not come directly from a sensor (LVDT, etc.), but from the control software.  If this is the case, you're stuck sort with a timing of software, that will not sync at all.  Still not really sure what the entire Setup is - but if you do not have access to data of travel other than VI control that drives the actuator, you have limited options.  It depends on where these data comes from and how it is treated.  My initial comment assumed medium of moving a sensor in another Board (Non-OR).

You can absolutely use a shift register data (or the node property history given in the table of waveform - as someone else suggested) to save the data in the file.  Use the entry in the File.vi worksheet.  There are examples that show how to do this.

I would start by trying to start the process (movement and data acquisition) as close to simultaneously as possible, let them operate independently, but at the same time, then after you have some data you can see if they are synchornized well enough for your application.  If you put them both in the same loop with while avoiding (wait ms) you will get incoherently timed data of these two sets of data.  Better to use examples of hardware when clock you can.  If your test article moves very slowly, it may not matter how you do it.  If it does not quickly move, will be discussed as your data of force tip line upward with your data points in moving closer in time.

Good luck!

Kurt

Tags: NI Software

Similar Questions

  • How CAN I Make, hearing, CC, Edit, file, audio, (.) DTS)

    How CAN I Make, hearing, CC, Edit, file, audio, (.) DTS)

    Help, please. Thank you

    However, if it's any help you, hearing can open, save, and, consequently, change the .ac3 Dolby Digital format files.

    Otherwise, as Steve says:

    DTS store | DTS

    Over-codes DTS - HD - Minnetonka Audio Web Shop

  • How can I make the smaller pdf file size?

    How can I make the smaller pdf file size?

    Hi vickyb,.

    Reducing the size of PDF file requires Acrobat (one way is by choosing File > save as > PDF of reduced size). If you do not have Acrobat, you can try it free for 30 days. See www.adobe.com/products/acrobat.html for more information.

    Best,

    Sara

  • How can I make my Clock.swf file disappear?

    Hello

    How can I make my Clock.swf file disappear? The following code works fine for clips video, but throw an error when using the .swf files.

    Introduction_mc. Visible = false; > > > This code works very well

    Clock.swf.visible = false; > > > > Copy the following code generates an error (how to solve this problem?)

    Help, please.

    The simplest is to target the Loader object.

    l.Visible = false;

    or

    removeChild (l);

    the two will work.  And you can make it visible again if need to use the opposite of these commands.

  • How can I make this update, when I have two records (a primary key, no seq)

    How can I make this update in pl\sql
    Below is the table with data
    CREATE TABLE INSERT_TE
    ( 
    PIDM        VARCHAR2(8), 
    FORM_ID     VARCHAR2(2),
    TEACHER     VARCHAR2(30)
    )
    INSERT into INSERT_TE
    (
    PIDM,
    FORM_ID,
    TEACHER 
    )
    SELECT 
    '1106651', 
    'TE',
    'Teacher, Alber Howard' 
    from dual
    commit;
    INSERT into INSERT_TE
    (
    PIDM,
    FORM_ID,
    TEACHER 
    )
    SELECT 
    '1106651', 
    'TE',
    'Teacher, Alber2 ' 
    from dual
    commit;
    INSERT into INSERT_TE
    (
    PIDM,
    FORM_ID,
    TEACHER 
    )
    SELECT 
    '2321241', 
    'TE',
    'Teacher, Silly Billy ' 
    from dual
    Commit

    You're going to end with something like this: in a cursor...
    PIDM     FORM_ID     TEACHER
    1106651     TE     Teacher, Alber Howard
    1106651     TE     Teacher, Alber2 
    2321241     TE     Teacher, Silly Billy
    so I need to update a table

    If there is only one file like this 2321241 teacher YOU, Billy Silly
    no problem I'm
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC1'
    But if there's a PIDM (pk) with two records
    PIDM FORM_ID TEACHER
    1106651 TE Teacher, Alber Howard
    1106651 TE Teacher, Alber2 
    I need to make 2 updates (notice the rec1 sarchkl_admr_code AND for the firs and rec2 during the second
    The first record should update the table when the condition is sarchkl_admr_code = "REC1" and the second disc with the
    condition is sarchkl_admr_code = "REC2.
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC1'
    and
    UPDATE   saturn.sarchkl
             SET
             sarchkl_receive_date = SYSDATE,
             sarchkl_activity_date = SYSDATE,
             sarchkl_source = 'U',
             sarchkl_source_date = SYSDATE
             WHERE
              sarchkl_pidm = v_pidm3
              AND sarchkl_receive_date IS NULL
              AND sarchkl_term_code_entry = p_term
              AND sarchkl_admr_code = 'REC2'
    I do this in pl\sql, I don't have a sequence in the INSERT_TE table, how do I know that the first record in
    1106651 TE Teacher, Alber Howard
    1106651 TE Teacher, Alber2 
    updated a rec1 and the second updates when sarchkl_admr_code = "REC2."

    I guess I can create a sequence, but I'm inserting a table of a select statement, I get the error message
    ORA-02287: sequence number not allowed here, when I try to do the following:
     
     INSERT INTO SYTEACH
    ( 
    SYTEACH_PIDM,
    SYTEACH_ID,
    SYTEACH_TEACHER,
    SYTEACH_SEQ
    )
    SELECT   
          DISTINCT
          spriden_pidm, 
          sarchkl_admr_code, 
          szsform_form_id, 
          szsform_schl_off_type||', '||szsform_schl_off_firstname||' '||szsform_schl_off_lasttname teacher,
           SZSFORM_SEQ.NEXTVAL
            FROM   saturn_midd.szsform, saturn.spriden, saturn.sarchkl
           WHERE       spriden_ntyp_code = 'CAPP'
                   AND szsform_common_app_id = spriden_id
                   AND spriden_pidm = sarchkl_pidm
                   AND sarchkl_admr_code = 'REC1'
                   AND szsform_form_id = 'TE' 
     
    What is the simple way to make this update...

    Hello

    you said:

    >
    But if there's a PIDM (pk) with two records

    PIDM $FORM_ID TEACHER
    TE 1106651 teacher, Alber Howard
    1106651 TE, Alber2 Professor
    >

    Loc PKS are unique! (otherwise we don't call them pk)

    For your table, you can set a single like this:
    PIDM column + a sequence. (new heading):

    ALTER TABLE INSERT_TE ADD(TEACH_SEQ NUMBER)
    /
    
    UPDATE INSERT_TE x
       SET TEACH_SEQ =
              (SELECT n
               FROM   (SELECT ROWID rid,
                              ROW_NUMBER() OVER(PARTITION BY pidm ORDER BY TEACHER) n
                       FROM   INSERT_TE t) s
               WHERE  s.rid = x.ROWID)
    
    PIDM     FORM_ID     TEACHER     TEACH_SEQ
    1106651     TE     Teacher, Alber Howard      1
    1106651     TE     Teacher, Alber2       2
    2321241     TE     Teacher, Silly Billy      1
    

    I need to make 2 updates (notice the rec1 sarchkl_admr_code AND for the firs and rec2 during the second
    The first record should update the table when the condition is sarchkl_admr_code = "REC1" and the second record with the condition is sarchkl_admr_code = "REC2.
    >

    not normally.

    but you can do (now)

    select PIDM, FORM_ID, TEACHER, 'REC'||TEACH_SEQ TEACH_SEQ from INSERT_TE
    
    PIDM     FORM_ID     TEACHER     TEACH_SEQ
    1106651     TE     Teacher, Alber Howard     REC1
    1106651     TE     Teacher, Alber2      REC2
    2321241     TE     Teacher, Silly Billy      REC1
    

    and use the last column to update you...

    Published by: user11268895 on August 20, 2010 14:01

  • How can I make a video, quickly and with a max resolution?

    When I wll make a video, which takes an hour or more to complete. My question is, how can I do it fast? A final file or an overview. How can I save!

    The speed to make it depends on your project, the applied effects, the source of the layer, the output format film and used rendering engine. Since we don't know anything about your project or your system and your version of AE, it is impossible to tell if rendering time is normal. If you want to save a ram preview, then there is option for this in the composition menu providing you have set up the output correctly module.

  • How can HDR-AS100V - I associate video files with GPS without PlayMemories House data?

    Video files are saved to:

    \MP_ROOT\100ANV01

    and newspapers GPS is found in:

    \PRIVATE\SONY\GPS

    • How can I connect without using PlayMemories House?
    • Is there an API for databases to \AVF_INFO?
    • How PlayMemories calculates the speed without having the GPS-log information? and also how correct without going through the Altitude in the GPS-log? Does this mean that the Altitude is stored somewhere else?

    Yes, it seems fair to extract still images from the camera will keep the GPS coordinates. This assumes, of course, Traore, the GPS is locked on the satellite. It may take a few seconds to several minutes to reach the lock, so the first photos that you take may not be labeled. I assume that you run an interval picture-taking.

    I and others have posted here and in other forums that the GPS coordinates are not very accurate. They may, or may not, be specific to a single shot, but you can't rely on the accuracy of the coordinates. This also applies to the video shot with the AS-100v and AS - 30V. Results on the ground of myself (USA) and a user in Germany confirm that GPS coordinates are not nearly as accurate as it should.

    Here's a comparison side by side (images of Google Earth with Garmin vs AS-30V tracks), and it is an analysis using time tag data (again, Garmin vs Sony AS-30V).

  • How can I make windows shortcuts stop interfering with my games?

    All of a sudden shortcuts for Windows interfere with my game as when I hit F3 he evokes a search option that covers half my screen and pressing Alt + S opens the start menu.  How can I disable all those?

    Go to game options and change the Player control keys.

  • How can I make a text transparent marking with the courier in InDesign CC?

    How can I mark text with the courier and see things that are behind it (next layer...)

    Of course, it works in Version CS5.5.

    I havn't found a preference for this problem.

    THX 4 help

    drx_ander wrote:

    I'm going to think it was a missunderstanding. So I did the screenshots of the problem.

    No misunderstanding. Text highlighing was transferred to the operating system. There are no settings in the ID that will change the new behavior.

  • How can I create several, permanent tablets, each with a different page "home"?

    I would like to be able to open FireFox and have two tabs automatically opened. Each tab should have an independent start page. How can I do this?

    https://support.Mozilla.com/en-us/KB/how%20To%20set%20The%20home%20page#w_set-more-than-one-website-as-your-home-page

  • How can I create a new master page with a different set of pages for the menu bar?

    I want to create a new Master Page that could be used for a different set of pages with a different menu pointing to other pages...

    For example:

    Master A to include a menu for pages:

    Page 1, Page 2, Page 3,

    Master B to the guests for the pages menu:

    Page 1, Page 4, Page 5...

    Maybe I would also do Master C and D with a bar of menus different total...

    But how can I isolate the menu bar from the rest of the pages that I don't want it?

    Right click on this page that you want to isolate > menu goto option > exclude from the menu.

    Hope It could help.

  • How can I make folders containing media files in Vista act as normal when files displayed in Windows Explorer.

    Vista handles the media completely differently, and I hate it.  I want to deal with media files as normal files, so I can see, size, date, etc. All previous versions were very good.

    Here's how to change the default template for a folder: http://www.vistax64.com/tutorials/70819-windows-explorer-folder-view-settings.html.  Default behavior is to select the model based on the first type of file placed in the folder (you must choose something).  Vista sets the folder type template according to what are the types of files in the window and the settings display window Explorer. This will show how to reset the display settings for the Windows File Explorer, disable Automatic folder Type Discovery (which is I think what you want)and increase the folder display the cache to make Vista do not forget the display settings, the folder type template, the size or the position of a specific window for when it was still closed to the location of specific path.

    It does not work with the Sub record under, Open with, open in a new tab (Internet Explorer), etc... dialog windows of type through the good File menu bar item. These don't seem to be able to have their size or their position to recall. For the latter, you can use the free program AutoSizer to resize them.

    Here is another article on how to modify the columns in Windows Explorer and sort in Vista: http://www.vistax64.com/tutorials/108665-column-customize.html.  This will show you how Add, Remove, move, change the widthand change the sort order of the columns in Windows Explorer in the way that you want.

    Here is another article on how to change the display of the default folders in Vista (but she argues, it is not a perfect solution and can revert to the previous behavior is not as good as the two prior links provided: http://news.cnet.com/8301-13880_3-10019957-68.html.)

    I hope this helps in your situation.

    Good luck!

    Lorien - a - MCSE/MCSA/network + / A +.

  • How can I make my AVCHD mov. files of work first pro?

    I used the Panasonic HDC-SD60 for a short film for the work.  This has on about 40 clamps with about 3 hours of footage however when I import files .mov from the audio media browser seems fine but the film is in a kind of slow-mo and out of sync. I want to change and make the post production using Adobe pro and AfterEffects first. However, the film seems to work in final cut X. There is no lag with playback on quicktime either. What is this project? I read on variable frame rates, it is seems more common among iPhones and tablets? Is this something that the panasonic do as well? Is there a solution? Or should I jump ship and settle for a somewhat more limited features of Final Cut?

    Copy the card hard disk. Do not use iphoto or lightroom, but ingest directly in first via the media browser.

    See how it will work.

  • How can I make my finished edited file not too zoomed in?

    I work at a dentist as dental educational videos, I was recommended to adobe Premiere pro! But now I've got my head around how to use it and most of my videos edited have been coded I find that the modified version has been expanded in an equitable manner that makes my videos look blurry and too close-up. I can't really see how to solve this problem, but all it; p would be widely accepted as I am in a block of total mind!

    Thank you Jay

    Jay - Jay,

    When you make new project, you set the global settings for the entire project. From CS4, your next step may be to put in place the first sequence. With CS4, former global project settings were alleviated, that one can have (chronology) sequence settings that differ from each other. With CS5, there are two choices: this first sequence, choose a preset that corresponds to the sequence of 100%, even if they need to use the Preset Desktop, which allows for most settings to customize, OR we can choose to NOT set up this first sequence of configuration. Instead, they can import their sequences and just drag one of those to the new icon at the bottom of the project Panel, allow PrPro to create a new sequence, which corresponds to 100%. With your images, this is the method I would choose. That you will get a predefined sequence, which corresponds to your images, so no zoom-in images or black bands around it.

    Good luck

    Hunt

  • How can I associate a local Pdf file with a button in Flash?

    Hello everyone,

    This is my first question in this case and hope that my English is not so bad...

    I am currently working on a Flash project for a client and this is my problem,

    I have to use a button that opens an external pdf file. But I can't find any solution :/
    I already tried to use fscommand with "exec" and also getURL

    Here is my code:

    PDF_Button_001.addEventListener (MouseEvent.Click, PDF_Button_001_onRelease);

    function PDF_Button_001_onRelease(e:Event)

    {

    getURL ("file://PDFs/PDF_001.pdf", "_blank")

    }

    Any help please :)

    Security sandbox default Flash to block this kind of thing. This has made many people very angry and been widely regarded as a bad move. To make this work you must manually add the local drive letter to the list of trusted locations on each computer that is running Flash content.

    When it works, I would advise against using getURL. Call a JavaScript function instead allows much more control over the way in which the PDF document is opened.

Maybe you are looking for

  • Satellite P300-28th does not start - windows does not load

    I bought Toshiba P300 28th last week. I spent Vista business successfully in Windows XP Professional with provided Toshiba DVD. Update Windows with Windows Update. After 3 days, laptop turns off suddenly, and because Windows does not start, it in fac

  • 15. 1027 ca: 15-1027 ca expandable ram?

    Is the expandable ram on this laptop? Has 4 GB now.

  • upgrade HP Pavilion dv6t - b 6, 00

    Hi all Honestly, I have very little knowledge on the computer, so please excuse me if my questions may sound stupid to you.  I am looking for a laptop for the end of the game, and decided instead to buy a new, hopefully update my only current. I want

  • why I can, t play my casino tournaments?

    http://tournament

  • Can't reinstall windows vista

    I can start my computer but nothing happens, the screen remains black all the time until the computer turns off it self. When I try to clean reinstall my computer a diagnostic tool memory never end and then turns it self after a while. Can someone pl