07-08-2016 07:27 AM
Hi all,
I am trying to normalize plots. I have an accelerometer giving me three axis of data and a proximity sensor giving me data for the rpms of a motor. I am currently using a measurement computing DAQ which runs the NI ULx driver. My overall goal is to be able to see the vibrations as a function of rotational speed.
Thanks
07-11-2016 04:45 PM
If you could save for LV 2012 or earlier I can take a look. It seems like a very large file size for a single VI. Can you not just divide by the maximum value of the curve to normalize it?
07-12-2016 05:17 PM
Hi jhealey,
Could you elaborate on what you mean by normalizing the data in this context? Do you intend for each plot to have the same x- and/or y-axis limits? Are you expecting your data to always fall within a certain range?
07-13-2016 04:29 AM
What you look for are order analyses, and you want to resample the data to even angle instead of even time. Have a look at the sound and vibration modules, it all there 🙂
One pulse per revolution is not that much... but it depends what you are looking for and how your system behaves....
07-13-2016 06:05 AM
Tom,
I like my plots to each be a rpm versus vibrations data. Basically showing that as your speed increases, so does your vibrations.
Thanks
07-14-2016 09:30 AM
Hi jhealey,
How are you planning on calculating vibration? I am guessing it is based on the x-, y-, and z-axis coordinates somehow?
07-14-2016 09:50 AM
Tom,
My accelerometer gives me readings for the X, Y, and Z directions. I have converted the voltage outputs into units with gravity. I bundled the readings from each to show one plot with three readings. Is there any way to really make this an rpm vs vibration plot? Preferably on one plot but if one for each direction is needed, that will work for my application.
07-14-2016 10:46 AM
You want to plot RPMs on the y-axis and vibration on the x-axis? It sounds like you already have the RPMs array. For the vibration array, you could take the magnitude (sqrt(x^2 + y^2 + z^2)) and plot along the x axis. You can either bundle into a cluster, or use the re/im to complex function, and then wire into an xy graph.