Laboratory 3 - Procedure

In this lab, you will measure the first 3 natural frequencies, \(\omega_n\), of a rectangular beam using strain gauge data. Your goal is to measure the free response time series data using a strain gauge. With this data, you will determine the first natural frequency in two ways:

  • (i) by peak counting in the time domain (which gives a very rough estimate of \(\omega_n\))

  • (ii) by a formal frequency domain analysis, using the fast Fourier transform (FFT).

For a rectangular beam, analytic expressions of the natural frequencies exist, and you can confirm that you’re doing everything properly by getting the analytical frequencies to agree with the experimental frequencies.

Task 0 - LabView Prep

  • Familiarize yourself with the LabView frequency interface. Give the beam an impulse, and watch the output. What happens when you change the sampling frequency? What happens when you change the sampling duration?

  • You may need to change the output directory for the LabView VI. Bring up the block diagram with CTRL+E, and right-click on the “Write To Measurement File” block. You will be able to select a directory. Your desktop, or any other easily accessible location, is ideal. You will need to keep some of the output data.

Task 1 - Calculating Natural Frequencies

  • Calculate the theoretical values for the first three natural frequencies of your beam using equation 1.

    \(\omega_i=\beta_i^2\sqrt{\frac{EI}{\bar{m}L^4}}\) (1)

\(\omega_i\) is the \(i^{th}\) natural frequency, given in rad/s.

\(\bar{m}\) is the mass per unit length of the beam - you can look up the density of your material, and measure the beam’s dimensions

\(E\) is the Young’s modulus of the material - you calculated this last lab.

\(\beta_i\) is a constant corresponding to the \(i^{th}\) natural frequency and vibration mode:\(\beta_1=1.875104\), \(\beta_2=4.694091\), \(\beta_3=7.854757\)

Task 2 - Finding the First Natural Frequency in the Time Domain

  • Record data in LabView for an impulse response of your beam. Keep in mind the Nyquist frequency discussed in the Background and Resources notebook. Adjust your sampling frequency if necessary until you see a “smooth” output.

  • Either from LabView itself or from the spreadsheet output, calculate \(\omega_1\). You can do this by inspection - how may amplitude peaks do you see per unit time?

  • Does your observation match your prediction?

Task 3 - Finding Natural Frequencies with the Fast Fourier Transform

  • Perform a fast Fourier transform (FFT) on your data, using either Python or Matlab

  • Inspect the graph of the FFT to find \(\omega_1\), \(\omega_2\), and \(\omega_3\).

  • Keep in mind the following:

  1. There is noise in your data. If the mean of that noise is non-zero, you may want to adjust it to eliminate systematic error. A constant offset will show up as a spike at zero in your FFT - it is changing at 0 Hz, in other words not at all. You can remove this error by subtracting the mean of your data from your data.

  2. As explained in the Background and Resources notebook, your FFT will be mirrored. Disregard any frequency spikes above one-half of your sampling frequency. You may wish to restrict your data plots to an appropriate interval to make things easier to see.

  3. Peaks two and three will get progressively smaller. They can be made larger by applying your impulse to the proper spot of the beam. Refer to Figure 1 in the Background and Resources notebook. You will want to strike your beam at the point of largest deflection. In other words, between the stationary nodes.

  4. Performing an FFT on a very long sample of data will amplify the noise inherent in the signal. It is sometimes advantageous to “window” your data, extracting a shorter sample to use for analysis.

  5. If you have trouble seeing the higher modes, try experimenting with windowing your data and striking the beam in different ways.