I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.

I am using the Order Analysis Toolkit and want to get more information about the compensation for "Reference Signal Processing", which is scarce in the manuals, the website and the examples installed with the toolkit.
In particular, I am analyzing the example "Even Angle Reference Signal Processing (Digital Tacho, DAQmx).vi", whose documentation I am reproducing in the following:
<B>DESCRIPTIONS</B>:
This VI demonstrates how to extract even angle reference signals and remove the slow-roll errors. It uses DAQmx VIs to acquire sound or vibration signals and a digital tachometer signal. This VI includes a two-step process: acquire data at low rotational speed to extract even angle reference; use the even angle reference to remove the errors in the vibration signal acquired at normal operation.
<B>INSTRUCTIONS</B>:
1. Run the VI.
2. On the <B>DAQ Configurations</B> tab, specify the <B>sample rate</B>, <B>samples per channel</B>, device and channel configurations, and tachometer channel information.
<B>NOTE</B>: You need to use DSA PXI-447x/PXI-446x and PXI TIO device in a PXI chassis to run this example. The DSA device must be in slot 2 of the PXI chassis.
3. Switch to <B>Extract Even Angle Reference</B> tab. Specify the <B>number of samples to acquire</B> and the <B># of revs in reference</B> which determines the number of samples in even angle reference. Click <B>Start</B> to take a one-shot data acquisition of the vibration and tachometer signals. After the acquisition, you can see the extracted even angle references in <B>Even Angle Reference</B>.
4. Switch to the <B>Remove Slow-roll Errors</B> tab. Click <B>Start</B> to acquire data continuously and view the compensate results. Click <B>Stop</B> in this tab to stop the acquisition.
<B>ORDER ANALYSIS VIs USED IN THIS EXAMPLE</B>:
1. SVL Scale Voltage to EU.vi
2. OAT Digital Tacho Process.vi
3. OAT Get Even Angle Reference.vi
4. OAT Convert to Even Angle Signal.vi
5. OAT Compensate Even Angle Signal.vi
My question is: How is the synchronization produced at the time of the compensation ? How is it possible to eliminate the errors in a synchronized fashion with respect to the surface of the shaft bearing in mind that I am acquired data at a low rotation speed in order to get the "even angle reference" and then I use it to remove the errors in the vibration signal acquired at normal operation. In this application both operations are made in different acquisitions, therefore the reference of the correction signal is lost. Is it simply compensated without synchronizing ?
Our application is based on FPGA and we need to clarity those aspects before implementing the procedure.
Solved!
Go to Solution.

Hi CracKatoA.
Take a look at the link bellow:
http://forums.ni.com/ni/board/message?board.id=170&message.id=255126&requireLogin=False
Regards,
Filipe Silva

Similar Messages

  • I am a novice. I have a few thousand iPhotos stored on Dropbox. But now I have a Canon T5i camera and want to get more involved in photography. I want to open a Lightroom and Photoshop account. I have a Windows desktop and an iPad. Will I have any compati

    I am a novice. I have a few thousand iPhotos stored on Dropbox. But now I have a Canon T5i camera and want to get more involved in photography. I want to open a Lightroom and Photoshop account. I have a Windows desktop and an iPad. Will I have any compatibility issues with PC and Mac? Can I store my photos in Lightroom and eliminate my Dropbox account? Thanks.

    You shouldn't have any compatibility issues. But you don't store images "in" Lightroom. Lightroom simply points to wherever the images are on your system. You might like to watch a few videos that can help you understand how Lightroom works.
    Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV

  • An unknown excel file has appeared on my desktop. It cannot be deleted and I cannot get any information about it. Is this malware?  How can I get rid of it?

    An unknown excel file has appeared on my desktop. It cannot be deleted and I cannot get any information about it.
    Is this malware?  How can I get rid of it?

    Hello Jeff,
    Thanks very much for your reply.  I looked over the article you mentioned, but I have tried all of these methods, but only get the response "The item “29394D00” can’t be moved to the Trash because it can’t be deleted."  Similarly, I cannot Get Info on the file.  This is why I'm so concerned, it just appeared on my desktop, but I cannot touch it, or open it or delete it...
    If you have any more tricks up your sleeve, I'd love to hear about them...
    Derek

  • If I want to retrieve more information about the cookies being stored, such as when the cookie was accessed/created/modified; how can I find this information?

    I would like to have more information about the cookies being stored on my computer via firefox- such as last date accessed/created/modified; how can I add these options to cookie storage?

    Maybe this extension will do that:
    *Cookies Manager+: https://addons.mozilla.org/firefox/addon/cookies-manager-plus/

  • Where can I get more information about website based apps for the iPhone?

    I just forgot and cannot seem to remember what the pages on the web for the iPhone are called. They are interactive and designed for use on the iPhone but are there, called up from the safari browser.
    I'm looking for a good interactive chess game site.
    TIA,
    Ken

    Web Apps
    <http://www.apple.com/webapps/whatarewebapps.html>
    <http://www.apple.com/webapps/>

  • How can i get more info about the sent data in RTP?

    Hello.
    I'm working with the examples AVTransmitt2 and AV Receive2 and i want to get more information about the data that it is being sent to de receiver side. In AVTrasmitt2 i only see a calling to processor.start();. How could i know each packet that AvTransmit2 sends to the other side. I want info like the size of the data, the quality, format, etc..

    Hi!
    As I mentioned above. RTPSocketAdapter has two inner classes, SockOutputStream and SockInputStream.
    SockOutputStream have a write method which is called when RTP data is sent over the NET. SockInputStream have a read method which is called when RTP data is received.
    If you for instance want to know exactly what is sent you can parse the byte array that comes into write.
    Like this:
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean isRTCP;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port, boolean isRTCP) {
              this.sock = sock;
              this.addr = addr;
              this.port = port;
         public int write(byte data[], int offset, int len) {
              if(isRTCP){
                   parseAndPrintRTCPData(data);               
              }else{
                   parseAndPrintRTPData(data);
              try {
                   sock.send(new DatagramPacket(data, offset, len, addr, port));
              } catch (Exception e) {
                   return -1;
              if(debug){
                   System.out.println(debugName+": written "+len+" bytes to address:port: "+addr+":"+port);
              return len;
    private void parseAndPrintRTPData(byte[] data) {
         // part of header, there still left SSRC and CSRC:s
         byte[] rtpHeader = new byte[8];
         System.arraycopy(data, 0, rtpHeader, 0, rtpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // extension
         int x = (word & 0x10000000) >>> 28;
         System.out.println("extension: "+x);
         // CSRC count
         int cc = (word & 0x0F000000) >>> 24;
         System.out.println("CSRC: "+cc);
         // marker
         int m = (word & 0x00800000) >>> 23;
         System.out.println("marker: "+m);
         // payload type
         int pt = (word & 0x00700000) >>> 16;
         System.out.println("payload type: "+pt);
         // sequence number
         int seqNbr = (word & 0x0000FFFF);
         System.out.println("sequence number: "+seqNbr);
         // timestamp
         int timestamp = buffer.getInt();
         System.out.println("timestamp: "+timestamp);
    private void parseAndPrintRTCPData(byte[] data) {
         // this only works when the RTCP packet is a Sender report (SR).
         // All RTCP packets are compound packets with a SR or Receiver report (RR) packet first.
         // part of header, there is still the report blocks (see RFC 3550).
         byte[] rtcpHeader = new byte[28];
         System.arraycopy(data, 0, rtcpHeader, 0, rtcpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtcpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // reception report count
         int rc = (word & 0x0F000000) >>> 24;
         System.out.println("reception report count: "+rc);
         // payload type, which is 200 in this case (SR=200)
         int pt = (0x00FF0000 & word) >>> 16;
         System.out.println("payload type: "+pt);
         // length
         int length = (word & 0x0000FFFF);
         System.out.println("length: "+length);
         // SSRC of sender
         int ssrc = buffer.getInt();
         System.out.println("SSRC: "+ssrc);
         // NTP timestamp
         long ntp_timestamp = buffer.getLong();
         System.out.println("NTP timestamp: "+ntp_timestamp);
         // RTP timestamp
         int rtp_timestamp = buffer.getInt();
         System.out.println("RTP timestamp: "+rtp_timestamp);
         // sender's packet count
         int nbrOfSentPackets = buffer.getInt();
         System.out.println("sender's packet count: "+nbrOfSentPackets);
         // sender's octet count
         int nbrOfSentBytes = buffer.getInt();
         System.out.println("sender's octet count: "+nbrOfSentBytes);
    }I added a boolean isRTCP to the constructor so to know what sort of data is sent.
    Hope this clarifies things.

  • Are the fonts installed with the Mac OS OK to use for commercail use? ie, a logo which willbe used for packaging, TV broadcast and internet.

    Are the fonts installed with the Mac OS 10.6 OK to use for commercial use? ie, a logo which willbe used for packaging, TV broadcast and internet.

    srjeffgr wrote:
    Some font foundries require extended licesnes for different uses.
    You're welcome. Again, as mentioned in that discussion, you can use Font Book to check if the foundry has entered any license limitation notices in the font info (Preview > Show Font Info).
    Basically, fonts are code. The copyright applies to the code. If the product you distribute doesn't include the code, then the copyright does not apply to it. That's why embedding has to be dealt with specifically, because embedding fonts in a document means including the code or parts of it in the document.

  • Optical drive on iMac at work, barely one year old, won't read CD's....disc utilities shows disc unavailable!  Rarely used and out of warranty, what a rip off!!  I have been on MACS since the 80's and things are getting more and more difficult

    Optical drive on iMac at work, barely one year old, won't read CD's....disc utilities shows disc unavailable!  Rarely used and out of warranty, what a rip off!!  I have been on MACS since the 80's and things are getting more and more difficult to deal with. Why did it quit after barely being used? Any help from Apple?

    It depends on what you mean by "barely one year old". If the iMac is only a couple of days out of warranty, Apple's been known to make exceptions and extend the warranty, though it's by no means guaranteed. If it's several days or more out of warranty, then Apple will fix it, if it's a hardware problem, but the repair won't be free. This is no different now then it would have been with a Mac purchased back in the 80s.
    Why the drive failed, if indeed it has, is impossible to say. Could have been a static shock, a weak component that failed when power was applied, or a mechanical fault in one of the tiny parts used in optical drives and hard drives that finally broke.
    Regards.

  • I have a problem with my white macbook, this message keeps popping up when I start the laptop " no matching processes belonging to you were found " even though I didn't mess up with the system or even use terminal. It just appeared

    I have a problem with my white macbook, this message keeps popping up when I start the laptop " no matching processes belonging to you were found " even though I didn't mess up with the system or even use terminal. It just appeared without Doing anything!!
    And now I can't use the " tap an click " from my tack-board and no nothing was spilled on my mac.
    Please help  

    Check your login items in the Users & Groups preference pane. Remove any that you don't recognize.

  • HT1926 I received an ITunes and Quicktime update notice on my Windows 7 PC, from Apple this morning. During the update installation, RealPlayer installed. What gives? Why is Realplayer installing with the Apple software.

    I received an ITunes and Quicktime update notice on my Windows 7 PC, from Apple this morning. During the update installation, RealPlayer installed. What gives? Why is Realplayer installing with the Apple software.

    Thanks for the reply. I went back to check if there was a history in windows (Event Viewer) but could not locate it in Win7. The only updates that were in the Apple Updater window were the Quicktime and ITunes. Had I let the Realplayer continue on its own, it would have installed the Google Chrome and other apps. I let it finish installing and then removed the entire program. I do not remember checking or seeing anything saying that realplayer was being downloaded until after a reboot was requested from the ITunes Update Installer.
    I just thought it was strange since I do not use Realplayer and have not downloaded any software for it.
    I am on a corporate PC with a pretty thick firewall, but something may have slipped through.
    Thanks again for the assistance.

  • I have Fox, CNN, and BBC always open on my screen using AOL within Firefox. I want to get rid of AOL. What can I do to have the same screen (yes, bookmarks are on the left.

    I want to have several web sites open on my screen at the same time, in "boxes" showing the headlines, like I now have on my AOL screen.
    AOL is not working right, and I want to get rid of it.
    Thanks for your help

    Firefox 4+ versions use a new build-in home page named <b>about:home</b> with a Google search bar on it (no internet access needed to load that page).<br />
    That about:home page only shows some snippets and has a button to restore the previous session if applicable.
    If you want a home page without the Restore Previous Session button and the snippets then set another page as the home page like www.google.com used in Firefox 3 versions.
    You may be seeing a similar ad on the Google site to install Google Chrome.<br />
    In that case use the close X on that ad to close that pop-up and it should stay away unless local storage gets cleared.

  • I seem to have lost carrier settings on my iPad1,I've tried a restore and update but get a message about the original sim card,which I still have but is inactive,really inconvenient as I can only use in wifi spots and off line mode,please help,sibear.

    I seem to have lost carrier settings on my iPad1,I've tried a restore and update but get a message about the original sim card,which I still have but is inactive,really inconvenient as I can only use in wifi spots and off line mode,please help,sibear.

    You might want to download something called an undelete utility. These can find files and recover them even after they appear to have been lost. There are some undelete utility programs that are free. Look at tucows.com
    Also, it appears that you have POSSIBLY overwritten the actual files, which you moved manually, with I don't know what, which you moved in PSE's folder location view.
    Next, in the future ... NEVER (that's: don't even think about it) move your photos in Windows. NEVER. NEVER. Not ever. Not once. This always (that's ALWAYS, as in 100% of the time) causes problems and usually makes things difficult to fix.
    Lastly ... make regular backups! I must say this in the forums about seventy bazillion times a month. Make regular backups! Regular depends on how often you take photographs and edit them. Since my photographic activity usually happens on the weekends, I make backups every Sunday night. You may need a different schedule, depending on your activity level. MAKE REGULAR BACKUPS!

  • The last Apple I used was a IIe. Where can I find basic information about what an Ipad will do and how it differs from an Android tablet?

    The last Apple I used was a IIe. Where can I find basic information about what an Ipad will do and how it differs from an Android tablet?
    I am considering purchasing this for my wife who has only had experience with Windows machines.

    Here are a number of possibilities:
    http://ipad.about.com/od/iPad_Guide/a/How-To-Use-The-iPad-Best-Uses.htm
    http://www.macobserver.com/tmo/article/8-important-things-you-can-do-with-an-ipa d
    http://iconlibrary.iconshock.com/tutorials/50-things-you-can-and-cant-do-with-yo ur-new-ipad/
    iPad vs Android:
    http://ipad.about.com/od/ipad_competition/tp/iPad-vs-Android-Which-Tablet-Should -You-Buy.htm
    http://www.cnet.com/topics/tablets/best-tablets/

  • Since iphone 5 6.1.3 upgrade mine has been running hot and reduced the battery life. Before I was getting 2days out of it. Now it's half a day ... No new apps and I've been closing down fully all apps. I think something is definitely up with 6.1.3

    Since iphone5 6.1.3 upgrade mine has been running hot and totally reduced the battery life. Before I was getting 2days out of it. Now it's half a day ... No new apps and I've been closing down fully all apps. I think something is definitely up with 6.1.3
    Are there many others experiencing this?

    The number of apps that run in the background are very few and far between. An app being in the recently used apps bar or dock means just that for the most part - the app was recently used only and is not running.
    Have you powered your iPhone off and on and/or tried a reset which is similar to a computer restart since the update was installed?
    Are you accessing an Exchange account with the Mail app on your iPhone?

  • Firefox plays video, but no sound. when I type about:plugins in location bar, it shows the firefox default plugin is not enabled. When I look at my plugins, it says it is enabled. I have uninstalled 3.6 and re-installed with the same result.

    firefox plays video, but no sound. when I type about:plugins in location bar, it shows the firefox default plugin is not enabled. When I look at my plugins, it says it is enabled. I have uninstalled 3.6 and re-installed with the same result. Why do I have no sound. Computer plays I-tunes and all other sounds, just no web browser sounds.

    Glad you seem to have sorted things out.
    The warning about the warranty is light hearted, I think at one stage it warned "here be dragons" but also intended to make us think as it warns that making changes may produce problems.

Maybe you are looking for

  • How do I transfer photos/videos from my Iphone 5 to my Macbook Air. I can do so with my Iphone 4s but not with my Iphone 5

    How do I transfer photos/videos from my Iphone 5 to my Macbook Air. I can do so using my Iphone 4s but not with my Iphone 5

  • How do I take mountain lion off my MacBook Pro

    I recently updated my 2009 MacBook Pro to mountain lion and it has been a disaster. My computer gets very hot, up 170 degrees F and it freezes up and beacballs. I tried to reinstall snow leopard but it will not reinstall and freezes up during the ins

  • Operation timed out

    hi i am having 2 servers in which one is having Oracle prod DB 9.2.0.6 and other is having 4 oracle prod db's of 9.2.0.6 plus a training database of 9.2.0.6. i am having 20 client machines through which am able to connect to 4 prod db's of server 2.

  • How to make all the rows of a table editable

    I have a table in a view, with visibileRowCount property as 5. The internal table which is bound to the context has 2 rows. I want to make all the 5 rows of this table as editable. As of now, as there are just 2 rows in the internal table, only the f

  • Urgent !!!  FRM-90926--- Webutil

    Hi, i am trying to use webutil in Forms. I am using Forms 9iDS. when i am running the forms i am getting the error FRM-90926 ' Duplicate parameter on Command LIne' my java console is giving the following message Loading http://localhost:8888/forms90/