Skip to main content

Mode of vibration .

      What is meant by modes of vibration? Can anyone explain the ...

                In physics and engineering, for a dynamical system according wave theory, a mode is a standing wave state of excitation, in which all the components of the system will be affected sinusoidally under a specified fixed frequency. Because no real system can perfectly fit under the standing wave framework, the mode concept is taken as a general characterization of specific states of oscillation, thus treating the dynamic system in a linear fashion, in where linear superposition of states can be performed. As classical examples, there are: 

* In a mechanical dynamical system, a vibrating rope is the most clear example of a mode, in which the rope is the medium, the stress on the rope is the excitation, and the displacement of the rope with respect to its static state is the modal variable. 

* In an acoustic dynamical systems, a single sound pitch is a mode, in which the air is the medium, the sound pressure in the air is the excitation, and the displacement of the air molecules is the modal variable. * In a structural dynamical systems, a high tall building oscillating under its most flexural axis is a mode, in which all the material of the building -under the proper numerical simplifications- is the medium, the seismic/wind/environmental solicitations are the excitations and the displacements are the modal variable. 

* In an electrical dynamical systems, a resonant cavity made of thin metal walls, enclosing a hollow space, for a particle accelerator is a pure standing wave system, and thus an example of a mode, in which the hollow space of the cavity is the medium, the RF source (a Klystron or another RF source) is the excitation and the electromagnetic field is the modal variable.

 * When relating to music, normal modes of vibrating instruments (strings, air pipes, drums, etc.) are called "harmonics" or "overtones". 

* The concept of normal modes also finds application in optics, quantum mechanics, and molecular dynamics. Most dynamical system can be excited under several modes. Each mode is characterized by one or several frequencies, according the modal variable field. For example, a vibrating rope in the 2D space is defined by a single-frequency (1D axial displacement), but a vibrating rope in the 3D space is defined by two frequencies -2D axial displacement-. For a given amplitude on the modal variable, each mode will store an specific amount of energy, because of the sinusoidal excitation. From all the modes of a dynamical system, the normal or dominant mode of a system, will be the mode storing the minimum amount of energy, for a given amplitude of the modal variable. Or equivalently, for a given stored amount of energy, will be the mode imposing the maximum amplitude of the modal variable

Comments

Popular posts from this blog

Mechanical and durability Behavior of fiber reinforced concrete incorporating deferent types of natural, pp and steel fibers

  1. Introduction As an important building material, concrete has been widely used in civil engineering applications such as bridges and roads engineering, and the related experimental study of the mechanical properties of concrete was also fruitful . With the vigorous development of engineering construction, high-performance concretes such as fiber-reinforced concrete was applied gradually in important engineering structures . Among these high-performance concretes, for the advantages of low cost, easy fabrication, and performance improvements, obviously, steel fiber-reinforced concrete was used widely in the current engineering field . However, the study showed that uneven incorporation of steel fiber would affect the fluidity and uniformity of concrete mixing and even result in fiber bonding, which eventually affects the reinforcement effect of mechanical properties. Up to now, most research paid attention on the improvement effect of different types of fiber or optimum fiber co...

Chemical reaction and equation

  Chemical reactions -   The transformation of chemical substance into a new chemical substance by making and breaking of bonds between different atoms is known as Chemical Reaction.  Signs of a chemical reaction These factors denote that a chemical reaction has taken place- change of state of substance, change of color of substance,evolution of heat, absorption of heat, evolution of gas and evolution of light. Chemical Equation:   The representation of chemical reaction by means of symbols of substances in the form of formulae is called chemical equation.  E.g. - H 2  + O 2  ⇒ H 2 O                        Balanced Chemical Equation:   A balanced chemical equation has number atoms of each element equal on both left and right sides of the reaction.                                    *No...

Learning to recognize handwritten digits

The Digits data set of the Scikit-learn library provides numerous data-sets that are useful for testing many problems of data analysis and prediction of the results. Some Scientist claims that it predicts the digit accurately 95% of the times. Perform data Analysis to accept or reject this Hypothesis. In this project, we are using the Handwritten Digits dataset which is already ready in the sklearn library. we can import the dataset  from sklearn import datasets digits = datasets . load_digits () Info about Dataset: print ( digits . DESCR ) OUTPUT: main_data = digits [ 'data' ] targets = digits [ 'target' ] len ( main_data ) % matplotlib inline plt . subplot ( 321 ) plt . imshow ( digits . images [ 1791 ], cmap = plt . cm . gray_r , interpolation = 'nearest' ) plt . subplot ( 322 ) plt . imshow ( digits . images [ 1792 ], cmap = plt . cm . gray_r , i...