Presentation is loading. Please wait.

Presentation is loading. Please wait.

Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 1 Practical Application of the Rayleigh-Ritz Method to Verify Launch Vehicle Bending Modes.

Similar presentations


Presentation on theme: "Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 1 Practical Application of the Rayleigh-Ritz Method to Verify Launch Vehicle Bending Modes."— Presentation transcript:

1 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 1 Practical Application of the Rayleigh-Ritz Method to Verify Launch Vehicle Bending Modes By Tom Irvine

2 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 2 Objective Determine the natural frequencies and mode shapes of a suborbital launch vehicle via the Rayleigh-Ritz method. Compare the Rayleigh-Ritz results with the finite element results. The implementation of the Rayleigh-Ritz method is innovative in that it uses random number generation to determine an optimum displacement function for each mode.

3 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 3 Need for Analytical Verification Launch vehicles have closed-loop guidance and control systems. The body-bending frequencies and mode shapes must be determined for the control system analysis. The FEM is used as the primary analysis method for determining the bending modes. The Rayleigh-Ritz method is used to verify the FEM results. Ideally, modal testing would also be performed for verification. Program managers often forgo modal testing out of cost and schedule considerations. This decision increases the importance of analytical verification of the bending modes.

4 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 4 Comparison of Methods The Rayleigh-Ritz Method uses a single displacement function for each mode across the entire length of the vehicle. The FEM uses a single displacement function across each element. The elemental displacement functions are then assembled into a piecewise continuous function for the entire length. Both methods can account for mass and stiffness variation with length. As an aside, the FEM itself can be derived from the Rayleigh-Ritz method, but the application is different as explained above.

5 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 5 Suborbital Vehicle A suborbital launch vehicle has three solid motor stages, a liquid trim fourth stage, a payload, and a fairing. The vehicle length is 848 inches. The maximum diameter is 92 inches. The total vehicle mass is 196,000 lbm at time zero.

6 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 6 Mass Variation at Time Zero

7 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 7 Stiffness Variation The EI values are very low at the vehicle’s six joints

8 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 8 Rayleigh-Ritz Method maximum kinetic energy = maximum potential energy Note that strain energy is the potential energy for beam bending modes. The suborbital vehicle is modeled as a beam for the Rayleigh-Ritz and FE methods.

9 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 9 Maximum Kinetic Energy T where y is the displacement function  is mass per length L is the length is the natural frequency

10 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 10 Maximum Potential Energy P where E is the elastic modulus I is the area moment of inertia This equation is only useful for very simple cases, because any error in the displacement function is compounded by taking the first and second derivatives.

11 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 11 Shear Force and Moment The shear force V is the integral of the inertial loading from the free end. The moment M at x is found from the integral of the shear force. The strain energy of the beam is then found from the integral of the moment.

12 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 12 Mass Coefficients Divide the vehicle into r segments. The mass coefficients are determined from the kinetic energy. where y i is the displacement shape for the i th mode

13 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 13 Stiffness Coefficients is the moment function for mode shape i at station q where But each moment term M has an embedded  n 2, which is unknown.

14 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 14 Modifications Define a modified moment. The stiffness coefficients become

15 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 15 Modifications (Continued) Define a modified stiffness matrix

16 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 16 Eigenvalue Problem The modification leads to an unusual form of the generalized eigenvalue problem.

17 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 17 Rayleigh-Ritz Displacement Function The launch vehicle is modeled as a free-free beam. The displacement function is assumed to be a fourth-order polynomial. The coefficients are determined by trial-and-error using random number generation, via a computer program. The program was written in C++ by the author.

18 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 18 Optimization Goals 1.The number of nodes should be equal to the mode number plus 1. 2.The CG displacement should be zero. (free-free beam) 3.The shear force and bending moment at each end should be equal to zero. 4.The mode shapes should be orthogonal with respect to one another such that the off-diagonal terms of the mass and stiffness matrices are zero. The polynomial coefficients are determined by a trial-and-error optimization method. The optimization seeks to satisfy the following goals:

19 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 19 Steps for First Mode 1. Require that the polynomial meets the following conditions: y(0) = 1. (aft end) y(1) = a random number from zero to 4. (fwd end) y(x) = zero at each of two randomly selected x values, representing nodes. y(x) = a negative random number as low as –3 between the nodes. These conditions yield four equations with four unknown coefficients. 2. Use Gaussian elimination to solve for the polynomial coefficients that satisfy the conditions in step 1. 3. Add a constant to the polynomial so that the CG displacement is zero.

20 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 20 Steps for First Mode (continued) 4. Verify that the polynomial has two nodes. 5. Scale the coefficients so that the maximum value of y(x) is 1. 6. Calculate the shear and moment functions. 7. Repeat steps 1 through 6, say, one hundred thousand times. 8. The selected mode shape is the polynomial which most closely satisfies the boundary conditions of zero shear and zero bending moment at each end of the beam. 9. Determine the natural frequency using the Rayleigh method.

21 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 21 Steps for Second Mode The first mode shape is permanently retained for calculation of the second mode shape. The calculation steps for the second mode are similar to those for the first mode. The second mode, however, is required to have three nodes. Again, compliance with the boundary conditions is checked. Furthermore, an orthogonality check is performed between each candidate mode shape with respect to the first mode shape. The results are used to select the optimum polynomial for the second mode shape. Finally, the natural frequencies are calculated from the 2 x 2 generalized eigenvalue problem.

22 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 22 Steps for Third Mode The first and second mode shapes are permanently retained for calculation of the third mode shape. Four nodes are required for the third bending mode. Otherwise, the steps for the third bending mode are similar to those of the second mode. The natural frequencies are calculated from the 3 x 3 generalized eigenvalue problem.

23 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 23 Rayleigh-Ritz Frequency Results

24 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 24 Frequency Comparison Natural Frequency Results, Time Zero ModeRR Freq (Hz) FEA Freq (Hz) Difference 16.94 0.0% 215.615.22.6% 334.231.68.2% FE model had 867 CBAR elements. FE software was NE/Nastran.

25 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 25 First Mode Shape The arrows indicate the locations of two of the vehicle joints.

26 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 26 Second Mode

27 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 27 Payload Considerations The vehicle in the previous example had a 6000 lbm payload. The payload was considered to have sufficiently high stiffness that its natural frequency could be neglected. This is typical for suborbital vehicle payloads. The payload mass was thus lumped into the model at the payload CG location. A later analysis treated the payload mass with greater fidelity. Specifically, the payload mass was attached to the payload interface via a rigid-link. This required a branch in both the Rayleigh-Ritz and finite element models. The branch technique may be the subject of a future paper.

28 Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 28 Conclusions n The Rayleigh-Ritz method uses a single displacement function to represent each mode shape. n The displacement function was taken as a fourth order polynomial in this report. n The polynomial coefficients were derived using random numbers. n Coefficients were selected on the basis of the optimum compliance with the boundary conditions and orthogonality requirements. n The agreement between Rayleigh-Ritz and FE methods was within 8.2% for the respective frequencies of the first three modes, at time zero.


Download ppt "Vibrationdata AMERICAN INSTITUTE OF AERONAUTICS AND ASTRONAUTICS 1 Practical Application of the Rayleigh-Ritz Method to Verify Launch Vehicle Bending Modes."

Similar presentations


Ads by Google