Need information about the data included in the example for the inner race with flaws

Hello

There are several examples for fault detection in bearing (Vibration tool sets). I need more information about these data include:

-Bringing its specifications

-How to perform data acquisition

-a link to the tutorial

I came across this manual that shows how to use OATS envelope detection VI to perform detection of failures of bearings.

http://zone.NI.com/reference/en-XX/help/372416A-01/svtconcepts/cst_speed_brg/

It lists the specifications of turnover:

  • Inch diameter 0,2813

  • Primitive diameter: 1,1228 inch

  • Speed: 1 234 RPM

It also goes to the list of characteristic frequencies determined by these attributes.

The data acquisition is carried out by the use of an accelerometer and a tachometer. These devices measure the vibration and the rotation speed of the bearing data. Failure detection uses a method called detection of the envelope to look at the signals of the bearing and compared to signals of standard bearings to the discovery of flaws. You can learn more about the method of acquisition of data here:

http://zone.NI.com/reference/en-XX/help/372416A-01/svtconcepts/fault_detection/#Envelope_Detection

The first link is a tutorial on the detection of failures in the bearings. The end of the link provides the location of an example VI that may also be useful.

Tags: NI Software

Similar Questions

  • Need information about the Tables in database in Oracle Apps

    Hello

    I am looking for information about the Tables in database in Oracle Apps.

    Is it possible that we could see the (column name, description of each column, the primary key, foreign key etc.) the table structure in database (e.g. HZ_PARTIES, CS_INCIDENTS_ALL_B, csf_debrief_headers) used in Oracle 11i applications?

    ETRM. Oracle.com

    concerning

    Pravin

  • I have a power shot sx HS 40 & need information about the use of filters with this camera? Thank you ~.

    I have a power shot sx 40 & would like information on the use of filters with this device?

    Thank you ~.

    Hi Rainlily,

    You will need the # model Canon adapter filter f-DC67A to use filters on this camera, which costs about $25.00. Bower makes one for about $9.00 available in B & H and Bower products work well with the Canon. This adapter uses 67 mm filters. If you have not yet all filters, I would recommend Hoya or Tiffen filters as they are of high quality at reasonable prices. Do not get the expensive filters because in general they can cause color casts that may be difficult to view the process on. Have fun!

    Steve M.

  • Information about the host material with information on the nic and HBA drivers

    Can someone help me complete the script below. I can't able to get information from HBA and driver for the card.

    
    Get-Datacenter | % {  
      $datacenter=$_
      Get-VMhost -Location $datacenter | Get-VMHostHBA -Type FibreChannel | where {$_.Status -eq "online"} | 
      Select @{N="Datacenter";E={$datacenter}},@{N="VMHost";E={$_.VMHost.Name}},@{N="HostName";E={$($_.VMHost | Get-VMHostNetwork).HostName}},@{N="ver";E={$_.VMhost.version}},@{N="Manf";E={$_.VMhost.Manufacturer}}, @{N="Hostmodel";E={$_.VMhost.Model}},@{Name="SerialNumber";Expression={$_.VMhost.ExtensionData.Hardware.SystemInfo.OtherIdentifyingInfo |Where-Object {$_.IdentifierType.Key -eq "Servicetag"} |Select-Object -ExpandProperty IdentifierValue}},
      @{N="Cluster";E={
            if($_.VMHost.ExtensionData.Parent.Type -ne "ClusterComputeResource"){"Stand alone host"}
            else{
                Get-view -Id $_.VMHost.ExtensionData.Parent | Select -ExpandProperty Name
            }
          }},Device,Status,@{N="WWN";E={((("{0:X}"-f $_.PortWorldWideName).ToLower()) -replace "(\w{2})",'$1:').TrimEnd(':')}},@{N="HBA Model";E={($_.VMhost | get-vmhosthba -Type FibreChannel | where {$_.Status -eq "online"} | select-object -ExpandProperty Model  ) | Get-Unique}},
          @{N="fnicdriver";E={$esxcli.software.vib.list() | ? {$_.Name -match ".*$hbadriver.*"} | Select -Expand Version}}
          @{N="Fnicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".*$hbadriver.*"} | Select -Expand Vendor}},
          @{N="enicdriver";E={$esxcli.system.module.get("enic").version}}
         @{N="Enicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".$net.*"} | Select -Expand Vendor}}
    } 
    
    

    Thank you correct me with your previous posts, I had made some changes to get information on the correct provider for FC and network cards, now it's show desired output.

    Get-Datacenter | % {
          $datacenter=$_
          foreach($esx in Get-VMhost -Location $datacenter){
            $esxcli = Get-EsxCli -VMHost $esx
            $nic = Get-VMHostNetworkAdapter -VMHost $esx | Select -First 1 | select -ExpandProperty Name
            $hba =Get-VMHostHBA -VMHost $esx -Type FibreChannel | where {$_.Status -eq "online"} |  Select -First 1 |select -ExpandProperty Name
            Get-VMHostHBA -VMHost $esx -Type FibreChannel | where {$_.Status -eq "online"} |
            Select @{N="Datacenter";E={$datacenter.Name}},
                    @{N="VMHost";E={$esx.Name}},
                    @{N="HostName";E={$($_.VMHost | Get-VMHostNetwork).HostName}},
                    @{N="version";E={$esx.version}},
                    @{N="Manufacturer";E={$esx.Manufacturer}},
                    @{N="Hostmodel";E={$esx.Model}},
                    @{Name="SerialNumber";Expression={$esx.ExtensionData.Hardware.SystemInfo.OtherIdentifyingInfo |Where-Object {$_.IdentifierType.Key -eq "Servicetag"} |Select-Object -ExpandProperty IdentifierValue}},
                    @{N="Cluster";E={
                        if($esx.ExtensionData.Parent.Type -ne "ClusterComputeResource"){"Stand alone host"}
                        else{
                            Get-view -Id $esx.ExtensionData.Parent | Select -ExpandProperty Name
                        }}},
                    Device,Model,Status,
                    @{N="WWPN";E={((("{0:X}"-f $_.NodeWorldWideName).ToLower()) -replace "(\w{2})",'$1:').TrimEnd(':')}},
                    @{N="WWN";E={((("{0:X}"-f $_.PortWorldWideName).ToLower()) -replace "(\w{2})",'$1:').TrimEnd(':')}},
                  # @{N="Fnicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".*$($hba.hbadriver).*"} | Select -First 1 -Expand Vendor}},
                    @{N="Fnicvendor";E={$esxcli.hardware.pci.list() | where {$hba -contains $_.VMKernelName} |Select -ExpandProperty VendorName }},
                    @{N="fnicdriver";E={$esxcli.system.module.get("fnic").version}},
                    @{N="enicdriver";E={$esxcli.system.module.get("enic").version}},
                   # @{N="Enicvendor";E={$esxcli.software.vib.list() | ? {$_.Name -match ".net.*"} | Select -First 1 -Expand Vendor}}
                     @{N="Enicvendor";E={$esxcli.hardware.pci.list() | where {$nic -contains $_.VMKernelName} |Select -ExpandProperty VendorName }}
                     #@{N="Enicvendor";E={$esxcli.network.nic.list() | where {$vmnic.name -eq $_.vmnic1} | select -First 1 -ExpandProperty Description }}
            }
        } 
    

    =================

    Output:

    -------

  • Need information about the licenses on DB and EBS

    Hi all

    Nice day!

    I have a few questions regarding licenses in Oracle. And will appreciate the supporting by the Oracle Doc for reference.

    My DB version is 11.2.0.3 and the Oracle eBusiness Suite version 12.1.3.

    1. we bought 100 NUP for DB. However, when I checked with the following query:

    Select * from dba_users where account_status = 'OPEN '.

    The list of users exceed 236 (Note its an ERP instance), where the number of users we have created by me is just 4-5. Others came to OPEN by default (including system, dbsnmp, sysman etc.).  They should be counted in the licenses that they are installed before users?

    2. I have observed that some users dba open are for modules that we do not use. Can they be locked safely? [For example.] IPD, user of the LEAGUE]

    3. Select * from fnd_user where End_date is NULL; give me a count of 69 users, which users created by us are about 20 and we bought licenses approximately 40.  We need to have licenses for the rest 29 as well?

    4. we realized that it might be necessary to add the virtual machine additional JAVA in oacore (now 2), we need to have separate licenses for this (oacore, oc4j, Association etc.)?

    I have tried to find some references in the meantime and will appreciate if you have some references of loans.

    Concerning

    Karan Kukreja

    PS: Dear Mods and Admins. If this isn't the right to group, please suggest or move this message to the right group. GUI of the community has changed a lot since my last connection. Thank you.

    Karan,

    Your account manager Oracle should help answer these questions. You can see the prices and license management and see if the information in these guides help.

    Thank you

    Hussein

  • Need information about the motherboard for NB 300-108

    Hello.

    I can find information on everything except the motherboard.
    Is someone can you please tell me what is the name of the motherboard on the NB 300-108.

    TKS

    Name of the motherboard?
    What kind of info you need exactly?
    Hardware components?

  • I need information about the server plss

    I try to keep Business Catalyst as my site host, but I'm looking to work with VBulletin to create forums on my site.

    According to VBulletin, to launch their software that I need:

    The system configuration required

    The minimum Version: 5.5.0

    Minimum MySQL version: 5.1.5

    Recommended PHP Version: 7.0.0 or higher recommended MySQL Version: 5.6.0 or higher

    They are usually included on any Linux OS Apache-based server.

    Question...

    Could the catalyst accommodate these requirements so that I can get the software to work with the server and create a forum?

    If it is not... What other options can I in Adobe?

    Or what am I looking for another Web host?  Really want to move the site!

    Back to Godaddy for hosting... they work with VBulletin fine...

  • need information about the function replace

    Hello
    My query below replaces the data if code (') alone is present, but I need a generic query to select and replace even if a double code is present on the column of addr1.

    Select addr1, replace (addr1, "') the employee where employee_seqnum = '127043'
    Present data:
    34/L Jas'Apartments
    34/L Jas 'to share
    Desired output:
    34/L JasApartments
    34/L JasApart

    Thank you
    SQL> select c2,translate(c2,'1''"','1') str from test1;
    
    C2         STR
    ---------- ----------
    Jen's,Jen" Jens,Jen
    Jens       Jens
    Jen's      Jens
    Jen"s      Jens
    {code}                                                                                                                                                                                                                                                                                                                                                                                
    
  • Need information about the signing of JavaScript

    All Mozilla on JavaScript signature items are very obsolete and contain mostly dead links. Can someone point me to the flow of information, examples, etc.?

    A good place to ask for advice on web development is to the 'Web Standards Development/evangelism' MozillaZine forum.

    Aid to this forum are better informed on issues related to web development.

    You must register on MozillaZine forum site to post in this forum.

    See also:

  • Re: Need technical information about the CD/DVD with Portege 7200 series writer

    Hello
    just to clarify my last post should have read: CD and DVD rw burner compatible with the laptop above.

    all the best john.

    The Portege 7200 cannot be upgraded with a CD/DVD burner (drive).
    You can buy a dock like [this one | 5QQcmdZViewItem http://cgi.ebay.ca/Slim-TOSHIBA-Portege-7200-Dockstation-Built-in-DVD-CDRW_W0QQitemZ170200420841QQihZ007QQcategoryZ14008] which provides a feature of CD/DVD drive!

    I m not 100% sure if this docking station can be improved with a CD/DVD burner, but you can try to contact the ASP in your country for details.
    Guys might provide information whether or not this player is available!

  • Need information about the motherboard for Satellite C850D-125

    Hello

    The Board of Directors of Toshiba Satellite C850D-107 wotk in Toshiba Satellite C850D-125?

    I need advice for my Toshiba Satellite C850D-125, and I can't find C850D-125...

    But I found a C850D-107.

    Can you help me?

    concerning

    According to the specifications, the two machines have different numbers. Satellite C850D-125 except the number PSCC8E and Satellite C850D-107 PSC9SE. They have different CPU and GPU.

    In General, I think that you could use, but I don't know if all ports placed left and right are identical. Check if you can find a motherboard for the models with the same part number.

  • Need information about the last update of the Bios for Satellite L10

    Hello

    My computer is a Satellite L10-PSL10E.
    The Bios is Phoenix V1.60 dated 21/12/04.
    There is a new Bios (v2.80 - WIN dated 07/08/07) available on the Toshiba web site.
    What's new in this version?
    Allows to start on an external hard drive or usb key?

    Is it recommended to install updates if all works well on the computer?

    If everything works you don't need new BIOS. Be happy with good running operating system.

    If you want to boot from the external HARD drive to use the other operating system, it won't work.

  • Need information about the compatibility of upgrading/clean install on Windows, 8.1

    Hello Microsoft, I want to improve my personal Notebook ch.... (ASUS A43SD-VX216) to 8.1 Windows (which is now running Windows 8 Pro 64-Bit)... I heard that I can not spend store... If I want to do clean install by buying (CD), it will perform my drivers or give errors and serious failures driver? Well, I saw that my PC model is not indicated here (website: http://event.asus.com/2013/osupdate/update/index.htm)... I hope you can help! :-)

    The upgrade through the store will preserve your personal files, applications, and settings.

    http://Windows.Microsoft.com/en-us/Windows-8/upgrade-to-Windows-8

    To learn more:

    http://techingiteasy.WordPress.com/2013/10/17/how-to-upgrade-from-Windows-8-to-Windows-8-1/

    If you buy the Windows 8.1 media retail, you can use it to make an upgrade of 64 bit Windows 8 Pro on-site. You have to specifically buy Windows Pro 8.1 detail which will include the 64 and 32 bit DVD. The OEM System Builder License will not allow this.

  • Need information about the configuration of the Catwgory element

    Hello

    Can someone help me with steps of category of point parameters.

    What exactly, I want to know is... How the Flex infrastructure is related to the category and the category_sets?

    Thank you
    Karim

    You can have categories of items that contain a different number of segments. Consider the example which gives an overview of setup of category.

    Marketing wants to classify items by the country, they are sold in. (e.g., US, India, Japan)
    Purchase wants to classify items by the goods code and the subcode. Commodity codes are paper, plastic and metal. The corresponding subcodes are
    Paper > thick paper, thin paper
    Plastic > Rasin, Styro
    Metal > copper, aluminum

    So for the structure of marketing, you need categories with 1 segment.
    To purchase, you need 2 segments.

    If you create 2 structures under the category flexfield.
    Marketing structure has 1 segment; Purchase a 2.
    You also create appropriate value sets and assign segments of each book.

    Then, you go to the category for point Codes screen and create new categories for these 2 structures.
    You set then 2 category Games - Marketing and purchasing.

    Hope that answers your question,
    Sandeep Gandhi

  • Need information about the new version of Illustrator

    I am currently using my version of Illustrator CS3, but I was wondering if Illustrator grew to take in addition to the features that we used to have in Freehand. Here are the features that I miss more Freehand:

    1.) able to appoint work and change in the world through research and replace the function of art (change the outline width, fill color etc..)

    2.) here is the big one, I need: ability to select several works of art and modify each one in place. In other words, if you select three items and choose "turn every" they each turn by specified amounts, each in their place and not as a set.

    If the new version of Illustrator has had on these projects or even simply the need 2 above, spring for the new CS5 package.

    Thank you

    Ken

    (1) n ° but you can save the selections and reload. Create selections using Select > same. Or save an illustration as a symbol, and then change the symbol. (All possible in CS3)

    (2) you can already do this in CS3 (object > transform > transform each or effect > Distort & Transform > transform each)

    So, really, you can do everything you mentioned. CS5 did not specifically any achievements in these areas.

Maybe you are looking for

  • Mac Mini (2014) blurred or central off-screen

    Hello I'm having a very difficult time for my Mac Mini to 2014 appears correctly on both a small Magnavox (2008) HDTV (that I'm trying to 'reuse' for use with the Mac Mini) and my 46 '' Sharp Aquos. When I use a HDMI cable to HDMI (sold by Apple) the

  • T420s video card update

    Then I bought the 'Business' Machine Lenovo t420s, I was really surprised to discover that it came with video card accumulation, just the lowest system based Intel grpaphics. I am not able even browse some of my applications of rich companies multume

  • R725, date and time

    How to remove "the date and time?  I don't want it to appear on photos.  Thank you.

  • Cannot install Service Pack 3

    I tried several times to install Service Pack 3.  I have XP Professional.  The error is "not enough disk space on C:\Windows\$NtServicePackUninstall$ etc etc and he wants an another 4 MB of space."  I have about 24Gig of space and deleted several tim

  • wiring replaced with SSD HD & put Dell Windows XP Home SP2 on again but does not refresh

    I removed my old drive hard-working mill & replaced with a SSD OCZ, 90 GB and put on Dell Windows XP Home SP2.  When I try to update windows, I have error 0x8024400A or # 0 x 80240036.  All the appropriate Dell drivers have been resettled.  Microsoft