Peak Detection with Base package

Hello,
I'm constrained by a budget so I can't purchase the analysis package
just for peak detection. Does anyone have any hints on how to search a
1-D array for peaks without using the pre-made VI's? I've been pulling
my hair out over this one for a week!
Thanks in advance.

Labviewguru wrote in message news:<[email protected]>...
> Jason,
>
> I would suggest looking online for a "peak detection" algorithm.
> There are a number of ways to do it. The LabVIEW peak detector using
> a least squares quadratic fit to find the peaks, with a filter of
> amplitude and width. This can also be done much simpler ways. You
> can try applying a smoothing filter (use a moving or windowed average)
> and then look for peaks that way.
>
> Please post if you need more assistance. Also, what are you trying to
> do with the peak detection. This would be helpful in providing
> further assistance.
>
> Good luck
Labviewguru
Thanks for the advice. Yeah, the NI home page tells me that th
ey use a
least square quadratic fit to find the peaks. I'm not sure on how to
implement that. I'll do a web search on that one. I'm not dealing with
a very noisy signal so I don't think that I need to do a moving
average. The amplitude filter seems pretty easy, I just compare each
point to a preset threshold. However my peaks are composed of more
than one sample so each peak gives me a bunch of "true" values. I only
want one count per peak. The way I thought of doing it was using
hysteresis and starting a subroutine when the upper limit boolean went
hi, then resetting the subroutine when the lower limit boolean went
hi. So essentially i need to have labview look for a high, THEN look
for a low, THEN reset over and over again until the sample array is
finished. I'd love to work on this for days but I've already put too
much thought into it.

Similar Messages

  • Peak detection with two thresholds

    Dear colleagues!
    Excuse me, but I need example or any help for peak detection with two thresholds. Namely two adjustable thresholds with standard peak detector for creating a detection's bandwith or range. 
    Peak detector have only one level threshold... But why only one...
    Solved!
    Go to Solution.

    If I understand correctly, you want to set two thresholds as shown in the image below.
    The top peak is easy, so no need to go into details for that one.
    The peak for the second threshold (red) will be a bit more difficult to do.
    You would need to filter out the signals that cross the top threshold (blue).  This would be done by identifying the values as they cross the top threshold boundary.  You would then need to build a "window" around them (we'll come back to this one).
    You would need to define a range of valid values for the 2nd peak, which are from the bottom threshold to the top threshold. Search for the number of values that cross the top threshold plus one.  The "plus one" is the one you will want to search. With all the other peaks that you do not want, you can create windows around them.  The remaining one is the peak of interest.
    Message Edited by Ray.R on 10-23-2009 08:21 AM
    Attachments:
    2Thresholds.PNG ‏6 KB

  • Fetch and peak detection all channels of PXI-5105 with 4M record... HELP!

    Dear collegaues!
    Please help me to improve performance my application, see attachment, and sorry for my English.
    So, my task is to fetch and peak detection all (eight) channels of PXI-5105 with 4M record and sample rate 4M with loop 1 sec...
    Inputs of all my channels are wiring to NaI detectors with 0,5...1 microsec of pulse width (really) and freq from 0 kHz to no more than 40 kHz.
    Why I've selected 4M record and 4M sample rate namely? Answer is that I've tested PXI-5105 previously by generator 40 kHz and 0,5 microsec width pulse. It is working fine and peak detection indicate for me 40000 pulses/sec. If I set lower than 4M record and 4M sample rate it is no working. In my honest opinion 4M record and 4M sample rate are very min settings.
    In the present time peak detection working only 6 channels... When I've connected to diagram more than 6 "peak detector.vi" - I see the error "...out of memory...".
    Please advise me, what is to be done for that is all working fine.
    Solved!
    Go to Solution.
    Attachments:
    consumer-producer7.vi ‏44 KB

    What you are running into is an out of memory error in LabVIEW.  You have enough onboard memory to capture 4M samples per channel on the digitizer.  The issue is with fetching and manipulating that data in your LabVIEW application.  You will want to step back and take a look at how you are handling your data to understand why that is happening.
    1) 4M samples/ch = 4M Samples x 2Bytes/sample/ch = 8M Bytes/ch
    2) Expanding to 8 channels creates 64M Bytes of data in the raw binary format
    3) You are scaling your data by fetching in a 1D WDT format.  This stores each sample in a 32 bit double, expanding the memory to 256M Bytes (in addition to timing information)
    4) By splitting up the array of waveforms and branching data it you can easily create copies of this data, and if your consumer loop is not completed with the last data, you may be trying to capture a whole new set, creating yet another copy.
    So you can see that while you have 1.5GB of controller memory, when dealing with large arrays of data you can easily eat up that memory.  There are several things you can try to make your application more efficient.  You could work with an unscaled binary data format, you can wire the array of waveform directly to the peak detect vi (instead of creating 8 copies, you will have a single copy with arrays of output) or you could revisit the record size you have chosen (experimenting with your threshold and width settings might help you to get the results you want with smaller record lengths).
    -Jennifer O.

  • Opening VI's written in Full with the Base package

    So I wrote a program in the Labview "Full" Development package. We are sending the source code to one of our vendors so they can build a similar test system to test their parts before they ship them to us. 
    The vendor understandably want to spend as little as possible on this but they also need to be able to modify the VI's for their test equipment. So they are wanting to only purchase the Labview "Base" package. I have looked through the differences and the only thing I see that they will not have that I used is "Event" structures. I only used one of two in a couple sub-vi's.
    Will they be able to open and modify these vi's to change them back to a more "standard" method with the "Base" package? Or will I have to modify them before I send it?

    I would say that the having the event structure is the "more standard method".  Unfortuanetly, the Base package is a bit crippled by not having them.
    They should be able to open your VI with the event structure.  I think they can even run it just fine.  The only problem is that they won't be able to do any modifications to the event structure itself like add another event case, modify the properties of an event case, or add a new event structure.  Any modifications they make to the VI will have to be limited to other code.
    Not 100% sure because I have never tried using the Base package before, but that is what I remember reading several years ago in other forum threads.

  • Need Help with peak detection

    Hello,
    I am in need of some help using the peak detection. I have an array of values that I need to find the centroid (peak) of. I am only interested in finding the centroid of a large peak. The problem I keep having is that the peak detection VI finds every little peak above the threshold when I really want the overall average peak. Please look at the graph in the picture file to see what I mean.You can see that the main peak has jagged edges. The peak detection in Labview will find every one of these jagged edges and report the location back as a peak. I am only interested in the overall shape of the peak. How can I filter out the multiple peaks and only report the centroid of the desired shape? There is an example program in the labview package called "advanced peak detection point by point" but I cannot figure out how to employ it in this application.
    Thanks in advance for any help.
    -Mark
    Attachments:
    Array values.PNG ‏9 KB

    If I were you, I wouldn't even use peak detection.
    The point of peak detection is to find multiple peaks, like in a sine wave, etc.
    If you just want the maximum:
    Just use 'Array Max & Min'
    The 'max value' equates to your y-value.
    The 'max index' can be used to find your x-value
    Message Edited by Cory K on 05-07-2009 11:52 AM
    Cory K
    Attachments:
    Peak.PNG ‏3 KB

  • I am using IMAQ vision for Measurement Studio, Ver6.0 with Measurement Studio Base Package,Ver6.0(Professional Edition).Can I work in IMAQ Vision for Measurement studio, Ver6.0 If I upgrade Measurement studio to Enterprise Edition,ver8.0.1

    I am using IMAQ vision for Measurement Studio, Ver6.0 with Measurement Studio Base Package,Ver6.0(Professional Edition).Can I work in IMAQ Vision for Measurement studio, Ver6.0 If I upgrade Measurement studio to Enterprise Edition,ver8.0.1
    Thanks
    Biswajit

    Howdy Biswajit,
    The IMAQ and Vision ActiveX controls you are using with Visual Basic 6 do not install with Measurement Studio. They are installed when you install the IMAQ software and include support for Visual Studio 6. Upgrading to Measurement Studio 8.0.1 will have no effect on your IMAQ controls since they are not related to one another. Purchasing Measurement Studio Professional or Enterprise packages allows you Visual Studio 6 support for other ActiveX components. Refer to this link for a list of ActiveX components included in those packages. 
    If you are asking about using the ActiveX controls in .NET, then take a look at this KnowledgeBase entitled Do NI-IMAQ and NI Vision Support Microsoft Visual Studio .NET?
    Hope this clarifies things!
    Best Regards,
    Jonathan N.
    National Instruments

  • 6i can't find waveform peak detection vi. Load error code 20

    6i can't find waveform peak detection vi. Load error code 20

    The waveform peak detection VI is found only in the Full and Professional development systems. Do you have the base package?

  • Calculating BPM using either Peak Detection point by point or FFT

    Hi Guys
    Im new to Labview and have absolutely no idea on programming and stuff. Im doing a project on Heart Rate monitor.
    I'm using labview to read the analog input to an Arduino Mini. In my attached VI im using Peak Detection Point by point to calculate the BPM but it doesnt seem to work. I took references from several VIs to arrive at my VI. 
    My instructor told me I could try using FFT to calculate the BPM as well but Im not sure how to carry it out in Labview.
    Hope you guys can help me with this.
    Thanks alot!
    Attachments:
    heart signal.jpg ‏43 KB
    Heart Monitor.vi ‏24 KB

    Ok, we have some problems here.
    1.  The Data Bits property is the number bits for a single character that is being transmitted.  You should not use that.  Since you are using an Arduino, it should be sending the termination character.  So just tell the VISA Read to read maximum number of bytes you expect from a single message or just some large number (like 25).  The VISA Read will stop reading the port when it encounters the termination character.
    2. The String Subset is not doing anything.  Just remove it.
    3.  You should move your  Wait to be outside of the case structure.  As is currently written, if you are not taking readings you will use up all of your CPU.
    4.  You should have labels for all of your controls and indicators.
    5.  Your time calculation is completely wrong.  You want to subtract the time of the previous peak from the current peak.  I recommend you use a Feedback Node to do this.
    Here's a slightly cleaned up version of your code.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Heart Monitor_BD.png ‏42 KB

  • RME 4.3.1 device update failing 'WARNING : Cat3560(7.3):Consistency check failed for base package SharedNetshowIOS'

    Hi Guys,
    I'm having some issues updating the device packages for my RME 4.3.1 install.
    I've downloaded and tried to update the 'Cat3560.zip' package via the GUI, but the job fails with the above error.
    I pulled up the PSU.log and found the following:
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : isExistsVersionFile=true
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : _CURCMVER=5.2.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : CMF Package Map Available.
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : CMVERSION=5.2.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : MDFVERSION=1.41
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : isExistsVersionFile=true
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : VERSION=4.3
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : PATCHVER=1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : _CURRMEVER=4.3.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : Mdf=1.41:MDF Package
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : RMEVERSION=4.3.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : MDFVERSION=1.41
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : isExistsVersionFile=true
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : _CURCMVER=5.2.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : CMF Package Map Available.
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : CMVERSION=5.2.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [CMPSUAdapter : <clinit>]  : MDFVERSION=1.41
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [PackageManager : initAdapters]  : Adapter for CM already loaded.
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [PackageManager : initAdapters]  : Adapter for CVW already loaded.
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [DFMPSUAdapter : <clinit>]  : isExistsVersionFile=true
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [DFMPSUAdapter : <clinit>]  : _CURDFMVER=3.2.0
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [DFMPSUAdapter : <clinit>]  : CMF Package Map Available.
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [DFMPSUAdapter : <clinit>]  : DFMVERSION=3.2.0
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [DFMPSUAdapter : <clinit>]  : MDFVERSION=1.41
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : isExistsVersionFile=true
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : VERSION=4.3
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : PATCHVER=1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : _CURRMEVER=4.3.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : Mdf=1.41:MDF Package
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : RMEVERSION=4.3.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : MDFVERSION=1.41
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [PackageManager : initAdapters]  : Adapter for RME already loaded.
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [PackageManager : initAdapters]  : Adapter for CVW already loaded.
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : isExistsVersionFile=true
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : VERSION=4.3
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : PATCHVER=1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : _CURRMEVER=4.3.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : getProperty]  : Mdf=1.41:MDF Package
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : RMEVERSION=4.3.1
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [RMEPSUAdapter : <clinit>]  : MDFVERSION=1.41
    [ Thu May 27 10:11:49 PDT 2010 ] INFO   [PackageManager : initAdapters]  : Adapter for RME already loaded.
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PackageManager : installPackages]  : Locking package repository..
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PackageInstaller : installStep_resolve]  : Checking Dependencies...
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : pickUnselectedBasePackages]  : SharedSwim2900XL has 17 dependent packages
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[ImageParserAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Lower version of dependent package[SharedDcmaIOS] installed
    [ Thu May 27 10:11:50 PDT 2010 ] ERROR  [PsuPkgResolver : pickUnselectedBasePackages]  : Consistency check failed for base package SharedDcmaIOS
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[DistributionAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Lower version of dependent package[LibSwim] installed
    [ Thu May 27 10:11:50 PDT 2010 ] ERROR  [PsuPkgResolver : pickUnselectedBasePackages]  : Consistency check failed for base package LibSwim
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[SwimJobOptionsAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[ImageAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[SoftwareAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[ConfigAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Lower version of dependent package[LibCommon] installed
    [ Thu May 27 10:11:50 PDT 2010 ] ERROR  [PsuPkgResolver : pickUnselectedBasePackages]  : Consistency check failed for base package LibCommon
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[SystemAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[ImageListAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[ContainmentAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[FlashAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[MemoryAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[RemoteStageAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Dependent package[SwimCCOAG] already installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PsuPkgResolver : isConsistentBaseAbsent]  : Lower version of dependent package[SharedSwimIOS] installed
    [ Thu May 27 10:11:50 PDT 2010 ] ERROR  [PsuPkgResolver : pickUnselectedBasePackages]  : Consistency check failed for base package SharedSwimIOS
    [ Thu May 27 10:11:50 PDT 2010 ] WARN   [PsuPkgResolver : pickLatest]  : No packages to pick ..Empty package set passed .
    [ Thu May 27 10:11:50 PDT 2010 ] ERROR  [PsuPkgResolver : populateResolverResult]  : All selected packages failed consistency check..
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [SimpleProgress : progressInfo]  : Progress: WARNING: SharedSwim2900XL(2.2.3): Consistency check failed for base package SharedDcmaIOS
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PackageInstaller : installStep_resolve]  : Packages selected for install (satisfies consistency check) : []
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [SimpleProgress : progressInfo]  : Progress: No packages to be installed
    [ Thu May 27 10:11:50 PDT 2010 ] INFO   [PackageManager : installPackages]  : Creating maps in D:\CSCOpx\www\classpath\com\cisco\nm\xms\psu\pkgs\rme
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.11.2.3.7.5.19 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6010 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6020 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6030 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7101 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.8110 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6040 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7102 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7201 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6050 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7103 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7301 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6060 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7203 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7401 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7501 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7303 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7213 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6070 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7502 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7223 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7503 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7504 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:17 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : * not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:12:31 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.9.1.99999999 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6010 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6020 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6030 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7101 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.8110 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6040 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7102 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7201 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6050 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7103 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7301 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6060 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7203 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7401 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7501 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7303 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7213 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.6070 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7502 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7223 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7503 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:42 PDT 2010 ] WARN   [CreateMaps : createPackageMaps]  : oid : 1.3.6.1.4.1.141.1.1.7504 not found in D:\CSCOpx\lib\classpath\com\cisco\nm\cwcs\mdf\mdfdata.xml . Hence it will not be added to the device map.
    [ Thu May 27 10:13:44 PDT 2010 ] INFO   [PackageManager : installPackages]  : Releasing lock...
    [ Thu May 27 10:13:44 PDT 2010 ] INFO   [DeviceSupportHistory : init]  : Loading history db fromD:\CSCOpx\lib\classpath\com\cisco\nm\xms\psu\conf\historyDB
    [ Thu May 27 10:13:44 PDT 2010 ] INFO   [DeviceSupportHistory : init]  : Number of Events Loaded in init()6
    Before i started to bug TAC, I figured I'd post this here.
    Let me know your thoughts

    Looks like your package repository has been corrupted.  TAC can provide a procedure  to recover from this corruption.  The following DOC indicates  why this can happen and has suggestions on how to avoid these problems  from re-occuring.

  • How to use peak detection in labview to detect peaks from data acquisition information

    Hi
    I am a university engineering student who is working in a team to develop a coin detector, its purpose is to recognize different coinage and detect fakes.
    For this we are using LabVIEW 8.5.1. I am relatively new to labview and have had no experience of using to before. We are trying to integrate four voltage signals produced by an electromagnet, straingauge, optical sensor and a proximity sensor. We have already developed signal conditioning for these tests and now wish to put them into labview.
    Our plan is to use peak detection on each of the tests so that labview can detect peaks which correspond to different coin types, provided they meet set criteria for each coin. Then to combine these either using logic or mathscript to produce a Boolean output for each coin.
    One of our advisors helped us develop a peak detection program for a simple simulated sine wave however we are struggling to adapt this for data acquisition information and itegrate it with mathscript and to be honest it does not make much sense. I have attached the program below. Thanks in advance for your assistance. 
    Attachments:
    Strain 2.vi ‏25 KB

    Chris,
    Here are several ways to help  you get started with peak detection:
    1. On your functions palette, you can search for "peak detect" and you'll find several different variations of VIs that will do peak detection.
    2. You may also want to take a look at this tutorial: Peak Detection Using LabVIEW and Measurement Studio
    3. There's an example in the example finder called "Peak detection and display" that will probably be useful. 
    Hope this helps, 
    Misha

  • "A problem was detected with your serial number"

    HELP! Everytime I open Dreamweaver 8, Fireworks, or any other
    software package I get the message "A problem was detected with
    your serial number." It then gives me the option to retype my
    serial number. After I type in the serial number I get the little
    checkmark like everything is great. But when I press "Continue" it
    comes back with that same message.
    I called Adobe support and they said it sounded like my
    registration key got corrupted and that I would have to follow
    TechNote 4e7826b7 which steps you through removing Studio from the
    computer and deleting orphaned files. I've done this TWICE and when
    I tried to call Adobe technical support, they sent me to customer
    support (with a long hold time in between) and then they sent me to
    technical support. When I mentioned I had already passed this
    route, the Adobe employee said she would inform the supervisor and
    they would get back to me. Guess what. Never happened.
    Surfice it to say I'm still getting the message and I don't
    want to uninstall a third time because I know the outcome. Does
    anyone have any suggestion? Pleeeeeeeease!
    Thanks,
    Glenn Lauderdale

    Same problem here. I just hit 'cancel' and the program opens
    fine.
    Adobe posted a hot fix that allegedly fixes the problem. I've
    run the thing several times, and the annoying box still shows up.
    You can find it here:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?event=view&id=KC.tn_18976&extid=tn_18 976&dialogID=53494061&iterationID=1&sessionID=4830e245130c574b2b37&stateID=1+0+53482525&mo de=simple
    I'll keep checking to see if any fix comes up.
    John

  • [Solved] Error upon selecting "base" package during install process

    Hey guys,
    I got stuck in the install process. the following issue never occured to be before.
    Upon selecting the base package during install and pressing "OK", i recieve the following error:
    ERROR: check_is_in needs a non-empty needle as $1 and a haystack as $2!(gote: check_is_in '' 'base')
    and that throws me out of the installation process.
    A google search on the error message only returned sites where the responsible script is postet.
    I am installing arch linux on a lenovo x220, on a seperate ext4 partition.
    Any help is appreciated, thanks!
    Last edited by replax (2012-11-06 20:30:55)

    ArielVoynes wrote:The problem is with mirrors.kernel.org (now that I remember, I've read about kernel.org having trouble with their servers, is this still true?). Just choosing another mirror solves the problem.
    I just read through this post and it did fix my issue.  However, I do not remember what mirror I selected. 
    It was a few selections below kernel.org......
    Last edited by BradJ (2011-09-20 04:27:17)

  • Looking for function or vi to calculate 1/2 power points of data obtained from peak detection vi

    I am analyzing vibration data and need a function or vi that will operate on peak data returned from the LabView Peak detection function and provides 1/2 power points or sideband frequencies. These are needed to compute a "Q" factor. So far I have not been able to find anything.
    Thanks, Fran

    The sound and vibration toolset may help here.  there are several vibration level measurements including peak.  With the advanced FFT functions in the Sound and Vibration tools, the zoom FFT can be used to identify and find sidebands and associated amplitudes. 
    here is a link to the manual
    http://digital.ni.com/manuals.nsf/websearch/1F8691E94728BDF5862570490058C3B2
    here is a link to the toolset
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/10521
    please note the bullets on the above page (about half way down) noting peak detection, etc.
    Preston Johnson
    Principal Sales Engineer
    Condition Monitoring Systems
    Vibration Analyst III - www.vibinst.org, www.mobiusinstitute.com
    National Instruments
    [email protected]
    www.ni.com/mcm
    www.ni.com/soundandvibration
    www.ni.com/biganalogdata
    512-683-5444

  • LMS3.1 psu problem - Consistency check failed for base package ...AG

    Hello,
    We've got a package updater problem with a LMS3.1 installation.
    1. After trying to update RME Device packages from GUI we got a message that LibCommon-v2.3.2 is needed
    2. We tried to update LibCommon from CLI using psucli.bat, see below
    3. We found a discussion in this forum, simular to this problem with the hint to reinstall the RME, what we did but with no improvement
    4. We deinstalled, reboot, did a new installation of LMS3.1. But the problem still exists, with same message. We need the PSU, because most of our devices will be managed after device package update only.
    Updating of each package brings warnings with pseudo package names, as ImageAG, MemoryAG and not with hints to real missing packages:
    C:\lms\bin>psucli -p rme -install -src C:\install\lm31-updates\ LibCommon
    WARNING: LibCommon(2.3.2):Consistency check failed for base package ImageAG
    see also the psu.log containing all tryes of package updates
    The problem goes a little bit in this direction, but with a new reinstallation as well:
    https://supportforums.cisco.com/message/669047#669047
    What can we do?
    thx for hints, Steffen

    When you install LMS on Windows, there are some recommended steps to take to ensure the installation is a problem free as possible:
    Set the per-user and global TEMP and TMP environment variables to short values (e.g. C:\WINDOWS\TEMP)
    Disable all anti-virus software
    Disable Windows Data Execution Protection (DEP)
    Login to the server as a local Adminitrator
    Install from original, locally attached media
    NEVER abort the installation after the installer says not to
    Based on the symptoms described here, I'm guessing at least the first item was not done.  TAC has a procedure to recover a bad RME package repository, but if the base installation is problematic, doing so would be moot.  If you suspect the installation isn't 100% (beyond the package repository), uninstall, then follow the above steps to reinstall.
    If you think the problem is just with the RME package repository, contact TAC, and they can provide you a good, up-to-date repository to jump start things for you.

  • "An error has been detected with a required application library and the product cannot continue. Please reinstall the application.

    I have received the following error message from my Adobe Acrobat Pro X1 after installing the CS6 package :, "An error has been detected with a required application library and the product cannot continue. Please reinstall the application.
    I am now unable to open any pdf?
    Any words of advise here how to fix this problem?
    Thanks!

    ** Moved to Acrobat Forums for quicker and accurate resolution steps ***

Maybe you are looking for

  • Incompatible image size avi2 write frame

    Hello, I am a beginner in LabView, and I am currently trying to use the Ximea CCD and reading the image and writing it into an AVI file. I make sure that the image is RGB U32 before it goes into AVI2 Write Frame, but it still gives me the error "inco

  • Need help reading file directory from applet!

    Hi i am writing a java applet which has to read in several text files from its codebase directory. I have this code at the moment which causes a nullpointerexception: public void initTables()         File dir = new File(getCodeBase().getPath());     

  • Function module CREDIT_INT_RATE_DETERMINE

    Hello, I'd like to have more information about the field FBFROM in the function module CREDIT_INT_RATE_DETERMINE used to calculate the interest. It should be the Date from which interest rates are calculated but I don't understand the meaning. I have

  • PowerPivot/PowerQuery: join xl with txt before loading?

    Hi, can one (with either powerPivot or powerQuery) combine (horizontally i.e. with a join) tables from two different kinds of sources e.g. 1. text file 2. Excel sheet, joined or filtered on a field(s)  before the data is loaded onto the workbook as a

  • ColdFusion Builder plugin console

    I just don't understand what I am doing wrong here. I updated ColdFusion builder as a plugin installed in 3.5.1. I also have Flex 3 /subclipse and a few other plugins installed. When I restart my localhost or want to view orm sql logged to the consol