How do I assign a timer to the DAQ module so that it counts the time from the start of the collection?

Hi Everybody,
I'm new to LabVIEW and need some help!
I have setup a system that acquires the data from 4 thermocouples. I have then split the data to provide 4 temperature versus time graphs. The temperature fluctuates up and down but the time values at the bottom do not change? What I would like is for the time values to represent the amount of time the data has been collected for!
I have attached my program, so please give me any ideas! Also any other improvements that you feel would make it better, please dont be shy!
Alex
Attachments:
Thermocouple Temperatures21.vi ‏365 KB

The time is not increasing/changing because you have "Ignore Timestamp" Checked  (right click on a graph to uncheck)  This should fix the problem
Kenny

Similar Messages

  • How do I add a "PDF printer"  print to PDF so that I can create PDFs from any source I can print ?

    How do I add a "PDF printer"  print to PDF so that I can create PDFs from any source I can print ?
    I am using ADOBE Reader X Thanks

    Pat;  using Windows you can create a "PDF printer" which is a virtual device that you can select when you want to create an Adobe PDF file from anything you normally would print to hardcopy.  As an example if I were on a webpage article that spanned two or three pages so a screen capture wouldn't really work, if I had a "Adobe PDF Printer" I would select that as my default printer and then print the webpage article.  Instead of the webpage article going to a real printer and producing hardcopy, the Adobe PDF printer would ask me for a file name and then "print" the file by creating an Adobe PDF file.  Does that help ?  Best regards,  Doug

  • How do you assign a value to the APEX field APP_USER

    Application Express 4.0.2.00.07
    Hi
    Is there a special function/procedure to assign a value to the APP_USER field
    or a simple APP_USER := :P1_LOGIN_NAME would do
    Z

    Hello Zac,
    >> or a simple APP_USER := :P1_LOGIN_NAME would do
    The APEX engine is already doing it for you after a successful login – setting the value of APP_USER as the user login name. You can use it as a substitution string or with the bind variable notation (:APP_USER).
    Regards,
    Arie.
    ♦ Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    ♦ Author of Oracle Application Express 3.2 – The Essentials and More

  • How will you assign Run time variables in Management Cockpit

    Hello Gentlemen,
       Can Someone tell me the how will you create runtime variables in the management cockpit. Does BW Variables any where related to this. I tried creating and use them it is not displaying anything in the cockpit presentation. It is literally blank without any bars in the graph
    Thanks
    Dev

    Hi Sindhu: Are you using the Informatica Cloud Mapping Designer? Currently the Mapping Designer does not support embedding parameters within expressions, it only supports parameterizing entire expressions.
     Cheers,Josh

  • How do I obtain a time from a server, when I have no process running on it?

    I have a program that is running on many machines.
    They all write files to a shared DIR on a server.
    I need to obtain a time that is constant, as the only constistant thinh I know they can all see is the server, I'd like them to beable to get the time from the server.
    This way I can keep my locks (so only 1 pc can write at any one time) consistant
    How do I do this?
    (I have no process on the server)
    I'm looking for a call that'll tell me the time on a computer, in millis or somthing else. (I can then use Calendar.setTimeInMillis(long millis) )
    But I don't know where to look....

    This way I can keep my locks (so only 1 pc canwrite at any one time) consistant
    I doubt having something depending on times being
    synchronized is the right approach for this. You
    should instead actually lock things, such as by using
    a Mutex or actually locking files/records/bytes.it is unwise to actually lock a file as if there is an error, the file stays locked,. So you still need a time to work out how long it has been locked incase there has been a problem and it has gone 'stale'.
    If 'stale' the locked ness should be able to be overridden.
    But it is poor to use client time, as they all may be different.
    I'd like to use the time on the NFS, or whatever has the shared DIR. It looks from what you're saying is that I can't find this out in Java.
    :o(

  • How to check CRL validity time from client?

    Hello,
    I have one Windows Server 2003 R2 working as Standalone CA. It provides certificate for one of our internal IIS website.
    I have decreased CRL publish interval from 1 week -> 1 day and Published new CRL.
    However, our webserver is propably not aware of new CRL publishing interval changed on CA, because I suppose webserver has cached CRL locally.
    My question is, how to check cached CRL validity time from our webserver? Its running Windows Server 2003 R2.
    I attempted to run following command on webserver with 0 results: certutil -urlcache crl

    You basically have to wait it out when you are running an 11 year old operating system
    The certutil -urlcache CRL command was introduced in Windows Server 2008/Vista.
    The deletion/inspection of cached CRL data was not really an option in Server 2003
    Brian

  • How to load date and time from text file to oracle table through sqlloader

    hi friends
    i need you to show me what i miss to load date and time from text file to oracle table through sqlloader
    this is my data in this path (c:\external\my_data.txt)
    7369,SMITH,17-NOV-81,09:14:04,CLERK,20
    7499,ALLEN,01-MAY-81,17:06:08,SALESMAN,30
    7521,WARD,09-JUN-81,17:06:30,SALESMAN,30
    7566,JONES,02-APR-81,09:24:10,MANAGER,20
    7654,MARTIN,28-SEP-81,17:24:10,SALESMAN,30my table in database emp2
    create table emp2 (empno number,
                      ename varchar2(20),
                      hiredate date,
                      etime date,
                      ejob varchar2(20),
                      deptno number);the control file code in this path (c:\external\ctrl.ctl)
    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime, ejob, deptno)this is the error :
    C:\>sqlldr scott/tiger control=C:\external\ctrl.ctl
    SQL*Loader: Release 10.2.0.1.0 - Production on Mon May 31 09:45:10 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 5
    C:\>any help i greatly appreciated
    thanks
    Edited by: user10947262 on May 31, 2010 9:47 AM

    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime, ejob, deptno)Try
    load data
    infile 'C:\external\my_data.txt'
    into table emp2
    fields terminated by ','
    (empno, ename, hiredate, etime "to_date(:etime,'hh24:mi:ss')", ejob, deptno)
    this is the error :
    C:\>sqlldr scott/tiger control=C:\external\ctrl.ctl
    SQL*Loader: Release 10.2.0.1.0 - Production on Mon May 31 09:45:10 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Commit point reached - logical record count 5
    C:\>
    That's not an error, you can see errors within log and bad files.

  • Calculate End Time from a Start Time and Minutes Allocated

    Hello,
    I have a meeting form which needs to have the finish time calculated from a start time and allocated time (in minutes).
    The allocated time is a text field with the default of "00:00".  The user can then enter the number of minutes for the agenda item to take.  eg 00:20 would be 20 minutes.
    The start time is a date/time calculated field which shows the current time after the allocated time has been entered. The formcalc script is :
    form1.ActionsHeaderFrame.ActionsStartTime.rawValue
    = num2time(Time(), TimeFmt(1))
    The Finish Time field is a calculated date/time field to add up the start time and allocated minutes.
    The formcalc script is:
    var Min1 = ActionsTime.rawValue
    var Start1 = Time2Num(ActionsStartTime.formattedValue, "h:MM A")
    form1.ActionsHeaderFrame.ActionsEndTime.rawValue = Min1 + Start1
    The end time is showing as a number, and I need help in converting to a time.
    An example is as follows:
    If the text field for allocated time as 00:20  and the start time date field shows 4:23 PM the calculated End time field is showing 22980001.
    Any advice or assistance with this script would be most appreciated.

    Thank you very much for your assistance.
    I have changed the allocated time field (ActionsTime) to a binding time field.
    In the End Time Field (ActionsEndTime) I have changed the formcalc function as follows:
    var Min1 = Time2Num(ActionsTime.formattedValue, "HH:MM")
    var Start1 = Time2Num(ActionsStartTime.formattedValue, "h:MM A")
    $ = Num2Time((Start1 + Min1), "H:MM A")
    The result with user input:
    Allocated time field input of 00:10 which is equal to (10 minutes)
    Start time field 10:41 AM
    End time Field result shows 23:51 PM
    Can you please advise where the formula needs to be revised to show the correct end time? 
    Thank you

  • How does one assign change bars to the contents of an anchored frame?

    Assigning change bars to text in FrameMaker 10 appears to give inconsistent results. Sometimes I can select the contents of an anchored frame and assign a change bar to it. Other times, only the marker is assigned a change bar and not the contents of the anchored frame.
    Also, sometimes I can select a table and assign a continuous change bar to it. Other times, a separate change bar is assigned to individual rows of the table.
    Are there any workarounds for this inconsistency?

    .

  • How can I assign a function to the on/off button on my imac?

    The on/off button on my imac used to turn the computer off. After a re-install, now the button just turns the computer to sleep mode. I don't remember how I had reassigned the function to the on/off-button on my imac. Any solutions? Thank you very much!

    Hello,
    Try System Preferences>Energy Saver>Options tab, uncheck Allow power button to sleep computer.
    Some possible other options...
    Control-Eject
    The dialog box "Are you sure you want to shut down your computer now?" appears with options to Restart, Sleep, Cancel or Shut Down. After the dialog appears, press the R key to Restart, press the S key to Sleep, press the Esc key to Cancel, or press the Return key to Shut Down.
    Control-Command-Eject
    Quits all applications (after giving you a chance to save changes to open documents) and restarts the computer.
    Control-Option-Command-Eject
    Quits all applications (after giving you a chance to save changes to open documents) and shuts the computer down.
    Command-Option-Eject
    Puts the computer to sleep.
    Shift-Control-Eject
    Puts all displays to sleep.
    Power button (if the computer is not responding)
    Press and hold the power button on the computer for six seconds to shut down the computer.
    http://support.apple.com/kb/ht2448

  • How do I sync travel time from iCal to calendar on an iOS device?

    Hi, I really like the feature travel time in iCal. Unfortunale it only works great on the Mac. Therefor I only get the correct time when to leave when I am at home.
    I have an example:
    I made an apointment that is 2 hours and 3 minutes travel time away on my iMac. This is actually transferred to my iPhone correctly.
    I also added an apointment with a lication in the same city. On the iMac it shows me that I will need 8 minutes from the first meeting to the second apointment and that it will remind me in time to leave. Everything seems fine. But when I look in calendar on my iPhone it will remind me 1 hour and 8 minutes before the meeting starts. That does not make any sense.
    I thought that maybe iOS calendar adds the usual time set to remind me and adds the driving time. This is not the case since the usuall time is set to two hours. On the iMac the usuall time to remember me is set to one hour. It is probbably coming from here that it adds the hour but it does not make sense.
    Does anynbody know how to use the travel time funktion properly for all devices?
    I am also lokking for a way to set the reminder to travel time plus X minutes. It would make sence to get reminded when to get ready and not when you sit at your desk and are actually supposed to get out of the house...

    Ok, I found the answer.
    iCal will push the travel time plus the standard reminder time to the iOS device. So I set the standard remeinder to 10 minutes and I know whenever I am reminded that I have 10 minutes to get going. We can only hope that Apple will work some kinks out of this feature and we will be able to set a standard reminder for all appointments with travel time like "Leave in 30 minutes" to finish up what your doing or wrap up a meeting and then "leave in 5 minutes" to really get going. If you have the same issue write to apple.com/feedback. Maybe they will work on it if the get more feedbacks...

  • Hi everyone .Can someone tell me how to change my calendar times from pacific time zone to australian western time permanently,it keeps reverting back to pacific

    Hi everyone Can someone tell me how I can reset my icloud calender  from pacific time zone to australian western ,it keeps reverting back to pacific all the time
    cheers 

    Settings>General>International>Region Format

  • How to save record date/time from camcorder as subtitle or text overlay

    DV camcorders record information on the tape with the date and time when each frame was recorded. How can I save this information so that it ends up as a subtitle on the DVD or as an overlay on the video? I don't want to lose this information. I would think many people want to remember when they took pictures of their kids to they can figure out how old they were. I haven't found a way to do it. Would never have believed it would be so hard.
    iMovie uses this information to split up clips. You can also view the date and time when getting information about a clip, but it ends up being lost when creating a movie or DVD.
    I've suggested this as an enhancement to iLife, but I doubt they will implement it.

    I've suggested this as an enhancement to iLife, but I doubt they will implement it.
    I asked two 'makers' of plug-ins, Bruce from geethree.com and Christian from imovieplugins.com: both confirmed, the info IS inside the dv-streams you import from your camera (select clip, hit Apple-I ...), but it is actually impossible to 'program' with this info.. (they spoke of a missing API.. me no programmer, ??? )
    so, only way: read out info manually and type timestamp in some nice 'title' effect...
    ok, there's a 'hard way': set camcorder to display timestamp while playback and re-record to a second camcorder via analogue-connection... no, I prefer titles ;-))

  • P2 gen.spool; how to call it several times from P1 in Job and look spools ?

    Hi
    I have a Program 2  wich generates a report (list). If i create a Job (SM36) with this Program 2, the Job generates the corresponding spool.
    I have other Program 1 wich call several times the Program 2, but if i create a Job with this Program 1, the Job does not generates anything spool.
    PROGRAM 1
       LOOP AT  itab.
           SUBMIT  PROGRAM2
                  USING SELECTION-SET  vari
                  WITH   p_werks     =  itab-werks
                  AND RETURN.
       ENDLOOP.
    I hope to see in the Program 1 Job all the resulting spools (reports) for each Program 2 execution , but it does generates anything, the executions are realized, but the spool are not generated in the Job.
    Does somebody knows how can i achieve this, how to create a Job for a program wich call anhoter program wich generates a report, and see the reports in spool ?
    Regards
    Frank

    Hi,
    Check this example from the standard sap help..
    Output is to the SAP spool database with the specified parameters. The print parameters are passed by the field string params which must have the structure of PRI_PARAMS. The field string can be filled and modified with the function module GET_PRINT_PARAMETERS. The specification arparams with ARCHIVE PARAMETERS must have the structure of ARC_PARAMS. This parameter should only be processed with the function module GET_PRINT_PARAMETERS. Before output to the spool, you normally see a screen where you can enter and/or modify the spool parameters. However, you can suppress this screen with the following statement
    DATA: PARAMS LIKE PRI_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LT50'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = ' '
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Thanks,
    Naren

  • How to get query response time from ST03 via a script ?

    Hello People,
    I am trying to get average query response time for BW queries with a script (for monitoring/historisation).
    I know that this data can be found manually in ST03n in the "BI workload'.
    However, I don't know how to get this stat from a script.
    My idea is to run a SQL query to get this information, here is the state of my query :
    select count(*) from sapbw.rsddstat_olap
    where calday = 20140401
    and (eventid = 3100 or eventid = 3010)
    and steptp = 'BEX3'
    The problem is that this query is not returning the same number of navigations as the number shown in ST03n.
    Can you help me to set the correct filters to get the same number of navigation as in ST03n ?
    Regards.

    Hi Experts,
    Do you have ideas for this SQL query ?
    Regards.

Maybe you are looking for

  • Nephew used bogus email account(used valid credit card)

    I am trying to help my Nephew to regain his previous purchases in iTunes. When he received his iPod Touch last year, a friend helped him setup his account using a bogus email address. However, he did use a valid credit card and was able to purchase m

  • Top of words cut off in MSword docs.

    In word docs, the top of the words are cut off. This does not happen in Quickbooks invoices.  I have cleaned & aligned cartridges, cleaned paper tray. Any suggestions

  • How to install the Runtime Repository for the first time

    Please let me know if I am correct... We need to run the OWB Runtime Assistant Tool from the database server where we are to install the Runtime Repository and also the user with which it needs to be created should have the SYSDBA privileges. We run

  • Idoc segment to idocs

    Hello all, I am working on idoc to idoc scenario, i have to map a segment to idoc, exact requirement is " If there are 10  "E1P12" segments in the inbound IDOC then we need to create 10 outbound Delins IDOCs, each with 1 E1EDP10 segment. Can anyone p

  • List of MenuUID's?

    Hi, Is there somewhere I can get a list of MenuUID's?  I did a search in the SDK but couldn't see a list anywhere. Thanks, Michael