Session 2: MDOF systems

Size: px
Start display at page:

Download "Session 2: MDOF systems"

Transcription

1 BRUFACE Vibrations and Acoustics MA Academic year 7-8 Cédric Dumoulin Arnaud Deraemaeker Session : MDOF systems Exercise : Multiple DOFs System Consider the following three degrees-of-freedom model: k c m k c m k c m x x x f Figure -DOFs system A) Write the equations of motion in the time domain in a matrix form. m x c + c c x k + k k m x m + c c c x c c + k k k k k x x x x x = f B) For the numerical values m = kg, k = k = 6 N/m, c = c =. Ns/m, compute the eigenfrequencies and the modeshapes of the conservative system. Represent the modeshapes, and check the orthogonality conditions.. Solve the problem: ( K ω i M ) ψ i = The orthogonality conditions are given by ψ i Kψ T i = ω i ψ i Mψ T i = ω i µ i

2 clear all; close all;clc; % Build matrices of the system m=; k=6; k=6; c=.; c=.; K=[k+k k ; k *k k ; k k]; M=[m ; m ; m]; C=[c+c c ; c *c c ; c c]; % compute and represent modeshapes [V,D]=eig(K,M); f=/(*pi)*sqrt(diag(d)); % frequencies in Hz figure; subplot(,,); barh(v(:,)); title(['mode / ' numstr(f()) ' Hz']) subplot(,,); barh(v(:,)); title(['mode / ' numstr(f()) ' Hz']) subplot(,,); barh(v(:,)); title(['mode / ' numstr(f()) ' Hz']) % Check orthogonality MU=diag(V'*M*V) % mass normalized WMU=diag(V'*K*V) disp(mu) disp(wmu) disp([wmu./mu diag(d)]); mode /.8 Hz mode /.7985 Hz.5.5 mode /.47 Hz.5.5 C) Compute the mode shapes and the eigenfrequencies when k =. Represent the mode shapes. Comment %% now with k=; k=; Kd=[k+k k ; k *k k ; k k]; M=[m ; m ; m]; C=[c+c c ; c *c c ; c c];

3 % compute and represent modeshapes [Vd,Dd]=eig(Kd,M); fd=/(*pi)*sqrt(diag(dd)); % frequencies in Htz figure; subplot(,,); barh(vd(:,)); title(['mode / ' numstr(fd()) '... Hz']) subplot(,,); barh(vd(:,));title(['mode / ' numstr(fd()) '... Hz']) subplot(,,); barh(vd(:,)); title(['mode / ' numstr(fd()) '... Hz']) mode / 6.65e 9 Hz mode /.666 Hz.5.5 mode /.7 Hz.5.5 The first mode shape has a frequency of Hz. This is because when k =, the three masses are free to float. The mode shape corresponds to a translation of all masses in phase and with the same amplitude. This is called a rigid body mode, because there is no strain energy in the system (the springs are not compressed). D) For the value of k = k, compute the impulse response for x by projecting the equations of motion in the modal basis. Represent the Bode diagram for the same coordinate x, and for the acceleration ẍ. Is the modal damping hypothesis valid. Multiply by a factor 5 the damping coefficient of mode and plot the Bode diagram for x on the same graph as with the initial value of the damping. Comment. The projection in the modal basis results in three indepent equations of the form µ i ( z i + ξ i ω i ż i + ω i z i ) = F i

4 The force F i exciting each mode is given by (the force f is only acting on x ): T V V V F = V V V V V V V = V V Therefore we see that: F i = V i For one mode, the impulse response corresponds to the impulse response of a DOF system with h i (t) = e ξ iω i t µ i ω di sin(ω di t) ω di = ω i ξ i The impulse response at point x is therefore given by (one must multiply the impulse response both by F i and the amplitude of the respective mode at x ) h(t) = V i F i h i (t) = i= i= V e ξ iω i t i sin(ω di t) µ i ω di Similarly, the response in the frequency domain is given by: H (ω) = i= V i ω ω i + jξ i ωω i Here is the corresponding Matlab code: %% Projection in the modal basis mui=diag(v'*m*v); wi=sqrt(diag(v'*k*v))./mui; xi=(./(*mui.*wi)).*diag(v'*c*v); wd=wi.*(sqrt( xi.^)); F=V'*[;;]; %% Impulse response t=linspace(,,); u=zeros(,length(t)); for i=: u=u+v(,i)*(f(i)*exp( xi(i)*wi(i)*t)/(mui(i)*wd(i))).*sin(wd(i)*t); figure; set(gca,'fontsize',5) plot(t,u); xlabel('time (sec)'); ylabel('amplitude (m)') title('impulse response x_') 4

5 .4 impulse response x.. Amplitude (m) time (sec) %% Bode diagram w=linspace(,,); U=zeros(,length(w)); for i=: U=U+ (F(i)*V(,i))./(w.^ wi(i)^ + *j*xi(i)*wi(i)*w); figure; set(gca,'fontsize',5) plot(w,*log(abs(u)),'k','linewidth',); hold on xlabel('freq(rad/s)'); ylabel('ampl (db)') xi()=xi()*5; U=zeros(,length(w)); for i=: U=U+ (F(i)*V(,i))./(w.^ wi(i)^ + *j*xi(i)*wi(i)*w); plot(w,*log(abs(u)),'r','linewidth',) leg('initial','5 times damp mode ') title('bode diagram displacement x_') 4 Bode diagram displacement x initial 5 times damp mode Ampl (db) Freq(rad/s) 5

6 % Acceleration A=( w.^).*u; figure; set(gca,'fontsize',5) plot(w,*log(abs(a)),'k','linewidth',); xlabel('freq(rad/s)'); ylabel('ampl (db)') title('bode diagram acceleration x_') 4 Bode diagram acceleration x Ampl (db) Freq(rad/s) The modal damping hypothesis is valid because the damping matrix is proportional to the stiffness matrix. When multiplying by 5 the damping factor of mode, the frequency response function at x is only affected around the second natural frequency of the system. E) Consider the case when c =. Is the modal damping hypothesis still verified? Draw the Bode diagram for x using the full system of equations (solve frequency by frequency). Compare with the modal approach in which the coupling is neglected. Comment c=; C=[c+c c ; c *c c ; c c]; % Direct reference method U=zeros(,length(w)); for i=:length(w) U(:,i)=(K w(i)^*m + j*w(i)*c)\[ ]'; figure; set(gca,'fontsize',5) plot(w,*log(abs(u(,:))),'k','linewidth',); hold on xlabel('freq(rad/s)'); ylabel('ampl (db)') % Modal damping hypothesis xi=(./(*mui.*wi)).*diag(v'*c*v); U=zeros(,length(w)); for i=: U=U+ (F(i)*V(,i))./(w.^ wi(i)^ + *j*xi(i)*wi(i)*w); plot(w,*log(abs(u)),'r','linewidth',) leg('direct method','modal approach') title('bode diagram displacement x_') 6

7 4 Bode diagram displacement x direct method modal approach Ampl (db) Freq(rad/s) The damping matrix is not proportional to the stiffness matrix anymore. Nevertheless, as the damping is quite small (only a few percents for each mode, see values of ξ i in Matlab), the approximation is very good and there is almost no difference between the direct exact method and the decoupled modal approach. Note: Use the eig function to compute the eigenfrequencies and mode shapes. 7

Session 1 : Fundamental concepts

Session 1 : Fundamental concepts BRUFACE Vibrations and Acoustics MA1 Academic year 17-18 Cédric Dumoulin (cedumoul@ulb.ac.be) Arnaud Deraemaeker (aderaema@ulb.ac.be) Exercise 1 Session 1 : Fundamental concepts Consider the following

More information

Dynamics of structures

Dynamics of structures Dynamics of structures 2.Vibrations: single degree of freedom system Arnaud Deraemaeker (aderaema@ulb.ac.be) 1 Outline of the chapter *One degree of freedom systems in real life Hypothesis Examples *Response

More information

Dynamics of structures

Dynamics of structures Dynamics of structures 2.Vibrations: single degree of freedom system Arnaud Deraemaeker (aderaema@ulb.ac.be) 1 One degree of freedom systems in real life 2 1 Reduction of a system to a one dof system Example

More information

Multi Degrees of Freedom Systems

Multi Degrees of Freedom Systems Multi Degrees of Freedom Systems MDOF s http://intranet.dica.polimi.it/people/boffi-giacomo Dipartimento di Ingegneria Civile Ambientale e Territoriale Politecnico di Milano March 9, 07 Outline, a System

More information

Dynamics of Structures

Dynamics of Structures Dynamics of Structures Elements of structural dynamics Roberto Tomasi 11.05.2017 Roberto Tomasi Dynamics of Structures 11.05.2017 1 / 22 Overview 1 SDOF system SDOF system Equation of motion Response spectrum

More information

Design of Structures for Earthquake Resistance

Design of Structures for Earthquake Resistance NATIONAL TECHNICAL UNIVERSITY OF ATHENS Design of Structures for Earthquake Resistance Basic principles Ioannis N. Psycharis Lecture 3 MDOF systems Equation of motion M u + C u + K u = M r x g(t) where:

More information

3. Mathematical Properties of MDOF Systems

3. Mathematical Properties of MDOF Systems 3. Mathematical Properties of MDOF Systems 3.1 The Generalized Eigenvalue Problem Recall that the natural frequencies ω and modes a are found from [ - ω 2 M + K ] a = 0 or K a = ω 2 M a Where M and K are

More information

ME scope Application Note 28

ME scope Application Note 28 App Note 8 www.vibetech.com 3/7/17 ME scope Application Note 8 Mathematics of a Mass-Spring-Damper System INTRODUCTION In this note, the capabilities of ME scope will be used to build a model of the mass-spring-damper

More information

Identification Methods for Structural Systems. Prof. Dr. Eleni Chatzi Lecture March, 2016

Identification Methods for Structural Systems. Prof. Dr. Eleni Chatzi Lecture March, 2016 Prof. Dr. Eleni Chatzi Lecture 4-09. March, 2016 Fundamentals Overview Multiple DOF Systems State-space Formulation Eigenvalue Analysis The Mode Superposition Method The effect of Damping on Structural

More information

THE subject of the analysis is system composed by

THE subject of the analysis is system composed by MECHANICAL VIBRATION ASSIGNEMENT 1 On 3 DOF system identification Diego Zenari, 182160, M.Sc Mechatronics engineering Abstract The present investigation carries out several analyses on a 3-DOF system.

More information

Structural Dynamics Lecture 4. Outline of Lecture 4. Multi-Degree-of-Freedom Systems. Formulation of Equations of Motions. Undamped Eigenvibrations.

Structural Dynamics Lecture 4. Outline of Lecture 4. Multi-Degree-of-Freedom Systems. Formulation of Equations of Motions. Undamped Eigenvibrations. Outline of Multi-Degree-of-Freedom Systems Formulation of Equations of Motions. Newton s 2 nd Law Applied to Free Masses. D Alembert s Principle. Basic Equations of Motion for Forced Vibrations of Linear

More information

ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010

ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010 ME 563 HOMEWORK # 7 SOLUTIONS Fall 2010 PROBLEM 1: Given the mass matrix and two undamped natural frequencies for a general two degree-of-freedom system with a symmetric stiffness matrix, find the stiffness

More information

TWO-STAGE ISOLATION FOR HARMONIC BASE EXCITATION Revision A. By Tom Irvine February 25, 2008

TWO-STAGE ISOLATION FOR HARMONIC BASE EXCITATION Revision A. By Tom Irvine   February 25, 2008 TWO-STAGE ISOLATION FOR HARMONIC BASE EXCITATION Revision A By Tom Irvine Email: tomirvine@aol.com February 5, 008 Introduction Consider a base plate mass m and an avionics mass m modeled as two-degree-of-freedom.

More information

Introduction to structural dynamics

Introduction to structural dynamics Introduction to structural dynamics p n m n u n p n-1 p 3... m n-1 m 3... u n-1 u 3 k 1 c 1 u 1 u 2 k 2 m p 1 1 c 2 m2 p 2 k n c n m n u n p n m 2 p 2 u 2 m 1 p 1 u 1 Static vs dynamic analysis Static

More information

Collocated versus non-collocated control [H04Q7]

Collocated versus non-collocated control [H04Q7] Collocated versus non-collocated control [H04Q7] Jan Swevers September 2008 0-0 Contents Some concepts of structural dynamics Collocated versus non-collocated control Summary This lecture is based on parts

More information

1. Multiple Degree-of-Freedom (MDOF) Systems: Introduction

1. Multiple Degree-of-Freedom (MDOF) Systems: Introduction 1. Multiple Degree-of-Freedom (MDOF) Systems: Introduction Lesson Objectives: 1) List examples of MDOF structural systems and state assumptions of the idealizations. 2) Formulate the equation of motion

More information

SHOCK RESPONSE OF MULTI-DEGREE-OF-FREEDOM SYSTEMS Revision F By Tom Irvine May 24, 2010

SHOCK RESPONSE OF MULTI-DEGREE-OF-FREEDOM SYSTEMS Revision F By Tom Irvine   May 24, 2010 SHOCK RESPONSE OF MULTI-DEGREE-OF-FREEDOM SYSTEMS Revision F By Tom Irvine Email: tomirvine@aol.com May 4, 010 Introduction The primary purpose of this tutorial is to present the Modal Transient method

More information

Differential Equations: Homework 8

Differential Equations: Homework 8 Differential Equations: Homework 8 Alvin Lin January 08 - May 08 Section.6 Exercise Find a general solution to the differential equation using the method of variation of parameters. y + y = tan(t) r +

More information

DYNAMICS OF MACHINERY 41514

DYNAMICS OF MACHINERY 41514 DYNAMICS OF MACHINERY 454 PROJECT : Theoretical and Experimental Modal Analysis and Validation of Mathematical Models in Multibody Dynamics Holistic Overview of the Project Steps & Their Conceptual Links

More information

LECTURE 14: DEVELOPING THE EQUATIONS OF MOTION FOR TWO-MASS VIBRATION EXAMPLES

LECTURE 14: DEVELOPING THE EQUATIONS OF MOTION FOR TWO-MASS VIBRATION EXAMPLES LECTURE 14: DEVELOPING THE EQUATIONS OF MOTION FOR TWO-MASS VIBRATION EXAMPLES Figure 3.47 a. Two-mass, linear vibration system with spring connections. b. Free-body diagrams. c. Alternative free-body

More information

Dr.Vinod Hosur, Professor, Civil Engg.Dept., Gogte Institute of Technology, Belgaum

Dr.Vinod Hosur, Professor, Civil Engg.Dept., Gogte Institute of Technology, Belgaum STRUCTURAL DYNAMICS Dr.Vinod Hosur, Professor, Civil Engg.Dept., Gogte Institute of Technology, Belgaum Overview of Structural Dynamics Structure Members, joints, strength, stiffness, ductility Structure

More information

PROJECT 1 DYNAMICS OF MACHINES 41514

PROJECT 1 DYNAMICS OF MACHINES 41514 PROJECT DYNAMICS OF MACHINES 454 Theoretical and Experimental Modal Analysis and Validation of Mathematical Models in Multibody Dynamics Ilmar Ferreira Santos, Professor Dr.-Ing., Dr.Techn., Livre-Docente

More information

Structural Matrices in MDOF Systems

Structural Matrices in MDOF Systems in MDOF Systems http://intranet.dica.polimi.it/people/boffi-giacomo Dipartimento di Ingegneria Civile Ambientale e Territoriale Politecnico di Milano April 9, 2016 Outline Additional Static Condensation

More information

Operating Deflection Shapes from Strain Measurement Data

Operating Deflection Shapes from Strain Measurement Data Operating Deflection Shapes from Strain Measurement Data Timothy G. Hunter, Ph.D., P.E. President Wolf Star Technologies, LLC 3321 N. Newhall St., Milwaukee, WI 53211 Abstract Strain gauges are often more

More information

Nonlinear system identification with the use of describing functions a case study

Nonlinear system identification with the use of describing functions a case study Nonlinear system identification with the use of describing functions a case study Zhongge Zhao 1, Chuanri Li 2, Kjell Ahlin 3, Huan Du 4 1, 2, 4 School of Reliability and System Engineering, Beihang University,

More information

On the comparison of symmetric and unsymmetric formulations for experimental vibro-acoustic modal analysis

On the comparison of symmetric and unsymmetric formulations for experimental vibro-acoustic modal analysis Acoustics 8 Paris On the comparison of symmetric and unsymmetric formulations for experimental vibro-acoustic modal analysis M. Ouisse a and E. Foltete b a FEMO-S UMR CNRS 24 chemin de l Epitaphe 25 Besançon

More information

Structural Dynamics Lecture Eleven: Dynamic Response of MDOF Systems: (Chapter 11) By: H. Ahmadian

Structural Dynamics Lecture Eleven: Dynamic Response of MDOF Systems: (Chapter 11) By: H. Ahmadian Structural Dynamics Lecture Eleven: Dynamic Response of MDOF Systems: (Chapter 11) By: H. Ahmadian ahmadian@iust.ac.ir Dynamic Response of MDOF Systems: Mode-Superposition Method Mode-Superposition Method:

More information

Outline. Structural Matrices. Giacomo Boffi. Introductory Remarks. Structural Matrices. Evaluation of Structural Matrices

Outline. Structural Matrices. Giacomo Boffi. Introductory Remarks. Structural Matrices. Evaluation of Structural Matrices Outline in MDOF Systems Dipartimento di Ingegneria Civile e Ambientale, Politecnico di Milano May 8, 014 Additional Today we will study the properties of structural matrices, that is the operators that

More information

Dynamics of Structures: Theory and Analysis

Dynamics of Structures: Theory and Analysis 1. Free vibrations 2. Forced vibrations 3. Transient response 4. Damping mechanisms Dynamics of Structures: Theory and Analysis Steen Krenk Technical University of Denmark 5. Modal analysis I: Basic idea

More information

EQUIVALENT SINGLE-DEGREE-OF-FREEDOM SYSTEM AND FREE VIBRATION

EQUIVALENT SINGLE-DEGREE-OF-FREEDOM SYSTEM AND FREE VIBRATION 1 EQUIVALENT SINGLE-DEGREE-OF-FREEDOM SYSTEM AND FREE VIBRATION The course on Mechanical Vibration is an important part of the Mechanical Engineering undergraduate curriculum. It is necessary for the development

More information

Module 4: Dynamic Vibration Absorbers and Vibration Isolator Lecture 19: Active DVA. The Lecture Contains: Development of an Active DVA

Module 4: Dynamic Vibration Absorbers and Vibration Isolator Lecture 19: Active DVA. The Lecture Contains: Development of an Active DVA The Lecture Contains: Development of an Active DVA Proof Mass Actutor Application of Active DVA file:///d /chitra/vibration_upload/lecture19/19_1.htm[6/25/2012 12:35:51 PM] In this section, we will consider

More information

Structural Dynamics Lecture 7. Outline of Lecture 7. Multi-Degree-of-Freedom Systems (cont.) System Reduction. Vibration due to Movable Supports.

Structural Dynamics Lecture 7. Outline of Lecture 7. Multi-Degree-of-Freedom Systems (cont.) System Reduction. Vibration due to Movable Supports. Outline of Multi-Degree-of-Freedom Systems (cont.) System Reduction. Truncated Modal Expansion with Quasi-Static Correction. Guyan Reduction. Vibration due to Movable Supports. Earthquake Excitations.

More information

Input-Output Peak Picking Modal Identification & Output only Modal Identification and Damage Detection of Structures using

Input-Output Peak Picking Modal Identification & Output only Modal Identification and Damage Detection of Structures using Input-Output Peak Picking Modal Identification & Output only Modal Identification and Damage Detection of Structures using Time Frequency and Wavelet Techniquesc Satish Nagarajaiah Professor of Civil and

More information

Advanced Vibrations. Elements of Analytical Dynamics. By: H. Ahmadian Lecture One

Advanced Vibrations. Elements of Analytical Dynamics. By: H. Ahmadian Lecture One Advanced Vibrations Lecture One Elements of Analytical Dynamics By: H. Ahmadian ahmadian@iust.ac.ir Elements of Analytical Dynamics Newton's laws were formulated for a single particle Can be extended to

More information

Dynamic Analysis on Vibration Isolation of Hypersonic Vehicle Internal Systems

Dynamic Analysis on Vibration Isolation of Hypersonic Vehicle Internal Systems International Journal of Engineering Research and Technology. ISSN 0974-3154 Volume 6, Number 1 (2013), pp. 55-60 International Research Publication House http://www.irphouse.com Dynamic Analysis on Vibration

More information

Structural System, Machines and Load Cases

Structural System, Machines and Load Cases Machine-Induced Vibrations Machine-Induced Vibrations In the following example the dynamic excitation of two rotating machines is analyzed. A time history analysis in the add-on module RF-DYNAM Pro - Forced

More information

Introduction to Continuous Systems. Continuous Systems. Strings, Torsional Rods and Beams.

Introduction to Continuous Systems. Continuous Systems. Strings, Torsional Rods and Beams. Outline of Continuous Systems. Introduction to Continuous Systems. Continuous Systems. Strings, Torsional Rods and Beams. Vibrations of Flexible Strings. Torsional Vibration of Rods. Bernoulli-Euler Beams.

More information

Identification of Damping Using Proper Orthogonal Decomposition

Identification of Damping Using Proper Orthogonal Decomposition Identification of Damping Using Proper Orthogonal Decomposition M Khalil, S Adhikari and A Sarkar Department of Aerospace Engineering, University of Bristol, Bristol, U.K. Email: S.Adhikari@bristol.ac.uk

More information

Integration of measured receptance into a time domain simulation of a Multi Body Model using SIMPACK

Integration of measured receptance into a time domain simulation of a Multi Body Model using SIMPACK Fakultät Maschinenwesen Professur für Dynamik und Mechanismentechnik Integration of measured receptance into a time domain simulation of a Multi Body Model using SIMPACK Dipl.-Ing. Johannes Woller Prof.

More information

Response Analysis for Multi Support Earthquake Excitation

Response Analysis for Multi Support Earthquake Excitation Chapter 5 Response Analysis for Multi Support Earthquake Excitation 5.1 Introduction It is very important to perform the dynamic analysis for the structure subjected to random/dynamic loadings. The dynamic

More information

AA 242B / ME 242B: Mechanical Vibrations (Spring 2016)

AA 242B / ME 242B: Mechanical Vibrations (Spring 2016) AA 242B / ME 242B: Mechanical Vibrations (Spring 206) Solution of Homework #3 Control Tab Figure : Schematic for the control tab. Inadequacy of a static-test A static-test for measuring θ would ideally

More information

CHAPTER 12 TIME DOMAIN: MODAL STATE SPACE FORM

CHAPTER 12 TIME DOMAIN: MODAL STATE SPACE FORM CHAPTER 1 TIME DOMAIN: MODAL STATE SPACE FORM 1.1 Introduction In Chapter 7 we derived the equations of motion in modal form for the system in Figure 1.1. In this chapter we will convert the modal form

More information

Stochastic Dynamics of SDOF Systems (cont.).

Stochastic Dynamics of SDOF Systems (cont.). Outline of Stochastic Dynamics of SDOF Systems (cont.). Weakly Stationary Response Processes. Equivalent White Noise Approximations. Gaussian Response Processes as Conditional Normal Distributions. Stochastic

More information

Section 4.9; Section 5.6. June 30, Free Mechanical Vibrations/Couple Mass-Spring System

Section 4.9; Section 5.6. June 30, Free Mechanical Vibrations/Couple Mass-Spring System Section 4.9; Section 5.6 Free Mechanical Vibrations/Couple Mass-Spring System June 30, 2009 Today s Session Today s Session A Summary of This Session: Today s Session A Summary of This Session: (1) Free

More information

Introduction to Mechanical Vibration

Introduction to Mechanical Vibration 2103433 Introduction to Mechanical Vibration Nopdanai Ajavakom (NAV) 1 Course Topics Introduction to Vibration What is vibration? Basic concepts of vibration Modeling Linearization Single-Degree-of-Freedom

More information

CHAPTER 6 STATE SPACE: FREQUENCY RESPONSE, TIME DOMAIN

CHAPTER 6 STATE SPACE: FREQUENCY RESPONSE, TIME DOMAIN CHAPTER 6 STATE SPACE: FREQUENCY RESPONSE, TIME DOMAIN 6. Introduction Frequency Response This chapter will begin with the state space form of the equations of motion. We will use Laplace transforms to

More information

Software Verification

Software Verification POGAM NAME: EVISION NO.: 0 EXAMPLE 6-005 LINK DAMPE ELEMENT UNDE HAMONIC LOADING POBLEM DESCIPTION In this single degree of freedom example a spring-mass-damper system is subjected to a harmonic load.

More information

Laboratory handouts, ME 340

Laboratory handouts, ME 340 Laboratory handouts, ME 34 This document contains summary theory, solved exercises, prelab assignments, lab instructions, and report assignments for Lab 6. 214-216 Harry Dankowicz, unless otherwise noted

More information

2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity

2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity 2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity Energy 7 4 Kinematics Free fall Collisions 3 5 Dynamics

More information

ME 563 HOMEWORK # 5 SOLUTIONS Fall 2010

ME 563 HOMEWORK # 5 SOLUTIONS Fall 2010 ME 563 HOMEWORK # 5 SOLUTIONS Fall 2010 PROBLEM 1: You are given the lumped parameter dynamic differential equations of motion for a two degree-offreedom model of an automobile suspension system for small

More information

Modal Analysis: What it is and is not Gerrit Visser

Modal Analysis: What it is and is not Gerrit Visser Modal Analysis: What it is and is not Gerrit Visser What is a Modal Analysis? What answers do we get out of it? How is it useful? What does it not tell us? In this article, we ll discuss where a modal

More information

Codal Provisions IS 1893 (Part 1) 2002

Codal Provisions IS 1893 (Part 1) 2002 Abstract Codal Provisions IS 1893 (Part 1) 00 Paresh V. Patel Assistant Professor, Civil Engineering Department, Nirma Institute of Technology, Ahmedabad 38481 In this article codal provisions of IS 1893

More information

Chapter 7 Vibration Measurement and Applications

Chapter 7 Vibration Measurement and Applications Chapter 7 Vibration Measurement and Applications Dr. Tan Wei Hong School of Mechatronic Engineering Universiti Malaysia Perlis (UniMAP) Pauh Putra Campus ENT 346 Vibration Mechanics Chapter Outline 7.1

More information

DSC HW 4: Assigned 7/9/11, Due 7/18/12 Page 1

DSC HW 4: Assigned 7/9/11, Due 7/18/12 Page 1 DSC HW 4: Assigned 7/9/11, Due 7/18/12 Page 1 A schematic for a small laboratory electromechanical shaker is shown below, along with a bond graph that can be used for initial modeling studies. Our intent

More information

FREE VIBRATION RESPONSE OF UNDAMPED SYSTEMS

FREE VIBRATION RESPONSE OF UNDAMPED SYSTEMS Lecture Notes: STRUCTURAL DYNAMICS / FALL 2011 / Page: 1 FREE VIBRATION RESPONSE OF UNDAMPED SYSTEMS : : 0, 0 As demonstrated previously, the above Equation of Motion (free-vibration equation) has a solution

More information

on the figure. Someone has suggested that, in terms of the degrees of freedom x1 and M. Note that if you think the given 1.2

on the figure. Someone has suggested that, in terms of the degrees of freedom x1 and M. Note that if you think the given 1.2 1) A two-story building frame is shown below. The mass of the frame is assumed to be lumped at the floor levels and the floor slabs are considered rigid. The floor masses and the story stiffnesses are

More information

ME 563 Mechanical Vibrations Lecture #1. Derivation of equations of motion (Newton-Euler Laws)

ME 563 Mechanical Vibrations Lecture #1. Derivation of equations of motion (Newton-Euler Laws) ME 563 Mechanical Vibrations Lecture #1 Derivation of equations of motion (Newton-Euler Laws) Derivation of Equation of Motion 1 Define the vibrations of interest - Degrees of freedom (translational, rotational,

More information

Effects of Damping Ratio of Restoring force Device on Response of a Structure Resting on Sliding Supports with Restoring Force Device

Effects of Damping Ratio of Restoring force Device on Response of a Structure Resting on Sliding Supports with Restoring Force Device Effects of Damping Ratio of Restoring force Device on Response of a Structure Resting on Sliding Supports with Restoring Force Device A. Krishnamoorthy Professor, Department of Civil Engineering Manipal

More information

RESPONSE SPECTRUM METHOD FOR ESTIMATION OF PEAK FLOOR ACCELERATION DEMAND

RESPONSE SPECTRUM METHOD FOR ESTIMATION OF PEAK FLOOR ACCELERATION DEMAND RESPONSE SPECTRUM METHOD FOR ESTIMATION OF PEAK FLOOR ACCELERATION DEMAND Shahram Taghavi 1 and Eduardo Miranda 2 1 Senior catastrophe risk modeler, Risk Management Solutions, CA, USA 2 Associate Professor,

More information

MV Module 5 Solution. Module 5

MV Module 5 Solution. Module 5 Module 5 Q68. With a neat diagram explain working principle of a vibrometer. D-14-Q5 (a)-10m Ans: A vibrometer or a seismometer is an instrument that measures the displacement of a vibrating body. It can

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering Dynamics and Control II Fall 2007

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering Dynamics and Control II Fall 2007 MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering.4 Dynamics and Control II Fall 7 Problem Set #9 Solution Posted: Sunday, Dec., 7. The.4 Tower system. The system parameters are

More information

Truncation Errors Numerical Integration Multiple Support Excitation

Truncation Errors Numerical Integration Multiple Support Excitation Errors Numerical Integration Multiple Support Excitation http://intranet.dica.polimi.it/people/boffi-giacomo Dipartimento di Ingegneria Civile Ambientale e Territoriale Politecnico di Milano April 10,

More information

A NEW ANALYSIS APPROACH FOR MOTORCYCLE BRAKE SQUEAL NOISE AND ITS ADAPTATION

A NEW ANALYSIS APPROACH FOR MOTORCYCLE BRAKE SQUEAL NOISE AND ITS ADAPTATION SETC001 01 1850 A NEW ANALYSIS APPROACH FOR MOTORCYCLE BRAKE SQUEAL NOISE AND ITS ADAPTATION Hiroyuki Nakata, Kiyoshi Kobayashi, Masashi Kajita - Honda R&D Co., Ltd. - JAPAN C.H.Jerry CHUNG - MTS Systems

More information

Analytical Solution for a Fluid-Structure Interaction Problem in Comparison with Finite Element Solution

Analytical Solution for a Fluid-Structure Interaction Problem in Comparison with Finite Element Solution Analytical Solution for a Fluid-Structure Interaction Problem in Comparison with Finite Element Solution Amirhossein Keivani & Ahmad Shooshtari Ferdowsi University of Mashhad, Mashhad, Iran. Ahmad Aftabi

More information

Lab Experiment 2: Performance of First order and second order systems

Lab Experiment 2: Performance of First order and second order systems Lab Experiment 2: Performance of First order and second order systems Objective: The objective of this exercise will be to study the performance characteristics of first and second order systems using

More information

Chapter 23: Principles of Passive Vibration Control: Design of absorber

Chapter 23: Principles of Passive Vibration Control: Design of absorber Chapter 23: Principles of Passive Vibration Control: Design of absorber INTRODUCTION The term 'vibration absorber' is used for passive devices attached to the vibrating structure. Such devices are made

More information

University of California at Berkeley Structural Engineering Mechanics & Materials Department of Civil & Environmental Engineering Spring 2012 Student name : Doctoral Preliminary Examination in Dynamics

More information

Dynamic Response of Structures With Frequency Dependent Damping

Dynamic Response of Structures With Frequency Dependent Damping Dynamic Response of Structures With Frequency Dependent Damping Blanca Pascual & S Adhikari School of Engineering, Swansea University, Swansea, UK Email: S.Adhikari@swansea.ac.uk URL: http://engweb.swan.ac.uk/

More information

Preliminary Examination - Dynamics

Preliminary Examination - Dynamics Name: University of California, Berkeley Fall Semester, 2018 Problem 1 (30% weight) Preliminary Examination - Dynamics An undamped SDOF system with mass m and stiffness k is initially at rest and is then

More information

Chapter 5 Design. D. J. Inman 1/51 Mechanical Engineering at Virginia Tech

Chapter 5 Design. D. J. Inman 1/51 Mechanical Engineering at Virginia Tech Chapter 5 Design Acceptable vibration levels (ISO) Vibration isolation Vibration absorbers Effects of damping in absorbers Optimization Viscoelastic damping treatments Critical Speeds Design for vibration

More information

Tire/road contact modeling for the in-vehicle noise prediction

Tire/road contact modeling for the in-vehicle noise prediction Tire/road contact modeling for the in-vehicle noise prediction Trong Dai VU 1,2 ; Hai Ping YIN 1 ; Denis DUHAMEL 1 ; Arnaud GAUDIN 2 ; Zouhir ABBADI 2 1 Université Paris-Est, Laboratoire Navier (CNRS-ENPC-IFSTTAR),

More information

Problem Set 3: Solution Due on Mon. 7 th Oct. in class. Fall 2013

Problem Set 3: Solution Due on Mon. 7 th Oct. in class. Fall 2013 EE 56: Digital Control Systems Problem Set 3: Solution Due on Mon 7 th Oct in class Fall 23 Problem For the causal LTI system described by the difference equation y k + 2 y k = x k, () (a) By first finding

More information

Application of a novel method to identify multi-axis joint properties

Application of a novel method to identify multi-axis joint properties Application of a novel method to identify multi-axis joint properties Scott Noll, Jason Dreyer, and Rajendra Singh The Ohio State University, 219 W. 19 th Avenue, Columbus, Ohio 4321 USA ABSTRACT This

More information

Generalized Single Degree of Freedom Systems

Generalized Single Degree of Freedom Systems Single Degree of Freedom http://intranet.dica.polimi.it/people/boffi-giacomo Dipartimento di Ingegneria Civile Ambientale e Territoriale Politecnico di Milano March, 8 Outline Until now our were described

More information

EE 4343/ Control System Design Project LECTURE 10

EE 4343/ Control System Design Project LECTURE 10 Copyright S. Ikenaga 998 All rights reserved EE 4343/5329 - Control System Design Project LECTURE EE 4343/5329 Homepage EE 4343/5329 Course Outline Design of Phase-lead and Phase-lag compensators using

More information

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc.

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc. Chapter 14 Oscillations 14-1 Oscillations of a Spring If an object vibrates or oscillates back and forth over the same path, each cycle taking the same amount of time, the motion is called periodic. The

More information

742. Time-varying systems identification using continuous wavelet analysis of free decay response signals

742. Time-varying systems identification using continuous wavelet analysis of free decay response signals 74. Time-varying systems identification using continuous wavelet analysis of free decay response signals X. Xu, Z. Y. Shi, S. L. Long State Key Laboratory of Mechanics and Control of Mechanical Structures

More information

In-Structure Response Spectra Development Using Complex Frequency Analysis Method

In-Structure Response Spectra Development Using Complex Frequency Analysis Method Transactions, SMiRT-22 In-Structure Response Spectra Development Using Complex Frequency Analysis Method Hadi Razavi 1,2, Ram Srinivasan 1 1 AREVA, Inc., Civil and Layout Department, Mountain View, CA

More information

Chapter a. Spring constant, k : The change in the force per unit length change of the spring. b. Coefficient of subgrade reaction, k:

Chapter a. Spring constant, k : The change in the force per unit length change of the spring. b. Coefficient of subgrade reaction, k: Principles of Soil Dynamics 3rd Edition Das SOLUTIONS MANUAL Full clear download (no formatting errors) at: https://testbankreal.com/download/principles-soil-dynamics-3rd-editiondas-solutions-manual/ Chapter

More information

Control for. Maarten Steinbuch Dept. Mechanical Engineering Control Systems Technology Group TU/e

Control for. Maarten Steinbuch Dept. Mechanical Engineering Control Systems Technology Group TU/e Control for Maarten Steinbuch Dept. Mechanical Engineering Control Systems Technology Group TU/e Motion Systems m F Introduction Timedomain tuning Frequency domain & stability Filters Feedforward Servo-oriented

More information

AA242B: MECHANICAL VIBRATIONS

AA242B: MECHANICAL VIBRATIONS AA242B: MECHANICAL VIBRATIONS 1 / 50 AA242B: MECHANICAL VIBRATIONS Undamped Vibrations of n-dof Systems These slides are based on the recommended textbook: M. Géradin and D. Rixen, Mechanical Vibrations:

More information

NATURAL MODES OF VIBRATION OF BUILDING STRUCTURES CE 131 Matrix Structural Analysis Henri Gavin Fall, 2006

NATURAL MODES OF VIBRATION OF BUILDING STRUCTURES CE 131 Matrix Structural Analysis Henri Gavin Fall, 2006 NATURAL MODES OF VIBRATION OF BUILDING STRUCTURES CE 131 Matrix Structural Analysis Henri Gavin Fall, 006 1 Mass and Stiffness Matrices Consider a building frame modeled by a set of rigid, massive flos

More information

CE6701 STRUCTURAL DYNAMICS AND EARTHQUAKE ENGINEERING QUESTION BANK UNIT I THEORY OF VIBRATIONS PART A

CE6701 STRUCTURAL DYNAMICS AND EARTHQUAKE ENGINEERING QUESTION BANK UNIT I THEORY OF VIBRATIONS PART A CE6701 STRUCTURAL DYNAMICS AND EARTHQUAKE ENGINEERING QUESTION BANK UNIT I THEORY OF VIBRATIONS PART A 1. What is mean by Frequency? 2. Write a short note on Amplitude. 3. What are the effects of vibration?

More information

A Modal Approach to Lightweight Partitions with Internal Resonators

A Modal Approach to Lightweight Partitions with Internal Resonators A Modal Approach to Lightweight Partitions with Internal Resonators Steffen Hettler, Philip Leistner Fraunhofer-Institute of Building Physics, D-7569 Stuttgart, Nobelstrasse, Germany e-mail: hettler@ibp.fraunhofer.de,

More information

Modeling of Resonators

Modeling of Resonators . 23 Modeling of Resonators 23 1 Chapter 23: MODELING OF RESONATORS 23 2 23.1 A GENERIC RESONATOR A second example where simplified discrete modeling has been found valuable is in the assessment of the

More information

Damping Matrix. Donkey2Ft

Damping Matrix. Donkey2Ft 1 Damping Matrix DonkeyFt Damping in a single-degree-of-freedom (SDOF) system is well studied. Whether the system is under-damped, over-damped, or critically damped is well known. For an under-damped system,

More information

Chapter 14 Oscillations

Chapter 14 Oscillations Chapter 14 Oscillations If an object vibrates or oscillates back and forth over the same path, each cycle taking the same amount of time, the motion is called periodic. The mass and spring system is a

More information

Assignment 6. Using the result for the Lagrangian for a double pendulum in Problem 1.22, we get

Assignment 6. Using the result for the Lagrangian for a double pendulum in Problem 1.22, we get Assignment 6 Goldstein 6.4 Obtain the normal modes of vibration for the double pendulum shown in Figure.4, assuming equal lengths, but not equal masses. Show that when the lower mass is small compared

More information

Matrix Iteration. Giacomo Boffi.

Matrix Iteration. Giacomo Boffi. http://intranet.dica.polimi.it/people/boffi-giacomo Dipartimento di Ingegneria Civile Ambientale e Territoriale Politecnico di Milano April 12, 2016 Outline Second -Ritz Method Dynamic analysis of MDOF

More information

Reduction in number of dofs

Reduction in number of dofs Reduction in number of dofs Reduction in the number of dof to represent a structure reduces the size of matrices and, hence, computational cost. Because a subset of the original dof represent the whole

More information

Aalto University School of Engineering

Aalto University School of Engineering Aalto University School of Engineering Kul-24.4120 Ship Structural Design (P) Lecture 8 - Local and Global Vibratory Response Kul-24.4120 Ship Structures Response Lecture 5: Tertiary Response: Bending

More information

Vibration analysis of concrete bridges during a train pass-by using various models

Vibration analysis of concrete bridges during a train pass-by using various models Journal of Physics: Conference Series PAPER OPEN ACCESS Vibration analysis of concrete bridges during a train pass-by using various models To cite this article: Qi Li et al 2016 J. Phys.: Conf. Ser. 744

More information

MEG6007: Advanced Dynamics -Principles and Computational Methods (Fall, 2017) Lecture DOF Modeling of Shock Absorbers. This lecture covers:

MEG6007: Advanced Dynamics -Principles and Computational Methods (Fall, 2017) Lecture DOF Modeling of Shock Absorbers. This lecture covers: MEG6007: Advanced Dynamics -Principles and Computational Methods (Fall, 207) Lecture 4. 2-DOF Modeling of Shock Absorbers This lecture covers: Revisit 2-DOF Spring-Mass System Understand the den Hartog

More information

( ) Chapter 3: Free Vibration of the Breakwater. 3.1 Introduction

( ) Chapter 3: Free Vibration of the Breakwater. 3.1 Introduction Chapter : Free Vibration of the Breakwater. Introduction Before conducting forcing analyses on the breakwater, a free vibration study is necessary. This chapter will describe the analysis conducted to

More information

Creation of a State-Space Model from a Finite Element Model for the active control algorithm efficiency tests.

Creation of a State-Space Model from a Finite Element Model for the active control algorithm efficiency tests. Creation of a State-Space Model from a Finite Element Model for the active control algorithm efficiency tests. N. Geffroy, L. Brunetti, B. Bolzon, A. Jeremie, Laboratoire d Annecy-le-Vieux de Physique

More information

spring magnet Fig. 7.1 One end of the magnet hangs inside a coil of wire. The coil is connected in series with a resistor R.

spring magnet Fig. 7.1 One end of the magnet hangs inside a coil of wire. The coil is connected in series with a resistor R. 1 A magnet is suspended vertically from a fixed point by means of a spring, as shown in Fig. 7.1. spring magnet coil R Fig. 7.1 One end of the magnet hangs inside a coil of wire. The coil is connected

More information

Chapter 4 Analysis of a cantilever

Chapter 4 Analysis of a cantilever Chapter 4 Analysis of a cantilever Before a complex structure is studied performing a seismic analysis, the behaviour of simpler ones should be fully understood. To achieve this knowledge we will start

More information

ENGINEERING MATHEMATICS 4 (BDA 34003)

ENGINEERING MATHEMATICS 4 (BDA 34003) ENGINEERING MATHEMATICS 4 (BDA 34003) Lecture Module 7: Eigenvalue and Eigenvector Waluyo Adi Siswanto Universiti Tun Hussein Onn Malaysia This work is licensed under a Creative Commons Attribution 3.0

More information

Prüfung Regelungstechnik I (Control Systems I) Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Prüfung Regelungstechnik I (Control Systems I) Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 29. 8. 2 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid

More information

Direct Fatigue Damage Spectrum Calculation for a Shock Response Spectrum

Direct Fatigue Damage Spectrum Calculation for a Shock Response Spectrum Direct Fatigue Damage Spectrum Calculation for a Shock Response Spectrum By Tom Irvine Email: tom@vibrationdata.com June 25, 2014 Introduction A fatigue damage spectrum (FDS) was calculated for a number

More information