MEMS 431 (FL10) Lab 6

Modal Analysis of a Cantilever Beam

Objective

To estimate the natural frequencies and mode shapes of a continuous system using impact excitation.

Background

A modally-tuned impact hammer is instrumented with a piezoelectric force transducer and connected to a PC-based data acquisition system. The Fast Fourier Transform (FFT) of the impact force describes the force delivered as a function of frequency. The FFT of the impact force applied at location will be denoted . A transducer measures the response (displacement or acceleration) of the beam at a fixed location. The FFT of the response signal, , will contain peaks at the natural frequencies .

To normalize the response with respect to the force input, the transform of the response is divided by the transform of the impact force. This normalized response is the frequency response function (FRF), also sometimes called the transfer function. The FRF between a force (input) at location k and the response (output) at another location is just the output divided by the input.

     (1)     

For a fixed response location the elements of the nth mode shape can be estimated from

     (2)     

where is the kth element of , is the nth natural frequency, and is a constant. denotes the imaginary part. The complete mode shape is obtained by applying the impact force at many locations, , and constructing from the resulting estimates of .

Theory

How does this method work? Consider the ideal discrete mechanical system

     (3)     

This system can be uncoupled using normal modes (see B.H. Tongue, Principles of Vibration, 4.7-4.9) and the equation for each modal coordinate can be written:

     (4)     

where is the nth mode shape and is a constant. Now consider also that the force is modeled by an impulse function in time, which is zero except at the kth location: . Then the uncoupled equation is

     (5)     

The excitation (right hand side), and thus the response of the nth modal coordinate, normalized with respect to the impact force , is simply proportional to . This modal response is estimated from the imaginary part of the nth peak of the transfer function.

Mode shape

Why use the imaginary part of the FRF at ? Laplace transforming Equation (5), and letting , we get the FRF between the modal response and the input force:

     (6)     

Now let , for two reasons. (1) The response at a given site will be dominated by the nth mode when , and (2) the FRF becomes simply a constant multiplied by the corresponding element of the mode shape.

     (7)     

Finally, Equation (7) can be rewritten to obtain

     (8)     

which is equivalent to Equation (2) (the stuff in the curly brackets = ).

Reading

Review sections in the text concerning modal analysis.

Procedure

Step 1: Initialize the equipment

Turn on equipment and start the data acquisition program.

Step 2: Find the natural frequencies

Gently strike the beam with the impact hammer and observe the response of the force sensor and the response transducer. In particular note the characteristics of the response FFT and the FRF. What are the first three or four natural frequencies of the beam.

Step 3: Find the mode shapes

Apply impacts at equally spaced locations along the beam. After each impulse, record 1) the value of the FRF's imaginary part at each of the first three natural frequencies, and 2) the location of the impact. Repeat the hit twice at each location.

Analysis

The un-normalized mode shape is simply the list of the peaks in the imaginary part of the FRF at each frequency. Plot each mode as a function of the location of impact. Keep track of which peaks should be plotted in the negative direction. You will end up with three plots, each of which is an estimated mode shape. Normalize your mode shapes so each mode has amplitude 1 at the tip (divide every element of the vector by the element at the tip).

Theory

Compare the experimental natural frequencies to theoretical frequencies for the first three modes of an "equivalent" uniform cantilever beam (formula provided, see Table 1). Compare the experimentally determined mode shapes to the theoretical mode shapes of a uniform cantilever beam. (You should normalize the theoretical mode shapes to have amplitude = 1 at the tip.). Use the following material parameters:

               

Use average values for height and area. Note that the mode shape is multiplied by an arbitrary factor , which can be used to normalize the mode shape, and that . A good way to do this is in MATLAB (as shown below for mode 1. You will need to enter . You can make similar plots for modes 2 and 3):

>> xL = 0.0:0.01:1.0;
>> BL1 = 1.875; s1 = 0.7341;
>> phi1 = cosh(BL1*xL) - cos(BL1*xL) - s1*(sinh(BL1*xL) - sin(BL1*xL));
>> phi1 = phi1/phi1(end);
>> w1 = (BL1/L)^2*sqrt(E*I/(rho*A));
>> subplot(3,1,1), plot(xL,phi1);

Table 1. Theoretical natural frequencies and mode shapes of any uniform cantilever (fixed-free) beam. To find the value of for a specific beam, take the value of and divide by the length of the beam.

Report

No specific format is required. Simply turn in a clear document with: (1) values for the first three natural frequencies (theory and experiment) and (2) plots of the first three mode shapes (theory and experiment).