SlideShare a Scribd company logo
1 of 6
Download to read offline
Detection of Damage in Beam from Measured Natural
Frequencies Using Support Vector Machine Algorithm
Prashanth Shyamalaa
, SubhajitMondalb
, Sushanta Chakraborty*
a
Graduate Student; b
Research Scholar, Communicating author; *
Associate Professor
Department of Civil Engineering, Indian Institute of Technology Kharagpur
b
E-mail address:suman.subhajit@gmail.com
Abstract. Damage detection using vibration response is a vibrant area of
research. Usually, measured natural frequencies are compared with the natural
frequencies computed using a baseline finite element model and the objective
function thus formed from the discrepancies of results are minimized using
various algorithms. One such algorithm is the Support Vector Machine (SVM)
algorithm which uses simulations of various damage scenarios. Damage is
envisaged using stiffness loss in a member and the damaged responses are
recorded and later on retrieved for comparison. The algorithm is found to be
very robust for single damage cases of beam type of structures.
1 Introduction
Damage detection at early stages in structures has become substantial and also vital
from serviceability and safety point of view. Many decades of research produced
variety of methods to detect damage. Some methods need access to locations of
damages in structures which are in most circumstances impractical. This limitation
can be overcome if vibration responses of structure were used to identify damage
which was extensively studied. The fundamental idea being that damage effects the
stiffness, mass or energy dissipation, i.e. the damping properties of a system, which,
in turn, alter the measured dynamic responses of that system. Changes in global
dynamic response parameters, such as natural frequencies, mode shapes, modal
damping factors or modal mass etc. are mostly used for damage detection. Doebling et
al.[1] provided a comprehensive survey about various damage detection techniques
employing vibration until 90s. Salawu and Williams [2] surveyed damage detection
algorithms using natural frequencies alone. Among the various damage detection
algorithms, gradient based or evolutionary or heuristic damage detection algorithms
are very popular, SVM is one such heuristic based algorithm based on statistical
learning mechanism. This algorithm gained popularity in last 4 decades which was
developed and conceived by Vapnik [3], the acceptance and applications of which has
increased recently [4,5]. The SVM formulation uses the Structural Risk Minimization
(SRM) principle, which has been shown to be superior [6] to traditionally used
Empirical Risk Minimization (ERM) principle employed by conventional Artificial
Neural Network (ANN) algorithm. SRM basically search for an upper bound on the
expected risk, whereas ERM minimizes the error on the training data itself. It is this
307
Advance in Dynamics, Vibration and Control
difference which makes SVM more general as compared to ANN type of algorithms.
In this paper regression form of SVM is used. Damage detection of a cantilever beam
using modal displacements are used which showed promising results [7]. Several
damage conditions are simulated and the natural frequencies are used to detect
damages [8] using SVM. Regression analysis finds a best fit function by minimizing
errors for linearly separable data, but it become difficult if the data are not linearly
separable. The benefit of SVM is that a linearly non-separable data can be separated
by projecting the data space to higher dimensions by adding the kernels function. The
kernel functions convert the non-linearly separable data to linearly separable data in
higher dimensions where we need not consider about the conversions of feature
vectors( here in our case natural frequencies) to higher dimensions
In this paper, SVM algorithm is used for damage identification (i.e. its location and
severity) of a beam using natural frequencies only. The damage is simulated by
reducing the Young’s modulus of the material locally within an elemental volume
which indirectly reflects the localized stiffness loss. Numerically simulated data are
generated from a converged numerical finite element model of an isotropic
rectangular cantilever beam, simulating various damage scenarios and the
corresponding natural frequencies are recorded. In this paper, the term measured data
was referred to the data obtained from numerical simulations. The detection of
damage and its severity of damage of a cantilever beam is demonstrated in the paper.
2 Mathematical Formulations
In the Support Vector Machine (SVM) algorithm natural frequency (x) and damage
(y) can be correlated as (y,x) where x= {} is vector of natural frequencies and y being
a scalar, depicting damage location or the material parameters [3]. Now this set of
data can be regressed to determine or predict the values corresponding to damage
location and severity. The approximation is represented by the equation
y= (w.x) + b. (1)
Here w describes the separating hyper-plane equation between the damage or
undamaged class. The linear classifier w vector which divides the sample data points
into their respective classes. The values of w can be found out as the optimum of y,
which is a regression function and can be expressed as
minw,b,ΞΎ,πœ‰πœ‰βˆ—,πœ–πœ–
1
2
𝑀𝑀 𝑇𝑇
𝑀𝑀 + 𝐢𝐢( βˆ‘ (πœ‰πœ‰π‘–π‘–
𝑙𝑙
𝑖𝑖=1 + πœ‰πœ‰π‘–π‘–
βˆ—
) . (2)
Here, C is a variable parameter that encodes the cost of non-separation in the sample
set, and πœ‰πœ‰πœ‰πœ‰βˆ—, πœ‰πœ‰πœ‰πœ‰ are slack variables introduced so that the data could be made
308 Detection of Damage in Beam from Measured Natural Frequencies Using SVM Algorithm
separable. In order to account for the erroneous sample of data, a Ξ΅-insensitive loss
function is introduced
𝑦𝑦 = οΏ½
|𝑦𝑦𝑖𝑖 βˆ’ ({π‘₯π‘₯}𝑖𝑖, {𝑀𝑀}𝑖𝑖)|, 𝑖𝑖𝑖𝑖 |𝑦𝑦𝑖𝑖 βˆ’ ({π‘₯π‘₯}𝑖𝑖, {𝑀𝑀}𝑖𝑖)| > πœ€πœ€
πœ€πœ€ , 𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒
. (3)
The data is assumed to be linearly separable for the regression if the xi (natural
frequencies) are taken just two. In our sets of problems tackled, it is initially decided
that up to 8 natural frequencies be taken for each training sample to have a better
representation of pattern in damage is using SVM’s regression model. Analyzing the
data in higher dimensions may increase the volume of the sample space to a large
extent and eventually the data will become sparse becomes sparse. This issue can be
addressed by employing kernels functions in regression to model the sample space
into higher dimensions. Usually, Kernels employing radial basis function are used in
most cases and the same is employed in the present paper and can be mathematically
expressed as
𝐾𝐾(π‘₯π‘₯, 𝑦𝑦) = 𝑒𝑒
βˆ’οΏ½
(π‘₯π‘₯βˆ’π‘₯π‘₯ 𝑖𝑖)2
2𝜎𝜎2 �
. (4)
Here 𝜎𝜎 is the essential parameter in determination of the SVM regression model. The
Cost of non-separation in samples is denoted by C. The Ξ΅ is taken as 0.5 for the
present problem. In this paper the code LIBSVM [9] of MATLAB[10] is used.
3 Results and discussion
3.1 Identifying location of damage and severity of damage in a cantilever beam
A cantilever beam having dimensions 1.0 m x 0.49m x 0.01 m. is considered first. The
Young's modulus is assume to be 2E11 Pa and the Poisson’s ratio is considered as
0.28. The density of beam is assumed to be 7860 kg/m3
is to model the beam.
Fig. 1 Cantilever beam with partitions to represent damage locations
The damage location is introduced by creating a partition of size 10cm width and 5cm
depth. the damage was given by reducing the E value for that partition in intervals of
1% cumulatively till 50%. The results were simulated by imparting damage at one
309
Advance in Dynamics, Vibration and Control
location for 50 levels of decrease in E value gives 50 samples of 8 natural frequencies.
So, a sum of 350 samples data is obtained for training data. For testing, the above
numerical model is used but damage introduced in other location. For the present
investigation only bending modes are considered as other modes show less influence
on this type of damage. The below figure shows natural frequencies along with their
mode shapes of first few modes.
Fig. 2 mode shapes and natural frequencies for cantilever beam
Along the cantilever beam few locations were chosen for the prediction of location
and Young's modulus (E) values, assuming no noise in the training data. Later random
noise was added to see the accuracy of prediction of values.
Figure 3 shows the pattern indicates natural frequencies is used as training data for the
regression model. Appropriate β€˜C’ (cost parameter) and β€˜Οƒβ€™ (gamma) values are
chosen for the SVM regression model generations. There is no universal rule to select
the best parameters for SVM analysis and determined by trial and error. The values of
C and Οƒ assume to be 512 and 0.5 respectively for the present case. The generated
model is tested on the values which were not in the training dataset. Table 1 shows the
prediction of the damage location and its percentage error. Table 2 shows the
prediction of Young's modulus obtained from the SVM algorithm for different level of
noise.
310 Detection of Damage in Beam from Measured Natural Frequencies Using SVM Algorithm
Fig 3. Percentage variation in natural frequency values (1 to 8) for 5 levels of reduction in E
value (5%,10%,20%,30%,40%) for damage location at (a) 5cm (b) 15cm (c) 25cm (d) 35cm
from fixed end of the cantilever beam.
Table 1. Prediction of damage location using SVM
Actual value (cm) Predicted value (cm) Error %
60 60.38 0.6
20 17.40 9.18
32.75 32.04 2.0
53.75 52.47 1.6
Table 2. Detection of severity of damage in the beam
Damage located at 56 cm from support
(actual Young's modulus 1.4E11)
Damage located at 69 cm from support
(actual Young's modulus 1.4E11)
noise (%) predicted value (1xE11) noise (%) predicted value
(1xE11)
1 1.3825 1 1.3969
2 1.3972 2 1.3964
4 1.3969 4 1.3894
8 1.3964 10 1.3885
10 1.3955 15 1.3871
15 1.3952 20 1.3824
311
Advance in Dynamics, Vibration and Control
4 Conclusions
The SVM algorithm is found to be performing excellently to detect damages in
various locations of an isotropic cantilever beam from measured natural frequencies
only. The uniqueness of the detection with varying location and severity of damages
are preserved, thus giving confidence about its future application. However, the
algorithm has some difficulty in detecting multiple damages from measured natural
frequencies alone and incorporation of more information in the form of frequency
response functions, mode shapes etc. may be more appropriate.
References
1. Doebling SW, Farrar CR and Prime MB. A summary review of vibration based damage
identification methods, Shock and Vibration Digest, 30(2):91-105.1998.
2. Salawu OS, Williams C. Damage location using vibration mode shapes, in: Proceedings of
the SPIE, vol.2251, Proceedings of the 12th International Modal Analysis Conference, pp.9
33– 941,1994.
3. Vapnik V. The Nature of Statistical Learning Theory. Springer, N.Y., 1995. ISBN 0-387-
94559-8.
4. Charles R. Farrar, Keith Worden, Structural Health Monitoring: A Machine Learning
Perspective by,ISBN: 978-1-119-99433-6,November 2012.
5. Charles RF, Hoon S, and Scott W. Doebling. Statistical Pattern Recognition, The
13thInternational Congress and Exhibition on Condition Monitoring and Diagnostic
Engineering Management (COMADEM 2000), Houston, TX, USA, December 3-8, 2000.
6. Evgeniou T, Pontil M and Poggio T. Statistical Learning Theory: A Primer, Centre for
Biological and Computational Learning, Artificial Intelligence laboratory, MIT,
Cambridge, USA., International Journal of Computer Vision 38(1),9-13,2000.
7. Satpal, SB, Guha A and Banerjee S. Damage identification in aluminum beams using
support vector machine: Numerical and experimental studies. Structural. Control Health
Monitoring., doi:10.1002/stc.1773.2015.
8. Burges C. A tutorial on support vector machines for pattern recognition”, In β€œData Mining
and Knowledge Discovery”. Kluwer Academic Publishers, Boston, (Vol. 2). 1998
9. Chih-Chung C and Chih-Jen L. LIBSVM : A library for support vector machines. ACM
Transactions on Intelligent Systems and Technology, 2:27:1--27:27, 2011.
10. MATLAB R2013b, The Math Works Inc.

More Related Content

What's hot

A proposed assessment metrics for image steganography
A proposed assessment metrics for image steganographyA proposed assessment metrics for image steganography
A proposed assessment metrics for image steganographyijcisjournal
Β 
Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...
Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...
Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...IJCSIS Research Publications
Β 
Pattern classification
Pattern classificationPattern classification
Pattern classificationGarisha Chowdhary
Β 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
Β 
Image quality in nuclear medicine
Image quality in nuclear medicineImage quality in nuclear medicine
Image quality in nuclear medicineRad Tech
Β 
Image Processing Research paper
Image Processing Research paperImage Processing Research paper
Image Processing Research paperRonak Vyas
Β 
Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...
Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...
Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...IJECEIAES
Β 
Human detection in hours of
Human detection in hours ofHuman detection in hours of
Human detection in hours ofijistjournal
Β 
Paper id 26201476
Paper id 26201476Paper id 26201476
Paper id 26201476IJRAT
Β 
An adaptive gmm approach to background subtraction for application in real ti...
An adaptive gmm approach to background subtraction for application in real ti...An adaptive gmm approach to background subtraction for application in real ti...
An adaptive gmm approach to background subtraction for application in real ti...eSAT Publishing House
Β 
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...iosrjce
Β 
IJEST12-04-09-150
IJEST12-04-09-150IJEST12-04-09-150
IJEST12-04-09-150Jigar Jain
Β 
MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...
MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...
MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...cscpconf
Β 
Efficiency and capability of fractal image compression with adaptive quardtre...
Efficiency and capability of fractal image compression with adaptive quardtre...Efficiency and capability of fractal image compression with adaptive quardtre...
Efficiency and capability of fractal image compression with adaptive quardtre...ijma
Β 

What's hot (18)

A proposed assessment metrics for image steganography
A proposed assessment metrics for image steganographyA proposed assessment metrics for image steganography
A proposed assessment metrics for image steganography
Β 
Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...
Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...
Self Organizing Migration Algorithm with Curvelet Based Non Local Means Metho...
Β 
Pattern classification
Pattern classificationPattern classification
Pattern classification
Β 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
Β 
Image quality in nuclear medicine
Image quality in nuclear medicineImage quality in nuclear medicine
Image quality in nuclear medicine
Β 
Study and Analysis of Multiwavelet Transform with Threshold in Image Denoisin...
Study and Analysis of Multiwavelet Transform with Threshold in Image Denoisin...Study and Analysis of Multiwavelet Transform with Threshold in Image Denoisin...
Study and Analysis of Multiwavelet Transform with Threshold in Image Denoisin...
Β 
Image Processing Research paper
Image Processing Research paperImage Processing Research paper
Image Processing Research paper
Β 
Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...
Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...
Change Detection from Remotely Sensed Images Based on Stationary Wavelet Tran...
Β 
Human detection in hours of
Human detection in hours ofHuman detection in hours of
Human detection in hours of
Β 
Paper id 26201476
Paper id 26201476Paper id 26201476
Paper id 26201476
Β 
12098
1209812098
12098
Β 
Sersc 3.org (1)
Sersc 3.org (1)Sersc 3.org (1)
Sersc 3.org (1)
Β 
Lecture 29
Lecture 29Lecture 29
Lecture 29
Β 
An adaptive gmm approach to background subtraction for application in real ti...
An adaptive gmm approach to background subtraction for application in real ti...An adaptive gmm approach to background subtraction for application in real ti...
An adaptive gmm approach to background subtraction for application in real ti...
Β 
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Edge Detection with Detail Preservation for RVIN Using Adaptive Threshold Fil...
Β 
IJEST12-04-09-150
IJEST12-04-09-150IJEST12-04-09-150
IJEST12-04-09-150
Β 
MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...
MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...
MULTIFOCUS IMAGE FUSION USING MULTIRESOLUTION APPROACH WITH BILATERAL GRADIEN...
Β 
Efficiency and capability of fractal image compression with adaptive quardtre...
Efficiency and capability of fractal image compression with adaptive quardtre...Efficiency and capability of fractal image compression with adaptive quardtre...
Efficiency and capability of fractal image compression with adaptive quardtre...
Β 

Viewers also liked

An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...
An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...
An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...Subhajit Mondal
Β 
A new gradient based step size controlled inverse eigen sensitivity algorithm...
A new gradient based step size controlled inverse eigen sensitivity algorithm...A new gradient based step size controlled inverse eigen sensitivity algorithm...
A new gradient based step size controlled inverse eigen sensitivity algorithm...Subhajit Mondal
Β 
Effect of alkali treatment on vibration characteristics and mechanical proper...
Effect of alkali treatment on vibration characteristics and mechanical proper...Effect of alkali treatment on vibration characteristics and mechanical proper...
Effect of alkali treatment on vibration characteristics and mechanical proper...Libo Yan
Β 
Identification of Material Parameters of Pultruded FRP Composite Plates using...
Identification of Material Parameters of Pultruded FRP Composite Plates using...Identification of Material Parameters of Pultruded FRP Composite Plates using...
Identification of Material Parameters of Pultruded FRP Composite Plates using...Subhajit Mondal
Β 
Dynamics of sandwich composite plate with hole
Dynamics of sandwich composite plate with holeDynamics of sandwich composite plate with hole
Dynamics of sandwich composite plate with holeSubhajit Mondal
Β 
Chatter Overview
Chatter OverviewChatter Overview
Chatter Overviewguest66e8f6
Β 
Analysis of tool chatter in turning operation on lathe machine
Analysis of tool chatter in turning operation on lathe machineAnalysis of tool chatter in turning operation on lathe machine
Analysis of tool chatter in turning operation on lathe machineDevanshu Yadav
Β 
Vibration and Chatter in Machining Operation
Vibration and Chatter in Machining OperationVibration and Chatter in Machining Operation
Vibration and Chatter in Machining OperationPraveen Kumar Kushwah
Β 

Viewers also liked (9)

An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...
An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...
An Inverse Approach for the Determination of Viscous Damping Model of Fibre R...
Β 
A new gradient based step size controlled inverse eigen sensitivity algorithm...
A new gradient based step size controlled inverse eigen sensitivity algorithm...A new gradient based step size controlled inverse eigen sensitivity algorithm...
A new gradient based step size controlled inverse eigen sensitivity algorithm...
Β 
Effect of alkali treatment on vibration characteristics and mechanical proper...
Effect of alkali treatment on vibration characteristics and mechanical proper...Effect of alkali treatment on vibration characteristics and mechanical proper...
Effect of alkali treatment on vibration characteristics and mechanical proper...
Β 
Machine tool variation
Machine tool variationMachine tool variation
Machine tool variation
Β 
Identification of Material Parameters of Pultruded FRP Composite Plates using...
Identification of Material Parameters of Pultruded FRP Composite Plates using...Identification of Material Parameters of Pultruded FRP Composite Plates using...
Identification of Material Parameters of Pultruded FRP Composite Plates using...
Β 
Dynamics of sandwich composite plate with hole
Dynamics of sandwich composite plate with holeDynamics of sandwich composite plate with hole
Dynamics of sandwich composite plate with hole
Β 
Chatter Overview
Chatter OverviewChatter Overview
Chatter Overview
Β 
Analysis of tool chatter in turning operation on lathe machine
Analysis of tool chatter in turning operation on lathe machineAnalysis of tool chatter in turning operation on lathe machine
Analysis of tool chatter in turning operation on lathe machine
Β 
Vibration and Chatter in Machining Operation
Vibration and Chatter in Machining OperationVibration and Chatter in Machining Operation
Vibration and Chatter in Machining Operation
Β 

Similar to Detection of Damage in Beam from Measured Natural Frequencies Using Support Vector Machine Algorithm

Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...
Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...
Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...CSCJournals
Β 
An ann approach for network
An ann approach for networkAn ann approach for network
An ann approach for networkIJNSA Journal
Β 
AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...
AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...
AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...IJNSA Journal
Β 
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAINIMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAINijma
Β 
CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...
CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...
CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...IAEME Publication
Β 
3 ijaems nov-2015-6-development of an advanced technique for historical docum...
3 ijaems nov-2015-6-development of an advanced technique for historical docum...3 ijaems nov-2015-6-development of an advanced technique for historical docum...
3 ijaems nov-2015-6-development of an advanced technique for historical docum...INFOGAIN PUBLICATION
Β 
Smart antenna algorithm and application
Smart antenna algorithm and applicationSmart antenna algorithm and application
Smart antenna algorithm and applicationVirak Sou
Β 
Effect of kernel size on Wiener and Gaussian image filtering
Effect of kernel size on Wiener and Gaussian image filteringEffect of kernel size on Wiener and Gaussian image filtering
Effect of kernel size on Wiener and Gaussian image filteringTELKOMNIKA JOURNAL
Β 
Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276Editor IJARCET
Β 
Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276Editor IJARCET
Β 
Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373Editor IJARCET
Β 
Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373Editor IJARCET
Β 
Microstrip coupler design using bat
Microstrip coupler design using batMicrostrip coupler design using bat
Microstrip coupler design using batijaia
Β 
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...Power System Operation
Β 
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...Power System Operation
Β 
Boosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation EstimationBoosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation Estimationijma
Β 
Report kalman filtering
Report kalman filteringReport kalman filtering
Report kalman filteringIrfan Anjum
Β 
IRJET- Texture Analysis and Fracture Identification of Bones X-Ray Images...
IRJET-  	  Texture Analysis and Fracture Identification of Bones X-Ray Images...IRJET-  	  Texture Analysis and Fracture Identification of Bones X-Ray Images...
IRJET- Texture Analysis and Fracture Identification of Bones X-Ray Images...IRJET Journal
Β 

Similar to Detection of Damage in Beam from Measured Natural Frequencies Using Support Vector Machine Algorithm (20)

Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...
Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...
Fabric Textile Defect Detection, By Selection A Suitable Subset Of Wavelet Co...
Β 
An ann approach for network
An ann approach for networkAn ann approach for network
An ann approach for network
Β 
AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...
AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...
AN ANN APPROACH FOR NETWORK INTRUSION DETECTION USING ENTROPY BASED FEATURE S...
Β 
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAINIMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
IMAGE DENOISING BY MEDIAN FILTER IN WAVELET DOMAIN
Β 
CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...
CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...
CONSISTENT AND LUMPED MASS MATRICES IN DYNAMICS AND THEIR IMPACT ON FINITE EL...
Β 
3 ijaems nov-2015-6-development of an advanced technique for historical docum...
3 ijaems nov-2015-6-development of an advanced technique for historical docum...3 ijaems nov-2015-6-development of an advanced technique for historical docum...
3 ijaems nov-2015-6-development of an advanced technique for historical docum...
Β 
Smart antenna algorithm and application
Smart antenna algorithm and applicationSmart antenna algorithm and application
Smart antenna algorithm and application
Β 
Effect of kernel size on Wiener and Gaussian image filtering
Effect of kernel size on Wiener and Gaussian image filteringEffect of kernel size on Wiener and Gaussian image filtering
Effect of kernel size on Wiener and Gaussian image filtering
Β 
Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276
Β 
Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276Ijarcet vol-2-issue-7-2273-2276
Ijarcet vol-2-issue-7-2273-2276
Β 
J010245458
J010245458J010245458
J010245458
Β 
31075
3107531075
31075
Β 
Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373
Β 
Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373Ijarcet vol-2-issue-7-2369-2373
Ijarcet vol-2-issue-7-2369-2373
Β 
Microstrip coupler design using bat
Microstrip coupler design using batMicrostrip coupler design using bat
Microstrip coupler design using bat
Β 
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Β 
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Data-Driven Security Assessment of Power Grids Based on Machine Learning Appr...
Β 
Boosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation EstimationBoosting CED Using Robust Orientation Estimation
Boosting CED Using Robust Orientation Estimation
Β 
Report kalman filtering
Report kalman filteringReport kalman filtering
Report kalman filtering
Β 
IRJET- Texture Analysis and Fracture Identification of Bones X-Ray Images...
IRJET-  	  Texture Analysis and Fracture Identification of Bones X-Ray Images...IRJET-  	  Texture Analysis and Fracture Identification of Bones X-Ray Images...
IRJET- Texture Analysis and Fracture Identification of Bones X-Ray Images...
Β 

Recently uploaded

Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
Β 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
Β 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
Β 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
Β 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
Β 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
Β 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
Β 
Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)dollysharma2066
Β 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
Β 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
Β 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
Β 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
Β 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction managementMariconPadriquez1
Β 
Gurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
Β 
An introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxAn introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxPurva Nikam
Β 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
Β 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
Β 

Recently uploaded (20)

young call girls in Rajiv ChowkπŸ” 9953056974 πŸ” Delhi escort Service
young call girls in Rajiv ChowkπŸ” 9953056974 πŸ” Delhi escort Serviceyoung call girls in Rajiv ChowkπŸ” 9953056974 πŸ” Delhi escort Service
young call girls in Rajiv ChowkπŸ” 9953056974 πŸ” Delhi escort Service
Β 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
Β 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
Β 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
Β 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
Β 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
Β 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Β 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
Β 
Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 β‰Ό Call Girls In Shastri Nagar (Delhi)
Β 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
Β 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Β 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Β 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
Β 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
Β 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction management
Β 
Gurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✑️9711147426✨Call In girls Gurgaon Sector 51 escort service
Β 
An introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptxAn introduction to Semiconductor and its types.pptx
An introduction to Semiconductor and its types.pptx
Β 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Β 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
Β 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
Β 

Detection of Damage in Beam from Measured Natural Frequencies Using Support Vector Machine Algorithm

  • 1. Detection of Damage in Beam from Measured Natural Frequencies Using Support Vector Machine Algorithm Prashanth Shyamalaa , SubhajitMondalb , Sushanta Chakraborty* a Graduate Student; b Research Scholar, Communicating author; * Associate Professor Department of Civil Engineering, Indian Institute of Technology Kharagpur b E-mail address:suman.subhajit@gmail.com Abstract. Damage detection using vibration response is a vibrant area of research. Usually, measured natural frequencies are compared with the natural frequencies computed using a baseline finite element model and the objective function thus formed from the discrepancies of results are minimized using various algorithms. One such algorithm is the Support Vector Machine (SVM) algorithm which uses simulations of various damage scenarios. Damage is envisaged using stiffness loss in a member and the damaged responses are recorded and later on retrieved for comparison. The algorithm is found to be very robust for single damage cases of beam type of structures. 1 Introduction Damage detection at early stages in structures has become substantial and also vital from serviceability and safety point of view. Many decades of research produced variety of methods to detect damage. Some methods need access to locations of damages in structures which are in most circumstances impractical. This limitation can be overcome if vibration responses of structure were used to identify damage which was extensively studied. The fundamental idea being that damage effects the stiffness, mass or energy dissipation, i.e. the damping properties of a system, which, in turn, alter the measured dynamic responses of that system. Changes in global dynamic response parameters, such as natural frequencies, mode shapes, modal damping factors or modal mass etc. are mostly used for damage detection. Doebling et al.[1] provided a comprehensive survey about various damage detection techniques employing vibration until 90s. Salawu and Williams [2] surveyed damage detection algorithms using natural frequencies alone. Among the various damage detection algorithms, gradient based or evolutionary or heuristic damage detection algorithms are very popular, SVM is one such heuristic based algorithm based on statistical learning mechanism. This algorithm gained popularity in last 4 decades which was developed and conceived by Vapnik [3], the acceptance and applications of which has increased recently [4,5]. The SVM formulation uses the Structural Risk Minimization (SRM) principle, which has been shown to be superior [6] to traditionally used Empirical Risk Minimization (ERM) principle employed by conventional Artificial Neural Network (ANN) algorithm. SRM basically search for an upper bound on the expected risk, whereas ERM minimizes the error on the training data itself. It is this
  • 2. 307 Advance in Dynamics, Vibration and Control difference which makes SVM more general as compared to ANN type of algorithms. In this paper regression form of SVM is used. Damage detection of a cantilever beam using modal displacements are used which showed promising results [7]. Several damage conditions are simulated and the natural frequencies are used to detect damages [8] using SVM. Regression analysis finds a best fit function by minimizing errors for linearly separable data, but it become difficult if the data are not linearly separable. The benefit of SVM is that a linearly non-separable data can be separated by projecting the data space to higher dimensions by adding the kernels function. The kernel functions convert the non-linearly separable data to linearly separable data in higher dimensions where we need not consider about the conversions of feature vectors( here in our case natural frequencies) to higher dimensions In this paper, SVM algorithm is used for damage identification (i.e. its location and severity) of a beam using natural frequencies only. The damage is simulated by reducing the Young’s modulus of the material locally within an elemental volume which indirectly reflects the localized stiffness loss. Numerically simulated data are generated from a converged numerical finite element model of an isotropic rectangular cantilever beam, simulating various damage scenarios and the corresponding natural frequencies are recorded. In this paper, the term measured data was referred to the data obtained from numerical simulations. The detection of damage and its severity of damage of a cantilever beam is demonstrated in the paper. 2 Mathematical Formulations In the Support Vector Machine (SVM) algorithm natural frequency (x) and damage (y) can be correlated as (y,x) where x= {} is vector of natural frequencies and y being a scalar, depicting damage location or the material parameters [3]. Now this set of data can be regressed to determine or predict the values corresponding to damage location and severity. The approximation is represented by the equation y= (w.x) + b. (1) Here w describes the separating hyper-plane equation between the damage or undamaged class. The linear classifier w vector which divides the sample data points into their respective classes. The values of w can be found out as the optimum of y, which is a regression function and can be expressed as minw,b,ΞΎ,πœ‰πœ‰βˆ—,πœ–πœ– 1 2 𝑀𝑀 𝑇𝑇 𝑀𝑀 + 𝐢𝐢( βˆ‘ (πœ‰πœ‰π‘–π‘– 𝑙𝑙 𝑖𝑖=1 + πœ‰πœ‰π‘–π‘– βˆ— ) . (2) Here, C is a variable parameter that encodes the cost of non-separation in the sample set, and πœ‰πœ‰πœ‰πœ‰βˆ—, πœ‰πœ‰πœ‰πœ‰ are slack variables introduced so that the data could be made
  • 3. 308 Detection of Damage in Beam from Measured Natural Frequencies Using SVM Algorithm separable. In order to account for the erroneous sample of data, a Ξ΅-insensitive loss function is introduced 𝑦𝑦 = οΏ½ |𝑦𝑦𝑖𝑖 βˆ’ ({π‘₯π‘₯}𝑖𝑖, {𝑀𝑀}𝑖𝑖)|, 𝑖𝑖𝑖𝑖 |𝑦𝑦𝑖𝑖 βˆ’ ({π‘₯π‘₯}𝑖𝑖, {𝑀𝑀}𝑖𝑖)| > πœ€πœ€ πœ€πœ€ , 𝑒𝑒𝑒𝑒𝑒𝑒𝑒𝑒 . (3) The data is assumed to be linearly separable for the regression if the xi (natural frequencies) are taken just two. In our sets of problems tackled, it is initially decided that up to 8 natural frequencies be taken for each training sample to have a better representation of pattern in damage is using SVM’s regression model. Analyzing the data in higher dimensions may increase the volume of the sample space to a large extent and eventually the data will become sparse becomes sparse. This issue can be addressed by employing kernels functions in regression to model the sample space into higher dimensions. Usually, Kernels employing radial basis function are used in most cases and the same is employed in the present paper and can be mathematically expressed as 𝐾𝐾(π‘₯π‘₯, 𝑦𝑦) = 𝑒𝑒 βˆ’οΏ½ (π‘₯π‘₯βˆ’π‘₯π‘₯ 𝑖𝑖)2 2𝜎𝜎2 οΏ½ . (4) Here 𝜎𝜎 is the essential parameter in determination of the SVM regression model. The Cost of non-separation in samples is denoted by C. The Ξ΅ is taken as 0.5 for the present problem. In this paper the code LIBSVM [9] of MATLAB[10] is used. 3 Results and discussion 3.1 Identifying location of damage and severity of damage in a cantilever beam A cantilever beam having dimensions 1.0 m x 0.49m x 0.01 m. is considered first. The Young's modulus is assume to be 2E11 Pa and the Poisson’s ratio is considered as 0.28. The density of beam is assumed to be 7860 kg/m3 is to model the beam. Fig. 1 Cantilever beam with partitions to represent damage locations The damage location is introduced by creating a partition of size 10cm width and 5cm depth. the damage was given by reducing the E value for that partition in intervals of 1% cumulatively till 50%. The results were simulated by imparting damage at one
  • 4. 309 Advance in Dynamics, Vibration and Control location for 50 levels of decrease in E value gives 50 samples of 8 natural frequencies. So, a sum of 350 samples data is obtained for training data. For testing, the above numerical model is used but damage introduced in other location. For the present investigation only bending modes are considered as other modes show less influence on this type of damage. The below figure shows natural frequencies along with their mode shapes of first few modes. Fig. 2 mode shapes and natural frequencies for cantilever beam Along the cantilever beam few locations were chosen for the prediction of location and Young's modulus (E) values, assuming no noise in the training data. Later random noise was added to see the accuracy of prediction of values. Figure 3 shows the pattern indicates natural frequencies is used as training data for the regression model. Appropriate β€˜C’ (cost parameter) and β€˜Οƒβ€™ (gamma) values are chosen for the SVM regression model generations. There is no universal rule to select the best parameters for SVM analysis and determined by trial and error. The values of C and Οƒ assume to be 512 and 0.5 respectively for the present case. The generated model is tested on the values which were not in the training dataset. Table 1 shows the prediction of the damage location and its percentage error. Table 2 shows the prediction of Young's modulus obtained from the SVM algorithm for different level of noise.
  • 5. 310 Detection of Damage in Beam from Measured Natural Frequencies Using SVM Algorithm Fig 3. Percentage variation in natural frequency values (1 to 8) for 5 levels of reduction in E value (5%,10%,20%,30%,40%) for damage location at (a) 5cm (b) 15cm (c) 25cm (d) 35cm from fixed end of the cantilever beam. Table 1. Prediction of damage location using SVM Actual value (cm) Predicted value (cm) Error % 60 60.38 0.6 20 17.40 9.18 32.75 32.04 2.0 53.75 52.47 1.6 Table 2. Detection of severity of damage in the beam Damage located at 56 cm from support (actual Young's modulus 1.4E11) Damage located at 69 cm from support (actual Young's modulus 1.4E11) noise (%) predicted value (1xE11) noise (%) predicted value (1xE11) 1 1.3825 1 1.3969 2 1.3972 2 1.3964 4 1.3969 4 1.3894 8 1.3964 10 1.3885 10 1.3955 15 1.3871 15 1.3952 20 1.3824
  • 6. 311 Advance in Dynamics, Vibration and Control 4 Conclusions The SVM algorithm is found to be performing excellently to detect damages in various locations of an isotropic cantilever beam from measured natural frequencies only. The uniqueness of the detection with varying location and severity of damages are preserved, thus giving confidence about its future application. However, the algorithm has some difficulty in detecting multiple damages from measured natural frequencies alone and incorporation of more information in the form of frequency response functions, mode shapes etc. may be more appropriate. References 1. Doebling SW, Farrar CR and Prime MB. A summary review of vibration based damage identification methods, Shock and Vibration Digest, 30(2):91-105.1998. 2. Salawu OS, Williams C. Damage location using vibration mode shapes, in: Proceedings of the SPIE, vol.2251, Proceedings of the 12th International Modal Analysis Conference, pp.9 33– 941,1994. 3. Vapnik V. The Nature of Statistical Learning Theory. Springer, N.Y., 1995. ISBN 0-387- 94559-8. 4. Charles R. Farrar, Keith Worden, Structural Health Monitoring: A Machine Learning Perspective by,ISBN: 978-1-119-99433-6,November 2012. 5. Charles RF, Hoon S, and Scott W. Doebling. Statistical Pattern Recognition, The 13thInternational Congress and Exhibition on Condition Monitoring and Diagnostic Engineering Management (COMADEM 2000), Houston, TX, USA, December 3-8, 2000. 6. Evgeniou T, Pontil M and Poggio T. Statistical Learning Theory: A Primer, Centre for Biological and Computational Learning, Artificial Intelligence laboratory, MIT, Cambridge, USA., International Journal of Computer Vision 38(1),9-13,2000. 7. Satpal, SB, Guha A and Banerjee S. Damage identification in aluminum beams using support vector machine: Numerical and experimental studies. Structural. Control Health Monitoring., doi:10.1002/stc.1773.2015. 8. Burges C. A tutorial on support vector machines for pattern recognition”, In β€œData Mining and Knowledge Discovery”. Kluwer Academic Publishers, Boston, (Vol. 2). 1998 9. Chih-Chung C and Chih-Jen L. LIBSVM : A library for support vector machines. ACM Transactions on Intelligent Systems and Technology, 2:27:1--27:27, 2011. 10. MATLAB R2013b, The Math Works Inc.