Actual time recording (computer performance problem?)

I'm a beginner.
I'm recording the output file in every second, but the time of output file is different from the actual time.
I'm wondering if this is due to the computer performance (450MHz, 128MB) or if vi program can be implemented. I attached the file I use. The problem comes up when I use a vi with 50 channel outputs, but doesn't come up if I reduce the channels to around 20.
Thank you.
Attachments:
LODS_MFC2.vi ‏460 KB

It sounds like you are certainly running into timing issues. I see that in your VI, you use AI Sample Channel to acquire data from a single channel everytime the loop iterates. This is not the best means to go about doing such. The reason being that each time the VI is called, it has to setup the operation, then perform the read, and then clear the operation. What you should be doing is setting up the operationg outside the loop, perform only reads in the while loop, and then clear the task after you are complete. LabVIEW gets shipped with several examples that behave just this way, you should look in the example finder for these.
Additionallly, if you read the help on AI Sample Channel.vi, it states it does a single, untimed measurement of a channel. Since
you posted with the title "actual time recording", I feel that timing might be of importance to you.
You never did mention what version of LabVIEW you have, or the hardware and drivers you are using, so I am leaving this post rather general. If you have some more questions after reading through this post and looking through some of the examples, post back to this discussion with more information, and I will try and help you out further.
Sincerely,
Jared A.

Similar Messages

  • How do i pause quick time recording ? having problem after installing maverick

    i have been having issue with quick time recording . after installing this Maverick i and no longer able to pause the Recording.
    nothing happens when i press the option key.
    done any one know the fix
    Thanks

    Ski Farm,
    I hope you are doing well today! The suggestion provided by altenbach is really good. Alternatively, you can also use a global variable and an event or case structure, to pause the execution of a VI. I have attached an example of a subVI, called by the mainVI, which displays the current iterative count of a while loop. Please let us know if you have any other questions. Have a great day!
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies
    Attachments:
    subVI_false.JPG ‏14 KB
    mainVI.JPG ‏26 KB
    subVI_true.JPG ‏15 KB

  • Single record insert performance problems

    Hi,
    we have on production environment a Java based application that makes aprox 40.000 single record Inserts per hour into a table.
    We ha traced the performance of this Insert and the medium time is 3ms, that is ok. Our Java architecture is based in Websphere Application Server and we access to Oracle 10g through a WAS datasource.
    But we have detected that 3 or 4 times a day, during aprox 30 seconds, the Java service is not able to make any insertion in that table. And suddenly it makes all the "queued inserts" in only 1 second. That "pause" in the insertion cause problems of navigation because is the top layer there is a web application.
    We are sure that is not a problem with the WAS or the Java code. We are sure that is a problem with the Oracle configuration, or some tunning action for this kind of applications that we don´t know. We first thought it could be a problem with a sequence field in the table. Also, a problem when occurs the change of the redo log. But we've checked it with our DBA and this is not the problem.
    Has anybody any idea of what could be the origin of this extrange behaviour?
    Thanks a lot in advance.
    Jose.

    There are a couple of things you'd need to look at to diagnose this - As Joe says it's not really a JDBC issue from what we know.
    I've seen issues with Oracle's automatic SGA resizing causing sporadic latency in OLTP systems. Another suspect would be log file sync wait events, which are associated with commits. Don't discount the impact of well meaning people using tools like TOAD to query the DB - they can sometimes cause more harm than good.
    Right now I'd suggest you run AWR at 10 minute intervals and compare reports from when you had your problem with a time when you didn't.

  • Record management performance problem

    Hi,
    We are implementing CRM 5.0 Case Management we have assigned a record model of around 700 nodes to a case type but the case performance on the portal was affected. It becomes very slow but when changed by another record model of few nodes the performance is much better.
    Is there a way to enhance the case performance if a large record model is assigned?
    Note: The performance in the back end is not affected by the size of the record model like the portal
    Regards
    Khaled Fahim

    Hello Marco,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • MS SQL Server 2008 performance problem

    We use TopLink 10.1.3.5 to connect to MS SQL Server 2008.
    What we are seeing is that when a query is being run by TopLink a lot of cursors open up and remain open. Our database CPU usage goes up and it affects the whole application.
    Our DBA took a look at it and said the database shows FETCH_APICURSOR* being used for select statements.
    Is there a way to tell TopLink not to use cursors for queries?
    Thanks.

    Can you pin point a particular TopLink query tied to the " FETCH_APICURSOR* " call in the app and post how it is being created?
    My guess is that the application is specifying the TopLink query object to return a cursor or stream and not closing it in all cases, or keeping them open for a long period - did you say they were leaking, or is it just that a large number are open at a time leading to performance problems?
    This streams+cursors are described in the TopLink docs here
    http://docs.oracle.com/cd/E21764_01/web.1111/b32441/qryadv.htm#CJGJBHGJ
    or the 10g docs here:
    http://sqltech.cl/doc/oas10gR3/web.1013/b13593/qryadv010.htm
    If this is the case, you might want to use a different strategy such as pagination instead of cursors, described here:
    http://docs.oracle.com/cd/E17904_01/web.1111/b32441/optimiz.htm#CHDIBGFE
    Best Regards,
    Chris

  • Performance problem with selecting records from BSEG and KONV

    Hi,
    I am having performance problem while  selecting records from BSEG and KONV table. As these two tables have large amount of data , they are taking lot of time . Can anyone help me in improving the performance . Thanks in advance .
    Regards,
    Prashant

    Hi,
    Some steps to improve performance
    SOME STEPS USED TO IMPROVE UR PERFORMANCE:
    1. Avoid using SELECT...ENDSELECT... construct and use SELECT ... INTO TABLE.
    2. Use WHERE clause in your SELECT statement to restrict the volume of data retrieved.
    3. Design your Query to Use as much index fields as possible from left to right in your WHERE statement
    4. Use FOR ALL ENTRIES in your SELECT statement to retrieve the matching records at one shot.
    5. Avoid using nested SELECT statement SELECT within LOOPs.
    6. Avoid using INTO CORRESPONDING FIELDS OF TABLE. Instead use INTO TABLE.
    7. Avoid using SELECT * and Select only the required fields from the table.
    8. Avoid nested loops when working with large internal tables.
    9. Use assign instead of into in LOOPs for table types with large work areas
    10. When in doubt call transaction SE30 and use the examples and check your code
    11. Whenever using READ TABLE use BINARY SEARCH addition to speed up the search. Be sure to sort the internal table before binary search. This is a general thumb rule but typically if you are sure that the data in internal table is less than 200 entries you need not do SORT and use BINARY SEARCH since this is an overhead in performance.
    12. Use "CHECK" instead of IF/ENDIF whenever possible.
    13. Use "CASE" instead of IF/ENDIF whenever possible.
    14. Use "MOVE" with individual variable/field moves instead of "MOVE-
    CORRESPONDING" creates more coding but is more effcient.

  • We have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc. from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when

    Hello All,
    we have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc.
    from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when we are trying to access the share folder with IP it asking for credentials i have type again and again
    correct credential but unable to access that. If i re-share the folder then we are access it but when we are restarted the system then same problem is occurring.
    I have checked IP,DNS,Gateway and more each & everything is well.
    Pls suggest us.
    Pankaj Kumar

    Hi,
    According to your description, my understanding is that the same shared folder can be accessed by name, but can’t be accessed be IP address and asks for credentials.
    Please try to enable the option below on the device which has shared folder:
    Besides, check the Advanced Shring settings of shared folder and confrim that if there is any limitation settings.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I'm using a late 2006 2.33GHz imac.I clean installed 10.6 from disc then updated to 10.7 from download.Now every time my computer goes into sleep it won't wake up.Anyone know how to cure this problem please??

    I'm using a late 2006 2.33GHz imac.
    I clean installed 10.6 from disc then updated to 10.7 from download.
    Now every time my computer goes into sleep it won't wake up.
    The only way it will restart is to pull the mains lead out of the imac, put it back and try until it will start.
    This only happened after reinstalling.  Only Apple OS was on the imac and so it must be an issue with the software I believe.....
    Anyone know how to cure this problem please?
    Thanks
    paul

    This isn't a fix, more a workaround I used when I had wake from sleep problems that lasted from some point in 10.6.x, through 10.7 and into 10.8 (got fixed for me in 10.8.2). It seems to be connected with Bluetooth failing to wake up properly:
    System Preferences>Energy Saver and set 'computer sleep' to 'never'.

  • Hi i am having a problem with itunes on this computer so i had to remove it and tryed to download it again and now every time the computer comes on i get a notification which says "the program cant start because MSVCR80.dll is missing from your computer

    hi i am having a problem with itunes on this computer every time the computer comes on i get a notification which says"the program cant start because MSVCR80.dll is missing from your computer,try reinstalling the program to fix this problem" but when i click on ok it just keeps popping up 4-5 time and then gone.and i cant dopwnload the itunes again.help

    You need to work through the user tip: https://discussions.apple.com/docs/DOC-6562

  • I am trying to do a full Time Machine Backup to a new external disk. The backup starts, and it says "Time remaining about 4 days." That seems like a very long time, but the real problem is that the computer "logs off" after a few hours, and the b.u. stops

    I am trying to do a full Time Machine Backup to a new external disk. The backup starts, and it says "Time remaining about 4 days." That seems like a very long time, but the real problem is that the computer "logs off" after a few hours, and the backup stops. The system preferences are set to "Never" for Computer sleep and Display sleep. The computer does not ordinarily log off automatically, but it has done this twice since I started the Time Machine backup.

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message. Clear the text field and scroll back in the log to that time. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them (command-C) to the Clipboard. Paste (command-V) into a reply to this message.
    If all you see are messages that contain the word "Starting," you didn't clear the search box.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • How do i change the time line in Au from time since recording start to the actual time?

    how do i change the time line in Au from time since recording start to the actual time? I have a recording that was started at 10:00 but obviously in Au it starts at 0:0:00. Basically i want to time shift this to 10:00:00

    In the Properties panel, modify the Start Time parameter.

  • Every time i turn on my macbook pro, it gives me the message: "Your computer was shut down last time because of a problem" even though it only happened once last week

    My computer crashed lasts week. And now, every time I turn on my computer, at the login screen it says that my computer shut down last time because of a problem, and gives me the option to restore my windows, i've tried both options, it still comes back.
    My computer is a macbook pro mid 2010 running OS X 10.9.1
    comment if you need any more information
    Thanks for the help!
    -Ethan

    First boot into Safe Mode, Mac OS X: Starting up in Safe Mode, and then reboot again normally.  The safe mode boot will take longer as it runs repair procedures during the boot.
    If that fixes the problem I'd also update the system to the latest 10.9.4 via the  OS X Mavericks 10.9.4 Update

  • How can i request the actual time code of digital video recorder, i am using RS232 interface for asking actual time code of digital video recording

    how can i request the actual time code of digital video recorder, i am using RS232 interface for asking actual time code of digital video recording

    If you have an RS-232 interface to the digital video recorder, it may be that you can send a command to the video recorder in order to get the time code sent back to your application - you would then read this as a string and then incorporate this data into your program.
    The best source of help will be any documentation you have relating to the serial (RS-232) interface with the digital video recorder. This documentation should have commands that you can send to the recorder and expected response strings that you should get back from the device. This task should be straightforward but can often be frustrating without documentation about the video recorder. This will not be something that you can "guess" - past experience in writing serial communication ap
    plications has shown that a good manual is your best friend.
    Failing this if you have any source code for example programs that have already been written to communicate with the recorder, you might be able to extract the relevant ASCII strings and use them within your application. This is true whether you are using LabVIEW or a text-based language.
    Jeremy

  • When I connect my iPad with usb to my mac the iPad gives me a "blinking" message asking to trust the computer.  Problem is it does not give me enough time to select yes.  What am I doing wrong?  Help!

    When I connect my iPad with usb to my mac the iPad gives me a "blinking" message asking to trust the computer.  Problem is it does not give me enough time to select yes.  What am I doing wrong?  Help!

    Everything that you sync to the iPad is done through iTunes or from downloading from the cloud if they are iTunes purchases or through iTunes Match, if subscribed.
    It is also not possible to transfer music or certain other files though Bluetooth between other iPhones or Android devices. You can transfer between iOS devices, pictures through devices that are Airdrop capable.

  • My key says "Error - key importing failed gpg: key 5D391D97 was created 55491 seconds in the future (time warp or clock problem)" The clock in the computer is f

    When I create a key and send it to the person I want to begin communicating with encryption, the other person gets this when importing the key: "Error - key importing failed
    gpg: key 5D391D97 was created 55491 seconds in the future (time warp or clock problem)"
    The clock is set properly. Can you assist me in solving this error? This happens in a PC computer running WIndows 7.
    Thank you
    Cecilia

    I created a different key and I have the same problem. I can send you the public key in case that helps solve the problem but you need to provide me with an email address because I cannot upload it here.
    Thank you for your assistance.
    Cecilia

Maybe you are looking for

  • Does the Mac Mini sport regular desktop processors or does it have mobile (notebook) versions?

    I'm planning on pirchasing a Mac mini, but due to the size and price, I can't help thinking there might have been a sacrafice on the CPU. So is the processor like the one in the iMac or like the one in the Macbook lineup.

  • Error when calling procedure from application proces

    I've installed the doclib packaged application on a fresh 10g install (with HTTP Server). everything works fine, except when I want to 'view' a document: You don't have permission to access /pls/apex/P******O.get_doc on this server Oracle-Application

  • How do I script a 3-up master

    Hi, Hope you can help. I am trying to create a three page masterSpread in indesign cs3. To do this I have used the masterSpreads.jsx script provided by Adobe and then simply added another page, which seems logical to me, but it does not work. If I cr

  • IPhoto won't import my iPhone 4 photos

    Hi everyone! I've been looking around, and none of the other related discussions have helped so far. I'm using a lovely new MacBook Pro retina, and I have an iPhone 4. When I connect my iPhone to the mac, it will only import my Camera Roll and not al

  • WWAN Option (43R9153): Installation, WLAN

    I bought the WWAN option for my T400 (2765-22G). Now I'm confused and have two questions: - When I install the WWAN option, I need to remove the already installed modul. It seems to be the WLAN modul.   Will I loose the WLAN connectivity? Or does the