Can VI Logger full version collect slower than 10 Hz?

I am using Logger Lite to collect data over prolonged periods (weeks to months) and would be happy with data collection rates of several seconds to several minutes between points.  Logger Lite will not allow collection slower than 10 hz.  The product sheet for Logger Full just says it supprts "low-speed and high-speed" logging.  What does this mean?  Does this mean that I can collect slower than 10 Hz?  Thanks...

Hi!
I have been looking into your issue, and I imagine I understand why you would want to do this.  You must be getting hundreds of results in a row that obtains the same value.  In looking into what these "low-speed and high-speed" logging rates would be, I have found that they again range between 10 Hz and 60 Hz.  Therefore, for your application it doesn't seem that VI logger is the right solution for you.  I would recommend looking into some of our other solutions.  For instance, if you were to use a version of LabVIEW, you would be able to create an application that could obtain values at most any rate you desired.  Also, SignalExpress is another method that should have much more control than VI Logger. 
I hope this information has been helpful.  I would start by checking out the following product pages, and going from there.
LabVIEW Comparison
SignalExpress
Regards,
Jason W.
National Instruments
Applications Engineer

Similar Messages

  • Is there a way to find the serial number in these files so that I can reinstall the full version?

    I had to restore from backup to a new hard drive, and only have part of my Adobe Photoshop installation. Is there a way to find the serial number in these files so that I can reinstall the full version?  I have only part of the documentation so this is the best way I see to get the full version back.

    Hello brad,
    you did purchase your product from these firms like Amazon, so you didn't get a serial number, only a code with which you can request a serial number from Adobe. Please have a look at http://helpx.adobe.com/x-productkb/global/find-serial-number.html. (Start here: How did you purchase your product?)
    The following part, so I just see at least, ceased to exist on my Adobe website, everything takes place in the link from above. I leave it as an info yet, it might still fit for you. For this purpose, please click your way through to your Adobe Store and find the button "Get Serial Number". Fill in the form and after a while you will get the real serial number.
    Additionally you should have a look at Adobe's database, to see what's stored/saved about your accounts. Here you will find general infos about your Adobe Account.
    On the other hand, if necessary and for further questions click through http://helpx.adobe.com/contact.html and if "open" please use the chat, I for may part had the best experiences. I quote from Adobe's employee Preran: The chat button is activated as soon as there is an agent available to help.
    Hans-Günter

  • Where can I download full version of photoshop i.e. iso or exe file from Adobe?

    Where can I download full version of photoshop i.e. iso or exe file from Adobe?
    I am planning to install it on multiple PC and I don't want to download it everytime
    Thanks

    you can only activate your adobe single user license products on (at max) two computers concurrently.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Can I force full garbage collection?

    Hi, my program is memory bound , as users load more files more memory is required , if the user decides to load a very large number of files they will eventually run out of memory. So I am trying to detect when there is less 15% of heap memory left, then force garbage collection and if it cant free up more than 15% of the heap I will stop the user from loading any more files. But the problem is though I call System.gc() to try and force a full garbage collect it rarely
    retrieve enough memory to get below the 15% limit. But using the Yourkit Profiler I can select the Force GarbageCollection option and this always manages to free up more memory to get the figure under the 15% limit. in support of this I found that sometimes my program stop me loading more files when there is still quite a bit available.
    So my questions are.
    1. I know System.gc() is only hint to garbage collect, but the docs imply it only replys after the garbage collection (if any) has been done, is this right or do I have to wait.
    2. Is there any way to Force complete Garbage Collectionas profiler appears to do.
    3. is there a VM option I could set instead to force the JVM to completely garbage collect at say 83% so that if I then polled that 85% of heap was being used I would know that it really was, and I wouldnt need to bother trying to garbage collect further. (Im using Suns 1.6. JVM on Windows and Linux, and Apples 1.5 or 1.6 JVM on Macs)
    public static void checkMemoryWhilstLoadingFiles() throws LowMemoryException
            MemoryUsage mu = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
            //No max defined future proofing
            if(mu.getMax()==-1)
                return;
            if (mu.getUsed() > (mu.getMax()  *  0.85f))
                MainWindow.logger.warning("Memory low:" + mu);
                System.gc();
                MainWindow.logger.warning("Memory low gc1:" + ManagementFactory.getMemoryMXBean().getHeapMemoryUsage());
                System.gc();
                MainWindow.logger.warning("Memory low gc2:" + ManagementFactory.getMemoryMXBean().getHeapMemoryUsage());
                System.gc();
                MainWindow.logger.warning("Memory low gc3:" + ManagementFactory.getMemoryMXBean().getHeapMemoryUsage());
                mu = ManagementFactory.getMemoryMXBean().getHeapMemoryUsage();
                if (mu.getUsed()  > (mu.getMax()  *  0.85f))
                    MainWindow.logger.severe("Memory too low:" + mu);
                    throw new LowMemoryException("Running out of memory:"+mu.getUsed());
                else
                     MainWindow.logger.warning("Memory usage reduced to:" + mu);   
        }thanks for any help Paul
    Edited by: paultaylor on 27-Jun-2008 11:10

    On all of the current Sun HotSpot JVM's, calling System.gc() will cause a full compacting collection. Unless you have -XX:+DisableExplicitGC on your command line, in which case the call is a noop. Or if you are running the mostly-concurrent collector (-XX:+UseConcMarkSweepGC) and have the -XX:+ExplicitGCInvokesConcurrent flag on your command line, in which case calling System.gc() will start a concurrent collection (and the calling thread will block until the cycle is finished).
    But calling System.gc() isn't enough to recover all the space that might be recovered. For example, System.gc() will identify objects that are unreferenced but need to have their finalize() methods called before their space becomes available again. So one call to System.gc() won't recover their space. Those finalize() methods need some cycles to run in, so back-to-back (or back-to-back-to-back :-) calls to System.gc() won't help. If you use a lot of finalize() methods, you should leave a lot of time for the finalize() methods to run between the calls to System.gc(). (Better would be to convert your code to use WeakReferences and run your own reference processing queues, and then you could tell when you were done processing references. But that's real work.) Some people try calling System.runFinalization() and wait for that to return, but that has at least two failure modes (details left to the reader).
    In addition, there are details like: if there is still 15% of the heap free, then we won't aggressively clear SoftReferences when you call System.gc(). We might if you waited until the heap was full and we collected it on our own, since we know how much free space there will be after a collection at the point where we are choosing which SoftReferences to clear, and use that to decide how aggressively to clear SoftReferences.
    There is no method to force the collector to do a compacting collection at, say 85% full. There is an option to have the mostly-concurrent collector start a collection cycle that way. But there's no way to find out if a collection cycle is running.
    You are skating on the edge of the qualities of service offered by the different collectors in the various JVM's available. That weakens your ability to "write once, run anywhere".

  • Can't play full versions of my songs on itunes any more!

    I want to play the tunes I have purchased but only the preview versions of about one minute long will play. Can't get to play the full version of any of my songs! Not used itunes for a while but I do have the latest version. In 'help' it said: select an item and click the play button. That's what I'm doing but only get a small clip of each song! What am I doing wrong?! Please help!

    I think that you will need to clarify a few things before we can sort this, but first things first:
    spoolman17 wrote:
    I paid to back up all of my music
    iTunes Match is not a backup service. Keep a local backup.
    Turning to your problems can you clarify these points and I'll see if I can help further.
    Can you see the files that were uploaded from your work computer on your home PC?
    You say that 200+ songs were uploaded from your work computer. Were these the only songs on the computer, or did some not upload?
    Are you saying that you had about 200 songs on your work computer before turning on Match, and the library still only shows those songs?
    If the answer to the last question is yes, the obvious next question is, are you sure you used the same ID on both computers? You haven't signed up twice with different ID's have you?

  • Where can I find (full version) AirPort Utility v5.1?

    I would like to do a fresh full install of the AirPort Utility v5.1 for Windows on a new computer.
    I have downloaded the Updater version from http://www.apple.com/support/downloads/airportbasestationupdate2007001forwindows .html but it requires that version 5.0 is already installed.
    I have searched the Apple site for the full version 5.0 installer and can not find it.
    Can anyone please provide a link to either the full version 5.0 for windows, or the full version 5.1 for windows?
    Thank you for your help!
      Windows XP Pro   Airport Express

    Just so you guys at apple knows, this is ridiculous.
    What do you do if people lose the disks or buy the used hardware and they didn't get disks?
    The software only works with the AirPort Extremes so why does apple make it difficult for people who want to by there AirPort Extreme?
    The fact that I cannot download the software coupled with the fact that I cannot e-mail Apple about simple questions makes me want to just sell the AirPort Extreme and get a Netgear or a DLink or something else that is supported and worked the way the rest of the world expects it to.

  • Final Cut Pro X: Downloaded trial, can't download full version.

    Downloaded 30 day trial and loved it, unable to purchase full version because don't have min specs. Anyone else have this problem?

    Unfortunately, this seems to crop up quite often - it's a pity it's not more consistent - but at least they're not taking the money off you first!
    It's an awesome application if you decide to upgrade your mac though.
    Andy

  • How Can I Improve Mavericks Performance (much slower than 10.8)?

    When I upgraded to OS 10.9, I immediately saw a significant slower performance than with 10.8 or 10.7 (which I had been using for about two years). One big difference was a delay with the boot disc thrashing a lot when I started the computer and when I launched any app. That is, after starting my Mac Pro (2008), once the windows are all visible, there is a 30+ second delay (with the boot disc thrashing a lot) before it responds. A very similar thing happens when I launch any app. For example, when I launch iPhoto, after the photos appear, it takes 30+ seconds before it reponds to any mouse clicks. Under 10.7 and 10.8, there was about a 5 second delay (which I always thought was Faces doing its thing). This disc thrashing and delay before the app will respond happens with every app (Word, iMovie, Disc Utility, etc.) These delays never occured under 10.7 or 10.8.
    A few people on the Apple Support forum suggested I run EtreCheck and remove various apps that they said could cause a problem with the OS. I removed every app they suggested, but I do not see any difference in performance. In my opinion, OS 10.9 has implemented something new that is causing my Mac Pro to run much slower.
    I just ran a Safe Boot (using shift key while starting). I don't see any difference.
    I would appreciate any advice.
    EtreCheck Results:
    Hardware Information:
              Mac Pro (Early 2008)
              Mac Pro - model: MacPro3,1
              2 2.8 GHz Quad-Core Intel Xeon CPUs: 8 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 8800 GT - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 1:57:13
    Disk Information:
              ST3750640AS P disk0 : (750.16 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 749.3 GB (299.96 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              ST31000340AS disk2 : (1 TB)
                        EFI (disk2s1) <not mounted>: 209.7 MB
                        Movies&DVDs (disk2s2) /Volumes/Movies&DVDs: 999.86 GB (140.99 GB free)
              ST31000340AS disk1 : (1 TB)
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        OS10.6 (disk1s2) /Volumes/OS10.6: 999.86 GB (882.64 GB free)
    USB Information:
              Apple, Inc. Keyboard Hub
                        Apple, Inc Apple Keyboard
              NEC Corporation USB2.0 Hub Controller
                        Canon MX850 series
              Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
              Apple Computer, Inc. iSight 200mbit - 400mbit max
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.microsoft.office.licensing.helper.plist
    Launch Agents:
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.adobe.ARM.[...].plist
    User Login Items:
              iTunes
              Mail
    3rd Party Preference Panes:
              Flash Player
              Flip4Mac WMV
              Growl
              Java
              Perian
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              googletalkbrowserplugin.plugin
              JavaAppletPlugin.plugin
              npgtpo3dautoplugin.plugin
              o1dbrowserplugin.plugin
              QuickTime Plugin.plugin
              RealPlayer Plugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin.plugin
    Bad Fonts:
              None
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 749.3 GB Disk used: 449.33 GB
                        Movies&DVDs: Disk size: 999.86 GB Disk used: 858.87 GB
              Destinations:
                        Data [Network] (Last used)
                        Total size: 3 TB
                        Total number of backups: 79
                        Oldest backup: 2012-12-18 07:58:20 +0000
                        Last backup: 2013-11-30 01:06:05 +0000
                        Size of backup disk: Too small
                                  Backup size 3 TB < (Disk used 1.31 TB X 3)
    Top Processes by CPU:
                  13%          mds
                   1%          WindowServer
                   1%          EtreCheck
                   0%          ocspd
                   0%          fontd
                   0%          syncdefaultsd
                   0%          aosnotifyd
    Top Processes by Memory:
              549 MB             iTunes
              385 MB             mds_stores
              319 MB             com.apple.MediaLibraryService
              139 MB             com.apple.IconServicesAgent
              131 MB             Mail
              106 MB             com.apple.WebKit.WebContent
              82 MB              soagent
              82 MB              Safari
              74 MB              PhotoStreamAgent
              74 MB              WindowServer
    Virtual Memory Statistics:
              3.56 GB            Free RAM
              3.38 GB            Active RAM
              265 MB             Inactive RAM
              821 MB             Wired RAM
              433 MB             Page-ins
              0 B                Page-outs

    First, back up all data immediately unless you already have a current backup. If you can't back up, stop here. Do not take any of the steps below.
    Step 1
    This diagnostic procedure will query the log for messages that may indicate a system issue. It changes nothing, and therefore will not, in itself, solve your problem.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|pagin|timed? ?o' | tail | open -ef
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal 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 Terminal in the icon grid.
    Paste into the Terminal window (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. Normally the command will produce no output, and the window will be empty. If the TextEdit window (not the Terminal window) has anything in it, stop here and post it — the text, please, not a screenshot. The title of the TextEdit window doesn't matter, and you don't need to post that.
    Step 2
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Reset the System Management Controller.
    Run Software Update. If there's a firmware update, install it.
    If you're booting from an aftermarket SSD, see whether there's a firmware update for it.
    If you have a portable computer, check the cycle count of the battery. It may be due for replacement.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane. See whether there's any change.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    If you have a MacBook Pro with dual graphics, disable automatic graphics switching in the Energy Saverpreference pane for better performance at the cost of shorter battery life.
    Step 3
    When you notice the problem, launch the Activity Monitor 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 Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the View menu or the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for User, System, and Idle at the bottom of the window.
    Select the Memory tab. What value is shown in the bottom part of the window for Swap used?
    Next, select the Disk tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in andWrites out.)
    Step 4
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. 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.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard by pressing the key combinationcommand-C. Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    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.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Version 22 slower than version 19 for javascript

    Go look here, i was testing something...than realized there is update did it and went from
    550million operations to 140 million operations after updating from v19 to v22.
    http://jsperf.com/object-dot-vs-bracket
    Why and how can i fix it if i can be fixed.
    Very unexpected though. Upgrades suppose to improve all around.
    I did factory reset too to fix it, but didn't work.

    Firefox 23 is faster than all of them.

  • Can some one remove ages trial so i can buy pages full version??????????

    How do i get rid of the trial version ? i cant  buy bc it thinks i own but i dont

    This is the iTunes forum and hence not the place where you'll be most likely to get help with this issue. I'd suggest you ask in the Pages forum:
    https://discussions.apple.com/community/iwork/pages
    Regards.

  • Can't run full version of Photoshop, even though I'm still valid for the student payment plan.

    I keep getting the trial prompt for photoshop, even though I'm still running the student edition payment plan, and it hasn't expired. Is this a glitch or has the plan been altered? Help please.

    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • How to determine full version of latest adobe reader

    Hi,
    How can I determine full version of latest Adobe Reader without installing Adobe Reader?
    I mean I need to know 4th digit of version, it is the most important for me.
    Adobe Shockwave and Flashdownload pages provide such informations via JSON from
    HTTP request.
    Reader download website shows me only 3 digits 10.1.3 and I need to read 10.1.3.23
    to automate my security checker.
    Thanks in advance for reply.
    David

    daviddavid3 wrote:
    No it's not true. latest version is 10.1.3.23.
    Latest digit is probably security patch.
    The latest digit is the build number.  This may be different for different modules; you may find DLLs that have a higher build number than AcroRd32.exe
    If there is a new security release, it will be identified by the first three digits.

  • How can I access full Exchange email features on iOS and android?

    I currently use a virtual exchange server (2010) in conjunction with outlook 2007. I have several distribution groups set up so I can send from different email addresses through a single exchange server mailbox. This works fine on windows pcs. Unfortunately
    I have not found a way of accessing this full exchange functionality on either my android phone or my iPad. Neither the stock mail apps nor any third party mail apps I have tried support the use of distribution group From fields. Worse, the Outlook Web App
    that is fully featured on my windows pcs (where I don't need it) for some reason becomes a light version when accessed on an iPad air or android phone. The light version does not support From fields at all, whether distribution group based or not. I have tried
    using safari and dolphin and OWA always defaults to and won't let me change from the feature crippled light version.
    Does anyone have any ideas as to how I can access Exchange's changeable From fields on iPad or Android phone?

    Hi Lucio,
    I found a solution eventually but it is not very elegant. You need to use an iPad web browser that can fool the Exchange server's web interface into believing it is a desktop browser not a tablet browser! Unticking the "use light version" checkbox
    does not work on Safari and all other mainstream browsers I have tried despite what Microsoft claims on its help pages - it will always force the reduced features version on you. There are a few iPad browsers that allow you to select desktop emulation. I use
    one with the bizarre name of KissMyAgent and in desktop mode I can load the full version of OWA although it is not a smooth user experience.
    As for dedicated mail apps, I looked at all the free ones and they didn't as at Feb 2014 and also emailed all the developers of the premium ones and they all confirmed they didn't either. If anyone knows of any dedicated mail apps that support the full Exchange
    features (see my OP), please let us know!

  • Is student version released at the same time with the full version?

    I downloaded the LR4 to see how it compares to a LR2 I have at the moment. Adobe clearly states that users testing the beta can get the full version after March 31, but I did not find any information regarding the the student version release. Has adobe released the student versions simultaneously with the full versions, upon product release?

    In the past, the student version has been the same price as the upgrade, and it has been possible to upgrade to a standard version from a student version. If that continues to hold, you'll be able to get LR4 immediately for the equivalent of the student price. Notice the "if" in that statement.
    Hal

  • Full version of a game doesn't work.

    Hello,
    I purchased the game Royal Envoy 2 (premium) today in the app store on my macbook. But the game doesn't work. If i want to go to level 9 the game tells me that i haven't purchased it yet. When i click on 'buy' the game sends me to the app store. The app store says that the game is already installed. I removed the game from my computer and reinstalled it but it still doesn't work. I think it's a really fun game to play and I wish that I can play the full version of the game because i payed for it..

    You should contact the developer's support channel. If the game says that you have not bought Level 9, then that was not part of your purchase. You likely need to make an in-app purchase to open more of the game. The developer should be able to tell you how if it isn't obvious to you.
    https://playrix.zendesk.com/home

Maybe you are looking for