Created by Erik Kostandyan, v4 January 15, 2017

Size: px
Start display at page:

Download "Created by Erik Kostandyan, v4 January 15, 2017"

Transcription

1 MATLAB Functions for the First, Second and Inverse First Order Reliability Methods Copyrighted by Erik Kostandyan, Contact: Contents Description... References:... Operational Instructions... Notes regarding ReliabilityByFORM.p, ReliabilityBySORM.p and InverseReliabilityByFORM.p codes... FORM Input... FORM Output... 3 SORM Input... 3 SORM Output... 3 Inverse FORM Input... 3 Inverse FORM Output... 4 Examples... 5 Ex FORM / SORM Solution Ex Inverse FORM Solution Ex Ex FORM / SORM Solution Ex Ex FORM / SORM Solution Ex Inverse FORM Solution Ex Ex FORM / SORM Solution Ex Ex FORM / SORM Solution Ex Inverse FORM Solution Ex Ex FORM / SORM Solution Ex Inverse FORM Solution Ex Description First Order Reliability Method (FORM) is a method of estimating the reliability index ( ), and failure function is approximated by its linear form. Second Order Reliability Method (SORM) approximates failure function by its quadratic form. FORM allows estimating invariant reliability index irrespective to the limit state function (safety margin) formulation. This index also known as the Hasofer and Lind reliability index (see []). Stochastic variables that construct limit state function are transformed to the standard normal stochastic variables. Based on these variables, the limit state function is transformed to the standardized domain. In standardized domain, the reliability index is defined as the shortest distance from the origin to the limit state function, and this solution is termed a design point in standardized domain. To find the shortest distance, the numerical differentiation with iterative algorithm is applied (see []), this method is incorporated by ReliabilityByFORM.p. The probability of failure is estimated approximately using the reliability index by: PFORM ( FORM ). Once the design point is estimated, SORM might be applied by ReliabilityBySORM.p at the design point, and probably of failure and reliability index by SORM might be estimated: P ( ). ReliabilityBySORM.p is based on [] suggested formula, where quadratic SORM SORM of the approximated failure function is rotated (via Gram Schmidt) such that alpha vector is on the first axis and the rest main curvatures are estimated based on Hessian matrix.

2 Inverse FORM is based on the FORM logic with some modification to incorporate search direction (see [3]). Output of the algorithm is a parameter under the interest. If more than parameter under the interest was set up (indicating multiple solutions), then the program estimates the shortest distance point in parameter space and reports those values as well as the line equation based on which multiple solutions might be found. References: [] H.O. Madsen, S. Krenk, N.C. Lind, Methods of structural safety. Prentice-Hall, Englewood Cliffs, London, 986. [] Hohenbichler, M. and Rackwitz, R. (988). Improvement Of Second Order Reliability Estimates by Importance Sampling. J. Eng. Mech.,4(), [3] Der Kiureghian, Armen, Yan Zhang, and Chun-Ching Li. "Inverse reliability problem." Journal of engineering mechanics 0, no. 5 (994): Operational Instructions Save Setup.m, LimitStateFunction.m, ReliabilityByFORM.p, ReliabilityBySORM.p, InverseReliabilityByFORM.p in the same folder. Open Setup.m and LimitStateFunction.m then modify them accordingly then save them and run Setup.m. Please see some examples below. Notes regarding ReliabilityByFORM.p, ReliabilityBySORM.p and InverseReliabilityByFORM.p codes The difference quotient in numerical differentiation is user adjustable, Absolute error_tolerance of limit state value in standardized domain for FORM is user adjustable, as well as for Inverse FORM, Maximum number of iterations in either function is set to 50,000. So if you see that result is reported on the 50,000 iteration, it means your problem has been stopped from looping. Try to change the difference quotient and error_tolerance and try again. If again the result is reported on the 50,000 iteration, it means your problem does not have a solution (at least mathematically). For the given vector X with marginal distributions, means, standard deviations, and linear correlation structures, Nataf transformation (Gaussian Copulas) is used to estimate the fictive correlation matrix, and then either the Cholesky or Eigen decomposition is used, this selection is user adjustable, If x is a vector of initial variables, x=[x(), x(),..., x(n)], with known input vectors {Mean vector, Standard Deviation vector, Correlation Matrix and Distribution vector}, then: o Set up for FORM/SORM: 'Constants' (Constant,Constant,Constant3) are any matrixes or vectors defined in Setup.m that could be declared into the Limit State Function, and FORM/SORM can be called interactively by any loop and results could be stored. o Set up for InverseFORM: 'Constants' are the same as for FORM/SORM set up, 'Parameter' is a Parameter (can be a vector) of the Limit State Function which we wish to find such that target reliability index is Target_HL_ReliabilityIndex in Setup.m. o o Limit State Function for FORM/SORM: 'Parameter' is not used and better to alway set to zero in Setup.m or turned it off. g={any expression with x(i) and Constants}, if Constants exist in Setup.m, otherwise g={any expression with x(i)}, and Constants are not used and better to set them to zero in Setup.m or turned them off. Limit State Function for InverseFORM: 'Parameter' is set to some inital guess in Setup.m. g={any expression with x(i), Parameter and Constants}, if Constants exist in Setup.m, otherwise g={any expression with x(i), Parameter} and Constants are not used and better to set them to zero in Setup.m or turned them off. Note: In any input vector keep the order of variables x(i) as they appear in the vector x=[x(), x(),..., x(n)], see below for the examples. FORM Input If x is a vector of initial variables, x=[x(), x(),..., x(n)], with Mean vector, Standard Deviation vector, Correlation Matrix, Distribution vector, then the defined Limit State Function has to be in the following format: LimitStateFunction: g={any expression with x(i) and may be Constants} defined in LimitStateFunction.m dz is the difference quotient in numerical differentiation,

3 error_tolerance an absolute error for limit states from adjacent iterations in standardized domain, Mean_X is Mean row vector, SD_X is Standard Deviation row vector, Dist_X is Distribution row vector: o for Normal=, LogNormal=, GumbelMax=3, WeibullMin=4, Uniform=5, Cor_X is Correlation Matrix, NatafTransform is a binary variable for the decomposition method in Nataf transformation: o NatafTransform=0 => Based on CholeskyDecomposition, o NatafTransform= => Based on EigenDecomposition. Constant, Constant, Constant3 any numerical values that should be considered in LimitStateFunction.m, FORM Output ProbabilityOfFailure_FORM = Probability Of Failure by FORM, HL_ReliabilityIndex = Hasofer-Lind Reliability Index, LimitStateFunctionValue for the final solution NumberOfIterations Alfa_Z = Unit Row Vector Values in Normalized Space, OmissionSensitivityFactor=relative importance on reliability index by assuming stochastic variable i is deterministic, DesignPoint_Z = Coordinates of Design Point in Normalized Space, DesignPoint_X = Coordinates of Design Point in Initial Space, GradientVector = Gradient Row Vector at the DesignPoint_Z. Sign is defined: o if sign= => Alfa_Z and DesignPoint_Z have same direction => B>0 o if sign=0 => Alfa_Z and DesignPoint_Z not same direction => B<0 SORM Input If x is a vector of initial variables, x=[x(), x(),..., x(n)], with Mean vector, Standard Deviation vector, Correlation Matrix, Distribution vector, then the defined Limit State Function has to be in the following format: LimitStateFunction: g={any expression with x(i) and may be Constants} defined in LimitStateFunction.m, DesignPoint_Z=Coordinates of Design Point in Normalized Space (can be found by FORM), dz is the difference quotient in numerical differentiation, Mean_X is Mean row vector, SD_X is Standard Deviation row vector, Dist_X is Distribution row vector: o for Normal=, LogNormal=, GumbelMax=3, WeibullMin=4, Uniform=5, Cor_X is Correlation Matrix, NatafTransform is a binary variable for the decomposition method in Nataf transformation: o NatafTransform=0 => Based on CholeskyDecomposition, o NatafTransform= => Based on EigenDecomposition. Constant, Constant, Constant3 any numerical values that should be considered in LimitStateFunction.m, SORM Output ProbabilityOfFailure_SORM = Probability Of Failure by SORM, SORM_ReliabilityIndex = SORM Reliability Index, Alfa_Z = Unit Row Vector Values in Normalized Space, GradientVector = Gradient Row Vector at the DesignPoint_Z, HessianMatrix = Hessian Matrix at the DesignPoint_Z. Inverse FORM Input If x is a vector of initial variables, x=[x(), x(),..., x(n)], with Mean vector, Standard Deviation vector, Correlation Matrix, Distribution vector, then the defined Limit State Function has to be in the following format: LimitStateFunction: g={any expression with x(i) and Parameter, and may be Constants} defined in LimitStateFunction.m dz is the difference quotient in numerical differentiation,

4 error_tolerance an absolute error for limit states from adjacent iterations in standardized domain, Mean_X is Mean row vector, SD_X is Standard Deviation row vector, Dist_X is Distribution row vector: o for Normal=, LogNormal=, GumbelMax=3, WeibullMin=4, Uniform=5, Cor_X is Correlation Matrix, NatafTransform is a binary variable for the decomposition method in Nataf transformation: o NatafTransform=0 => Based on CholeskyDecomposition, o NatafTransform= => Based on EigenDecomposition. Constant, Constant, Constant3 any numerical values that should be considered in LimitStateFunction.m, Parameter is what we would like to estimate in limit state function such that reliability index is equal to Target_HL_ReliabilityIndex. Parameter might be a vector, in this case indexing should be used in LimitStateFunction.m and Setup.m. Also, parameter values in Setup.m is the initial guess values. Target_HL_ReliabilityIndex, is a value that we are aiming for the reliability index. Inverse FORM Output DesignConstant estimated parameter or parameters (if more than one parameter was requested to be found then the closest to the origin form the parameter space is reported) DesignConstantEquation a line equation from which parameter(s) might be estimated, reported in equation format such as: size{parameters Space} i= C i Parameter i + Constant = 0, where Ci is constant(s). Iteration= number of iteration until the solution is found

5 Examples Ex. Limit state function 48x x 3600x 3 3 x ~ Normal( mean, sd 0.6) x ~ Normal( mean *0 ^ 7, sd 3*0 ^ 6) x ~ Normal( mean *0 ^ 5, sd *0 ^ 6) All x s are independent. FORM / SORM Solution Ex. LimitStateFunction: g=48*x()*x(3)-constant*x(); dz=0^-3; error_tolerance=0^-; Mean_X=[ *0^7 *0^-5]; SD_X=[0.6 3*0^6 *0^-6]; Dist_X=[ ]; Cor_X=[,0,0; 0,,0; 0,0,]; Constant=[3600]; Constant=0; Constant3=0; ProbabilityOfFailure_FORM = e-04 HL_ReliabilityIndex = LimitStateFunctionValue = NumberOfIterations = 5 Alfa_Z = OmissionSensitivityFactor = DesignPoint_Z = DesignPoint_X =.0e+07 * GradientVector =.0e+03 * sign = ProbabilityOfFailure_SORM = e-04 SORM_ReliabilityIndex = Alfa_Z = GradientVector =.0e+03 * HessianMatrix =.0e+0 * Inverse FORM Solution Ex.

6 LimitStateFunction: g=parameter*x()*x(3)-constant*x(); dz=0^-3; error_tolerance=0^-; Mean_X=[ *0^7 *0^-5]; SD_X=[0.6 3*0^6 *0^-6]; Dist_X=[ ]; Cor_X=[,0,0; 0,,0; 0,0,]; Constant=[3600]; Constant=0; Constant3=0; Parameter=[]; Target_HL_ReliabilityIndex= ; DesignConstant = DesignConstantEquation =.0e+04 * Iteration = 4 Ex. Limit state function x x x ~ Uniform( mean 50, sd 8.87) x ~ Weibull( mean.5, sd.5) or x ~ Exponential ( 0.08) x x Cor _ x x 0.5 x FORM / SORM Solution Ex. LimitStateFunction: g=x()-x(); dz=0^-5; error_tolerance=0^-3; Mean_X=[50.5]; SD_X=[8.87.5]; Dist_X=[5 4]; Cor_X=[ 0.5; 0.5 ]; NatafTransform= see below; Constant=0; Constant=0; Constant3=0; Output for NatafTransform = 0 ProbabilityOfFailure_FORM = HL_ReliabilityIndex = LimitStateFunctionValue = e-05 NumberOfIterations = 6

7 Alfa_Z = OmissionSensitivityFactor = DesignPoint_Z = DesignPoint_X = GradientVector = sign = ProbabilityOfFailure_SORM = SORM_ReliabilityIndex = Alfa_Z = GradientVector = HessianMatrix = Output for NatafTransform = ProbabilityOfFailure_FORM = HL_ReliabilityIndex = LimitStateFunctionValue = e-05 NumberOfIterations = 6 Alfa_Z = OmissionSensitivityFactor = DesignPoint_Z = DesignPoint_X = GradientVector = sign = ProbabilityOfFailure_SORM = SORM_ReliabilityIndex = Alfa_Z = GradientVector = HessianMatrix = Ex. 3 Consider the beam: p The load p is uniformly distributed and the maximum bending moment is m 9 8 max pl. The failure condition is max F m m.

8 m F p, l, and are outcomes of uncorrelated Normally distributed variables P, L, and deviations: E[P] =.0 kn/m SD[P]= 0.4 kn/m E[L] = 4.0 m SD[L]= 0.4 m E[ ] = 5.0 knm SD[ ]= 0.4 knm M F M F M F with expected values and standard Calculate the reliability index, the annual probability of failure and the - values? 9 Given: Limit state function x x x 8 x ~ Normal( mean, sd 0.4) x ~ Normal( mean 4, sd 0.4) x ~ Normal( mean 5, sd 0.4) 3 3 FORM / SORM Solution Ex. 3 LimitStateFunction: g=x(3)-(9/8)*x()*(x()^); dz=0^-5; error_tolerance=0^-3; Mean_X=[ 4 5]; SD_X=[ ] ; Dist_X=[ ]; Cor_X=[,0,0; 0,,0; 0,0,]; Constant=0; Constant=0; Constant3=0; ProbabilityOfFailure_FORM = HL_ReliabilityIndex = LimitStateFunctionValue = e-04 NumberOfIterations = 3 Alfa_Z = OmissionSensitivityFactor = DesignPoint_Z = DesignPoint_X = GradientVector = sign = ProbabilityOfFailure_SORM = SORM_ReliabilityIndex = Alfa_Z = GradientVector = HessianMatrix =

9 Inverse FORM Solution Ex. 3 LimitStateFunction: g=parameter*x(3)-(9/8)*x()*(x()^); dz=0^-5; error_tolerance=0^-3; Mean_X=[ 4 5]; SD_X=[ ] ; Dist_X=[ ]; Cor_X=[,0,0; 0,,0; 0,0,]; Constant=0; Constant=0; Constant3=0; Parameter=[]; Target_HL_ReliabilityIndex=3.99; DesignConstant = DesignConstantEquation = Iteration = 6 Ex. 4 In reliability, assessment of a structural element the following limit state function (failure function) is used: g = R X Q where R is Strength with Log Normal distribution (μ= 400 kn/m, s=0 kn/m ) X is Model uncertainty with Normal distribution (μ=, s=0.) G is Annual maximum Load with Gumbel distribution (μ= 00 kn/m, s=30 kn/m ) The stochastic variables are considered independent. Calculate the reliability index, the annual probability of failure and the - values? Given: Limit state function x xx3 x ~ LogNormal ( mean 400, sd 0) x ~ Normal( mean, sd 0.) x ~ Gumbel( mean 00, sd 30) 3 FORM / SORM Solution Ex. 4 LimitStateFunction g=x()-x()*x(3); dz=0^-5; error_tolerance=0^-3; Mean_X=[400 00]; SD_X=[ ]; Dist_X=[ 3] Cor_X=[,0,0; 0,,0; 0,0,] NatafTransform=0 Constant=0; Constant=0; Constant3=0;

10 ProbabilityOfFailure_FORM = e-06 HL_ReliabilityIndex = LimitStateFunctionValue = e-05 NumberOfIterations = 5 Alfa_Z = OmissionSensitivityFactor = DesignPoint_Z = DesignPoint_X =.0e+0 * GradientVector =.0e+0 * sign = ProbabilityOfFailure_SORM = e-06 SORM_ReliabilityIndex = Alfa_Z = GradientVector =.0e+0 * HessianMatrix = Ex. 5 Given: Limit state function x x x x ~ LogNormal ( mean 400, sd 0) x ~ Normal( mean, sd 0.) x ~ Gumbel( mean 00, sd 30) FORM / SORM Solution Ex. 5 LimitStateFunction: g=(x()^constant)-(x()^constant)*(x(3)^constant3); dz=0^-4; error_tolerance=0^-3; Mean_X=[400 00]; SD_X=[ ]; Dist_X=[ 3]; Cor_X=[,0,0; 0,,0; 0,0,]; Constant=; Constant=; Constant3=4; ProbabilityOfFailure_FORM = HL_ReliabilityIndex = LimitStateFunctionValue = e-04

11 NumberOfIterations = Alfa_Z = OmissionSensitivityFactor = DesignPoint_Z = DesignPoint_X =.0e+0 * GradientVector =.0e+05 * sign = 0 ProbabilityOfFailure_SORM = SORM_ReliabilityIndex = Alfa_Z = GradientVector =.0e+05 * HessianMatrix =.0e+05 * Inverse FORM Solution Ex. 5 LimitStateFunction: g=parameter*(x()^constant)- (x()^constant)*(x(3)^constant3); dz=0^-4; error_tolerance=0^-3; Mean_X=[400 00]; SD_X=[ ]; Dist_X=[ 3]; Cor_X=[,0,0; 0,,0; 0,0,]; Constant=; Constant=; Constant3=4; Parameter=[]; Target_HL_ReliabilityIndex=3; DesignConstant = e+04 DesignConstantEquation =.0e+09 * Iteration = 4 Ex. 6 Given: Limit state function 377x x x x 4 4 3

12 x ~ LogNormal( mean 400, sd 0) x ~ Normal( mean, sd 0.) x ~ Gumbel( mean 00, sd 30) 3 x ~ Normal( mean 0, sd 3) 4 FORM / SORM Solution Ex. 6 LimitStateFunction: g=377*(x()^constant)+x(4)- (x()^constant)*(x(3)^constant3); dz=0^-4; error_tolerance=0^-3; Mean_X=[ ]; SD_X=[ ]; Dist_X=[ 3 ]; Cor_X=eye(length(Mean_X)); Constant=; Constant=; Constant3=4; ProbabilityOfFailure_FORM = HL_ReliabilityIndex = LimitStateFunctionValue = e-04 NumberOfIterations = 8 Alfa_Z = OmissionSensitivityFactor = DesignPoint_Z = DesignPoint_X =.0e+0 * GradientVector =.0e+09 * sign = ProbabilityOfFailure_SORM = SORM_ReliabilityIndex = Alfa_Z = GradientVector =.0e+09 * HessianMatrix =.0e+09 * Inverse FORM Solution Ex. 6 dz=0^-4; error_tolerance=0^-3; Mean_X=[ ]; SD_X=[ ];

13 Dist_X=[ 3 ]; Cor_X=eye(length(Mean_X)); Constant=; Constant=; Constant3=4; Parameter=[ ]; Target_HL_ReliabilityIndex=; DesignConstant = DesignConstantEquation =.0e+09 * Iteration = 6

Structural Reliability

Structural Reliability Structural Reliability Thuong Van DANG May 28, 2018 1 / 41 2 / 41 Introduction to Structural Reliability Concept of Limit State and Reliability Review of Probability Theory First Order Second Moment Method

More information

A general procedure for rst/second-order reliability method (FORM/SORM)

A general procedure for rst/second-order reliability method (FORM/SORM) Structural Safety 21 (1999) 95±112 www.elsevier.nl/locate/strusafe A general procedure for rst/second-order reliability method (FORM/SORM) Yan-Gang Zhao*, Tetsuro Ono Department of Architecture, Nagoya

More information

THIRD-MOMENT STANDARDIZATION FOR STRUCTURAL RELIABILITY ANALYSIS

THIRD-MOMENT STANDARDIZATION FOR STRUCTURAL RELIABILITY ANALYSIS THIRD-MOMENT STANDARDIZATION FOR STRUCTURAL RELIABILITY ANALYSIS By Yan-Gang Zhao and Tetsuro Ono ABSTRACT: First- and second-order reliability methods are generally considered to be among the most useful

More information

component risk analysis

component risk analysis 273: Urban Systems Modeling Lec. 3 component risk analysis instructor: Matteo Pozzi 273: Urban Systems Modeling Lec. 3 component reliability outline risk analysis for components uncertain demand and uncertain

More information

A Simple Third-Moment Method for Structural Reliability

A Simple Third-Moment Method for Structural Reliability A Simple Third-Moment Method for Structural Reliability Yan-Gang Zhao* 1, Zhao-Hui Lu 2 and Tetsuro Ono 3 1 Associate Professor, Nagoya Institute of Technology, Japan 2 Graduate Student, Nagoya Institute

More information

Fourth-Moment Standardization for Structural Reliability Assessment

Fourth-Moment Standardization for Structural Reliability Assessment Fourth-Moment Standardization for Structural Reliability Assessment Yan-Gang Zhao, M.ASCE 1 ; and Zhao-Hui Lu Abstract: In structural reliability analysis, the uncertainties related to resistance and load

More information

Reliability Analysis Methods

Reliability Analysis Methods Reliability Analysis Methods Emilio Bastidas-Arteaga, Abdel-Hamid Soubra To cite this version: Emilio Bastidas-Arteaga, Abdel-Hamid Soubra. Reliability Analysis Methods. Michael A. Hicks; Cristina Jommi.

More information

EFFICIENT MODELS FOR WIND TURBINE EXTREME LOADS USING INVERSE RELIABILITY

EFFICIENT MODELS FOR WIND TURBINE EXTREME LOADS USING INVERSE RELIABILITY Published in Proceedings of the L00 (Response of Structures to Extreme Loading) Conference, Toronto, August 00. EFFICIENT MODELS FOR WIND TURBINE ETREME LOADS USING INVERSE RELIABILITY K. Saranyasoontorn

More information

Reduction of Random Variables in Structural Reliability Analysis

Reduction of Random Variables in Structural Reliability Analysis Reduction of Random Variables in Structural Reliability Analysis S. ADHIKARI AND R. S. LANGLEY Cambridge University Engineering Department Cambridge, U.K. Random Variable Reduction in Reliability Analysis

More information

A Moving Kriging Interpolation Response Surface Method for Structural Reliability Analysis

A Moving Kriging Interpolation Response Surface Method for Structural Reliability Analysis Copyright 2013 Tech Science Press CMES, vol.93, no.6, pp.469-488, 2013 A Moving Kriging Interpolation Response Surface Method for Structural Reliability Analysis W. Zhao 1,2, J.K. Liu 3, X.Y. Li 2, Q.W.

More information

PRACTICAL FIRST-ORDER RELIABILITY COMPUTATIONS USING SPREADSHEET

PRACTICAL FIRST-ORDER RELIABILITY COMPUTATIONS USING SPREADSHEET PRACTICAL FIRST-ORDER RELIABILITY COMPUTATIONS USING SPREADSHEET B. K. Low Associate Professor Geotechnical Research Centre School of Civil & Environ. Engineering Nanyang Technological University Republic

More information

AN INVESTIGATION OF NONLINEARITY OF RELIABILITY-BASED DESIGN OPTIMIZATION APPROACHES. β Target reliability index. t β s Safety reliability index; s

AN INVESTIGATION OF NONLINEARITY OF RELIABILITY-BASED DESIGN OPTIMIZATION APPROACHES. β Target reliability index. t β s Safety reliability index; s Proceedings of DETC 0 ASME 00 Design Engineering Technical Conferences and Computers and Information in Engineering Conference Montreal, CANADA, September 9-October, 00 DETC00/DAC-XXXXX AN INVESTIGATION

More information

Guideline for Offshore Structural Reliability Analysis - General 3. RELIABILITY ANALYSIS 38

Guideline for Offshore Structural Reliability Analysis - General 3. RELIABILITY ANALYSIS 38 FEBRUARY 20, 1995 3. RELIABILITY ANALYSIS 38 3.1 General 38 3.1.1 Variables 38 3.1.2 Events 39 3.1.3 Event Probability 41 3.1.4 The Reliability Index 41 3.1.5 The Design Point 42 3.1.6 Transformation of

More information

However, reliability analysis is not limited to calculation of the probability of failure.

However, reliability analysis is not limited to calculation of the probability of failure. Probabilistic Analysis probabilistic analysis methods, including the first and second-order reliability methods, Monte Carlo simulation, Importance sampling, Latin Hypercube sampling, and stochastic expansions

More information

Reduction of Random Variables in Structural Reliability Analysis

Reduction of Random Variables in Structural Reliability Analysis Reduction of Random Variables in Structural Reliability Analysis S. Adhikari and R. S. Langley Department of Engineering University of Cambridge Trumpington Street Cambridge CB2 1PZ (U.K.) February 21,

More information

Reliability assessment of cutting tools life based on advanced approximation methods

Reliability assessment of cutting tools life based on advanced approximation methods Reliability assessment of cutting tools life based on advanced approximation methods K. Salonitis 1*, A. Kolios 2 1 Cranfield University, Manufacturing and Materials Department 2 Cranfield University,

More information

Reliability-based design optimization of problems with correlated input variables using a Gaussian Copula

Reliability-based design optimization of problems with correlated input variables using a Gaussian Copula Struct Multidisc Optim DOI 0.007/s0058-008-077-9 RESEARCH PAPER Reliability-based design optimization of problems with correlated input variables using a Gaussian Copula Yoojeong Noh K. K. Choi Liu Du

More information

Probabilistic analysis of off-center cracks in cylindrical structures

Probabilistic analysis of off-center cracks in cylindrical structures International Journal of Pressure Vessels and Piping 77 (2000) 3 16 www.elsevier.com/locate/ijpvp Probabilistic analysis of off-center cracks in cylindrical structures S. Rahman*, G. Chen a, R. Firmature

More information

Stochastic optimization - how to improve computational efficiency?

Stochastic optimization - how to improve computational efficiency? Stochastic optimization - how to improve computational efficiency? Christian Bucher Center of Mechanics and Structural Dynamics Vienna University of Technology & DYNARDO GmbH, Vienna Presentation at Czech

More information

Methods of Reliability Analysis in the context of RDO. Lectures. Christian Bucher

Methods of Reliability Analysis in the context of RDO. Lectures. Christian Bucher Lectures Methods of Reliability Analysis in the context of RDO Christian Bucher presented at the Weimar Optimization and Stochastic Days 2011 Source: www.dynardo.de/en/library Methods of Reliability Analysis

More information

INVERSE RELIABILITY ANALYSIS IN STRUCTURAL DESIGN

INVERSE RELIABILITY ANALYSIS IN STRUCTURAL DESIGN INVERSE RELIABILITY ANALYSIS IN STRUCTURAL DESIGN David Lehký, Drahomír Novák Institute of Structural Mechanics, Faculty of Civil Engineering, Brno University of Technology, Brno, Czech Republic.6.0 ISUME

More information

THEORETICAL PART (10 p)

THEORETICAL PART (10 p) Solutions to the written exam (004-04-17) in Ship structures Basic course Solutions to the written exam 004-04-17 in Ship structures Basic course THEORETICAL PART (10 p) Question 1 (.5 p) Somewhere between

More information

STOCHASTIC FINITE ELEMENT ANALYSIS OF GROUNDWATER FLOW USING THE FIRST- ORDER RELIABILITY METHOD

STOCHASTIC FINITE ELEMENT ANALYSIS OF GROUNDWATER FLOW USING THE FIRST- ORDER RELIABILITY METHOD Abstract STOCHASTIC FINITE ELEMENT ANALYSIS OF GROUNDWATER FLOW USING THE FIRST- ORDER RELIABILITY METHOD Jeffrey D. Cawlfield Dept. of Geological Engineering University of Missouri-Rolla Rolla, MO 65401

More information

Probabilistic elastic-plastic fracture analysis of circumferentially cracked pipes with finite-length surface flaws

Probabilistic elastic-plastic fracture analysis of circumferentially cracked pipes with finite-length surface flaws Nuclear Engineering and Design 195 (2000) 239 260 www.elsevier.com/locate/nucengdes Probabilistic elastic-plastic fracture analysis of circumferentially cracked pipes with finite-length surface flaws Sharif

More information

EFFICIENT SHAPE OPTIMIZATION USING POLYNOMIAL CHAOS EXPANSION AND LOCAL SENSITIVITIES

EFFICIENT SHAPE OPTIMIZATION USING POLYNOMIAL CHAOS EXPANSION AND LOCAL SENSITIVITIES 9 th ASCE Specialty Conference on Probabilistic Mechanics and Structural Reliability EFFICIENT SHAPE OPTIMIZATION USING POLYNOMIAL CHAOS EXPANSION AND LOCAL SENSITIVITIES Nam H. Kim and Haoyu Wang University

More information

Figure The different sources of statistical uncertainties

Figure The different sources of statistical uncertainties 3.4 Uncertainties in the treatment of statistical data and influences on the structural reliability assessment * 3.4. Introduction Structural reliability methods allow us to account for the uncertain part

More information

Approximate methods for calculating probability of failure

Approximate methods for calculating probability of failure Approximate methods for calculating probability of failure Working with normal distributions is appealing First-order second-moment method (FOSM) Most probable point First order reliability method (FORM)

More information

Reliability analysis of geotechnical risks

Reliability analysis of geotechnical risks Reliability analysis of geotechnical risks Lazhar Belabed*, Hacene Benyaghla* * Department of Civil Engineering and Hydraulics, University of Guelma, Algeria Abstract The evaluation of safety or reliability

More information

Overview of Structural Reliability Analysis Methods Part I: Local Reliability Methods

Overview of Structural Reliability Analysis Methods Part I: Local Reliability Methods Overview of Structural Reliability Analysis Methods Part I: Local Reliability Methods ChangWu HUANG, *, Abdelkhalak El Hami, Bouchaïb Radi Normandie Université, INSA Rouen, LOFIMS, 76000 Rouen, France.

More information

Lecture 10. Failure Probabilities and Safety Indexes

Lecture 10. Failure Probabilities and Safety Indexes Lecture 10. Failure Probabilities and Safety Indexes Igor Rychlik Chalmers Department of Mathematical Sciences Probability, Statistics and Risk, MVE300 Chalmers May 2013 Safety analysis - General setup:

More information

Extreme Design Loads Calibration of Offshore Wind Turbine Blades through Real Time Measurements

Extreme Design Loads Calibration of Offshore Wind Turbine Blades through Real Time Measurements Downloaded from orbit.dtu.dk on: Mar 08, 209 Extreme Design Loads Calibration of Offshore Wind Turbine Blades through Real Time Measurements Natarajan, Anand; Vesth, Allan; Lamata, Rebeca Rivera Published

More information

Probabilistic Engineering Mechanics. An innovating analysis of the Nataf transformation from the copula viewpoint

Probabilistic Engineering Mechanics. An innovating analysis of the Nataf transformation from the copula viewpoint Probabilistic Engineering Mechanics 4 9 3 3 Contents lists available at ScienceDirect Probabilistic Engineering Mechanics journal homepage: www.elsevier.com/locate/probengmech An innovating analysis of

More information

RESPONSE SURFACE METHODS FOR STOCHASTIC STRUCTURAL OPTIMIZATION

RESPONSE SURFACE METHODS FOR STOCHASTIC STRUCTURAL OPTIMIZATION Meccanica dei Materiali e delle Strutture Vol. VI (2016), no.1, pp. 99-106 ISSN: 2035-679X Dipartimento di Ingegneria Civile, Ambientale, Aerospaziale, Dei Materiali DICAM RESPONSE SURFACE METHODS FOR

More information

An Efficient Computational Solution Scheme of the Random Eigenvalue Problems

An Efficient Computational Solution Scheme of the Random Eigenvalue Problems 50th AIAA SDM Conference, 4-7 May 2009 An Efficient Computational Solution Scheme of the Random Eigenvalue Problems Rajib Chowdhury & Sondipon Adhikari School of Engineering Swansea University Swansea,

More information

CALCULATION OF A SHEET PILE WALL RELIABILITY INDEX IN ULTIMATE AND SERVICEABILITY LIMIT STATES

CALCULATION OF A SHEET PILE WALL RELIABILITY INDEX IN ULTIMATE AND SERVICEABILITY LIMIT STATES Studia Geotechnica et Mechanica, Vol. XXXII, No. 2, 2010 CALCULATION OF A SHEET PILE WALL RELIABILITY INDEX IN ULTIMATE AND SERVICEABILITY LIMIT STATES JERZY BAUER Institute of Mining, Wrocław University

More information

Research Collection. Basics of structural reliability and links with structural design codes FBH Herbsttagung November 22nd, 2013.

Research Collection. Basics of structural reliability and links with structural design codes FBH Herbsttagung November 22nd, 2013. Research Collection Presentation Basics of structural reliability and links with structural design codes FBH Herbsttagung November 22nd, 2013 Author(s): Sudret, Bruno Publication Date: 2013 Permanent Link:

More information

RELIABILITY ANALYSIS OF REINFORCED MASONRY WALLS. G. B. Pirzada 1, J.L.Dawe 2 and Y.Liu 3

RELIABILITY ANALYSIS OF REINFORCED MASONRY WALLS. G. B. Pirzada 1, J.L.Dawe 2 and Y.Liu 3 RELIABILITY ANALYSIS OF REINFORCED MASONRY WALLS G. B. Pirzada 1, J.L.Dawe 2 and Y.Liu 3 ABSTRACT A new methodology is presented here to estimate the systems reliability of reinforced masonry walls subjected

More information

IN MANY reliability-based design optimization (RBDO)

IN MANY reliability-based design optimization (RBDO) AIAA JOURNAL Vol 47, No 4, April 009 Reduction of Ordering Effect in Reliability-Based Design Optimization Using Dimension Reduction Method Yoojeong Noh, K K Choi, and Ikjin Lee University of Iowa, Iowa

More information

Analysis of structural reliability under parameter uncertainties

Analysis of structural reliability under parameter uncertainties Probabilistic Engineering Mechanics 23 (2008) 351 358 www.elsevier.com/locate/probengmech Analysis of structural reliability under parameter uncertainties Armen Der Kiureghian Department of Civil and Environmental

More information

MODIFIED MONTE CARLO WITH IMPORTANCE SAMPLING METHOD

MODIFIED MONTE CARLO WITH IMPORTANCE SAMPLING METHOD MODIFIED MONTE CARLO WITH IMPORTANCE SAMPLING METHOD Monte Carlo simulation methods apply a random sampling and modifications can be made of this method is by using variance reduction techniques (VRT).

More information

Sensitivity and Reliability Analysis of Nonlinear Frame Structures

Sensitivity and Reliability Analysis of Nonlinear Frame Structures Sensitivity and Reliability Analysis of Nonlinear Frame Structures Michael H. Scott Associate Professor School of Civil and Construction Engineering Applied Mathematics and Computation Seminar April 8,

More information

Line Search Methods for Unconstrained Optimisation

Line Search Methods for Unconstrained Optimisation Line Search Methods for Unconstrained Optimisation Lecture 8, Numerical Linear Algebra and Optimisation Oxford University Computing Laboratory, MT 2007 Dr Raphael Hauser (hauser@comlab.ox.ac.uk) The Generic

More information

International Journal of Pressure Vessels and Piping

International Journal of Pressure Vessels and Piping International Journal of Pressure Vessels and Piping 87 (21) 22e229 Contents lists available at ScienceDirect International Journal of Pressure Vessels and Piping journal homepage: www.elsevier.com/locate/ijpvp

More information

Reliability updating in geotechnical engineering including spatial

Reliability updating in geotechnical engineering including spatial Appeared in: Computers and Geotechnics, 2012, 42: 44-51. Reliability updating in geotechnical engineering including spatial variability of soil Iason Papaioannou 1,2*, Daniel Straub 1 1 Engineering Risk

More information

Multivariate Distribution Models

Multivariate Distribution Models Multivariate Distribution Models Model Description While the probability distribution for an individual random variable is called marginal, the probability distribution for multiple random variables is

More information

Lessons in Estimation Theory for Signal Processing, Communications, and Control

Lessons in Estimation Theory for Signal Processing, Communications, and Control Lessons in Estimation Theory for Signal Processing, Communications, and Control Jerry M. Mendel Department of Electrical Engineering University of Southern California Los Angeles, California PRENTICE HALL

More information

New Developments in Tail-Equivalent Linearization method for Nonlinear Stochastic Dynamics

New Developments in Tail-Equivalent Linearization method for Nonlinear Stochastic Dynamics New Developments in Tail-Equivalent Linearization method for Nonlinear Stochastic Dynamics Armen Der Kiureghian President, American University of Armenia Taisei Professor of Civil Engineering Emeritus

More information

Analytical derivation of the outcrossing rate in time-variant reliability problems

Analytical derivation of the outcrossing rate in time-variant reliability problems November 4, 2006 :38 Structures and Infrastructure Engineering sudret-rev Structures and Infrastructure Engineering, Vol. 00, No. 00, March 2006, 4 Analytical derivation of the outcrossing rate in time-variant

More information

Structural reliability analysis of deep excavations

Structural reliability analysis of deep excavations Timo Schweckendiek, TU Delft, Wim Courage, TNO Built Environment and Geosciences Introduction The Finite Element Method is nowadays widely used in structural design, both for the Servicebility Limit State

More information

RELIABILITY MODELING OF IMPACTED COMPOSITE MATERIALS FOR RAILWAYS

RELIABILITY MODELING OF IMPACTED COMPOSITE MATERIALS FOR RAILWAYS 16 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS RELIABILITY MODELING OF IMPACTED COMPOSITE MATERIALS FOR RAILWAYS Guillaumat L*, Dau F*, Cocheteux F**, Chauvin T** *LAMEFIP ENSAM Esplanade des Arts

More information

Risk Assessment of Highway Bridges: A Reliability-based Approach

Risk Assessment of Highway Bridges: A Reliability-based Approach Risk Assessment of Highway Bridges: A Reliability-based Approach by Reynaldo M. Jr., PhD Indiana University-Purdue University Fort Wayne pablor@ipfw.edu Abstract: Many countries are currently experiencing

More information

Risk and Reliability Analysis: Theory and Applications: In Honor of Prof. Armen Der Kiureghian. Edited by P.

Risk and Reliability Analysis: Theory and Applications: In Honor of Prof. Armen Der Kiureghian. Edited by P. Appeared in: Risk and Reliability Analysis: Theory and Applications: In Honor of Prof. Armen Der Kiureghian. Edited by P. Gardoni, Springer, 2017 Reliability updating in the presence of spatial variability

More information

NTNU Faculty of Engineering Science and Technology Department of Marine Technology TMR 4195 DESIGN OF OFFSHORE STRUCTURES

NTNU Faculty of Engineering Science and Technology Department of Marine Technology TMR 4195 DESIGN OF OFFSHORE STRUCTURES NTNU Faculty of Engineering Science and Technology Department of Marine Technology EXERCISE 4 TMR 495 DESIGN OF OFFSHORE STRUCTURES Distr. Date: 9 th Feb 4 Sign: Q. Chen Mandatory Exercise This exercise

More information

Extreme value distributions for nonlinear transformations of vector Gaussian processes

Extreme value distributions for nonlinear transformations of vector Gaussian processes Probabilistic Engineering Mechanics 22 (27) 136 149 www.elsevier.com/locate/probengmech Extreme value distributions for nonlinear transformations of vector Gaussian processes Sayan Gupta, P.H.A.J.M. van

More information

A univariate approximation at most probable point for higher-order reliability analysis

A univariate approximation at most probable point for higher-order reliability analysis International Journal of Solids and Structures 43 (2006) 2820 2839 www.elsevier.com/locate/ijsolstr A univariate approximation at most probable point for higher-order reliability analysis S. Rahman *,

More information

Institute for Statics und Dynamics of Structures Fuzzy probabilistic safety assessment

Institute for Statics und Dynamics of Structures Fuzzy probabilistic safety assessment Institute for Statics und Dynamics of Structures Fuzzy probabilistic safety assessment Bernd Möller Fuzzy probabilistic safety assessment randomness fuzzy randomness fuzzyness failure Fuzzy- Probabilistik

More information

Random Fatigue. ! Module 3. ! Lecture 23 :Random Vibrations & Failure Analysis

Random Fatigue. ! Module 3. ! Lecture 23 :Random Vibrations & Failure Analysis !! Module 3! Lecture 23 :Random Vibrations & Failure Analysis Random Fatigue!! Sayan Gupta Department of Applied Mechanics Indian Institute of Technology Madras Random fatigue As has been mentioned earlier,

More information

A probabilistic method to predict fatigue crack initiation

A probabilistic method to predict fatigue crack initiation International Journal of Fracture (2006) 137:9 17 DOI 10.1007/s10704-005-3074-0 Springer 2006 A probabilistic method to predict fatigue crack initiation SALIL. S. KULKARNI, L. SUN, B. MORAN, S. KRISHNASWAMY

More information

Structural reliability analysis with implicit limit state functions

Structural reliability analysis with implicit limit state functions J. Miranda Structural reliability analysis with implicit limit state functions 1 Structural reliability analysis with implicit limit state functions Jorge Miranda Instituto Superior Técnico, University

More information

Chapter 2 Wiener Filtering

Chapter 2 Wiener Filtering Chapter 2 Wiener Filtering Abstract Before moving to the actual adaptive filtering problem, we need to solve the optimum linear filtering problem (particularly, in the mean-square-error sense). We start

More information

Reliability Based Topology Optimization under Stochastic Excitation

Reliability Based Topology Optimization under Stochastic Excitation The 11th US National Congress on Computational Mechanics Reliability Based Topology Optimization under Stochastic Excitation Junho Chun 07/26/2011 Advisors : Junho Song & Glaucio H. Paulino Department

More information

26. Filtering. ECE 830, Spring 2014

26. Filtering. ECE 830, Spring 2014 26. Filtering ECE 830, Spring 2014 1 / 26 Wiener Filtering Wiener filtering is the application of LMMSE estimation to recovery of a signal in additive noise under wide sense sationarity assumptions. Problem

More information

Comparative Performance Analysis of Three Algorithms for Principal Component Analysis

Comparative Performance Analysis of Three Algorithms for Principal Component Analysis 84 R. LANDQVIST, A. MOHAMMED, COMPARATIVE PERFORMANCE ANALYSIS OF THR ALGORITHMS Comparative Performance Analysis of Three Algorithms for Principal Component Analysis Ronnie LANDQVIST, Abbas MOHAMMED Dept.

More information

Reliability of sheet pile walls and the influence of corrosion structural reliability analysis with finite elements

Reliability of sheet pile walls and the influence of corrosion structural reliability analysis with finite elements Risk, Reliability and Societal Safety Aven & Vinnem (eds) 2007 Taylor & Francis Group, London, ISBN 978-0-415-44786-7 Reliability of sheet pile walls and the influence of corrosion structural reliability

More information

Adaptive probability analysis using an enhanced hybrid mean value method

Adaptive probability analysis using an enhanced hybrid mean value method Research Paper Struct Multidisc Optim 28, 1 15 2004) DOI 10.1007/s00158-004-0452-6 Adaptive probability analysis using an enhanced hybrid mean value method B.D. Youn, K.K. Choi, L. Du Abstract This paper

More information

MODELING OF EPISTEMIC UNCERTAINTY IN RELIABILITY ANALYSIS OF STRUCTURES USING A ROBUST GENETIC ALGORITHM

MODELING OF EPISTEMIC UNCERTAINTY IN RELIABILITY ANALYSIS OF STRUCTURES USING A ROBUST GENETIC ALGORITHM Iranian Journal of Fuzzy Systems Vol. 12, No. 2, (2015) pp. 23-40 23 MODELING OF EPISTEMIC UNCERTAINTY IN RELIABILITY ANALYSIS OF STRUCTURES USING A ROBUST GENETIC ALGORITHM M. BAGHERI, M. MIRI AND N.

More information

An Adaptive Sequential Linear Programming Algorithm for Optimal Design Problems With Probabilistic Constraints

An Adaptive Sequential Linear Programming Algorithm for Optimal Design Problems With Probabilistic Constraints Kuei-Yuan Chan Assistant Professor Department of Mechanical Engineering, National Cheng Kung University, Tainan, Taiwan e-mail: chanky@mail.ncku.edu.tw Steven J. Skerlos e-mail: skerlos@umich.edu Panos

More information

Fatigue Reliability and Calibration of Fatigue Design Factors for Offshore Wind Turbines

Fatigue Reliability and Calibration of Fatigue Design Factors for Offshore Wind Turbines Energies 2012, 5, 1816-1834; doi:10.3390/en5061816 Article OPEN ACCESS energies ISSN 1996-1073 www.mdpi.com/journal/energies Fatigue Reliability and Calibration of Fatigue Design Factors for Offshore Wind

More information

Reliability of uncertain dynamical systems with multiple design points

Reliability of uncertain dynamical systems with multiple design points Structural Safety 21 (1999) 113±133 www.elsevier.nl/locate/strusafe Reliability of uncertain dynamical systems with multiple design points S.K. Au, C. Papadimitriou, J.L. Beck* Division of Engineering

More information

Use of Simulation in Structural Reliability

Use of Simulation in Structural Reliability Structures 008: Crossing Borders 008 ASCE Use of Simulation in Structural Reliability Author: abio Biondini, Department of Structural Engineering, Politecnico di Milano, P.za L. Da Vinci 3, 033 Milan,

More information

MATHEMATICS FOR COMPUTER VISION WEEK 8 OPTIMISATION PART 2. Dr Fabio Cuzzolin MSc in Computer Vision Oxford Brookes University Year

MATHEMATICS FOR COMPUTER VISION WEEK 8 OPTIMISATION PART 2. Dr Fabio Cuzzolin MSc in Computer Vision Oxford Brookes University Year MATHEMATICS FOR COMPUTER VISION WEEK 8 OPTIMISATION PART 2 1 Dr Fabio Cuzzolin MSc in Computer Vision Oxford Brookes University Year 2013-14 OUTLINE OF WEEK 8 topics: quadratic optimisation, least squares,

More information

Reliability-Based Microstructural Topology Design with Respect to Vibro-Acoustic Criteria

Reliability-Based Microstructural Topology Design with Respect to Vibro-Acoustic Criteria 11 th World Congress on Structural and Multidisciplinary Optimisation 07 th -12 th, June 2015, Sydney Australia Reliability-Based Microstructural Topology Design with Respect to Vibro-Acoustic Criteria

More information

A heuristic for moment-matching scenario generation

A heuristic for moment-matching scenario generation Lukáš Adam 4. 11. 2013 1 / 21 Table of contents 1 Introduction 2 Basic algorithm 3 Modified algorithm 4 Results 2 / 21 Introduction Consider an optimization stochastic problem. To solve the problem one

More information

ENHANCED MONTE CARLO FOR RELIABILITY-BASED DESIGN AND CALIBRATION

ENHANCED MONTE CARLO FOR RELIABILITY-BASED DESIGN AND CALIBRATION COMPDYN 2011 ECCOMAS Thematic Conference on Computational Methods in Structural Dynamics and Earthquake Engineering M. Papadrakakis, M. Fragiadakis, V. Plevris (eds.) Corfu, Greece, 25-28 May 2011 ENHANCED

More information

Sets of Joint Probability Measures Generated by Weighted Marginal Focal Sets

Sets of Joint Probability Measures Generated by Weighted Marginal Focal Sets Sets of Joint Probability Measures Generated by Weighted Marginal Focal Sets Thomas Fetz Institut für Technische Mathemati, Geometrie und Bauinformati Universität Innsbruc, Austria fetz@mat.uib.ac.at Abstract

More information

UNCERTAINTY MODELLING AND LIMIT STATE RELIABILITY OF TUNNEL SUPPORTS UNDER SEISMIC EFFECTS

UNCERTAINTY MODELLING AND LIMIT STATE RELIABILITY OF TUNNEL SUPPORTS UNDER SEISMIC EFFECTS UNCERTAINTY MODELLING AND LIMIT STATE RELIABILITY OF TUNNEL SUPPORTS UNDER SEISMIC EFFECTS Mallika S 1, Srividya. A, Venkatachalam. G 3 1 Research Scholar, Reliability Engineering Group, IIT Bombay, Powai,

More information

5. Random Vectors. probabilities. characteristic function. cross correlation, cross covariance. Gaussian random vectors. functions of random vectors

5. Random Vectors. probabilities. characteristic function. cross correlation, cross covariance. Gaussian random vectors. functions of random vectors EE401 (Semester 1) 5. Random Vectors Jitkomut Songsiri probabilities characteristic function cross correlation, cross covariance Gaussian random vectors functions of random vectors 5-1 Random vectors we

More information

Reliability Problems in Earthquake Engineering. J. E. Hurtado

Reliability Problems in Earthquake Engineering. J. E. Hurtado Reliability Problems in Earthquake Engineering J. E. Hurtado Monograph CIMNE IS-63, 2010 Monografías de Ingeniería Sísmica Editor A. H. Barbat Reliability Problems in Earthquake Engineering J. E. Hurtado

More information

Numerical Optimization Prof. Shirish K. Shevade Department of Computer Science and Automation Indian Institute of Science, Bangalore

Numerical Optimization Prof. Shirish K. Shevade Department of Computer Science and Automation Indian Institute of Science, Bangalore Numerical Optimization Prof. Shirish K. Shevade Department of Computer Science and Automation Indian Institute of Science, Bangalore Lecture - 13 Steepest Descent Method Hello, welcome back to this series

More information

Uncertainty and Risk in Foundation Design

Uncertainty and Risk in Foundation Design 2.1 Classify the uncertainty associated with following items as either aleatory or epistemic and explain your reason for your classification: average wind speed over a 30 day period, location of a certain

More information

A NEW HYBRID RELIABILITY ANALYSIS METHOD: THE DESIGN POINT - RESPONSE SURFACE - SIMULATION METHOD

A NEW HYBRID RELIABILITY ANALYSIS METHOD: THE DESIGN POINT - RESPONSE SURFACE - SIMULATION METHOD A NEW HYBRID RELIABILITY ANALYSIS METHOD: THE DESIGN POINT - RESPONSE SURFACE - SIMULATION METHOD M. Barbato 1, Q. Gu 2 and J.P. Conte 3 1 Assistant Professor, Department of Civil & Environmental Engineering,

More information

Multivariate Distributions

Multivariate Distributions IEOR E4602: Quantitative Risk Management Spring 2016 c 2016 by Martin Haugh Multivariate Distributions We will study multivariate distributions in these notes, focusing 1 in particular on multivariate

More information

Assessment of Probabilistic Methods for Mistuned Bladed Disk Vibration

Assessment of Probabilistic Methods for Mistuned Bladed Disk Vibration 46th AIAA/ASME/ASCE/AHS/ASC Structures, Structural Dynamics & Materials Conference 18-21 April 2005, Austin, Texas AIAA 2005-1990 Assessment of Probabilistic Methods for Mistuned Bladed Disk Vibration

More information

TMA4125 Matematikk 4N Spring 2017

TMA4125 Matematikk 4N Spring 2017 Norwegian University of Science and Technology Institutt for matematiske fag TMA15 Matematikk N Spring 17 Solutions to exercise set 1 1 We begin by writing the system as the augmented matrix.139.38.3 6.

More information

SEQUENCING RELIABILITY GROWTH TASKS USING MULTIATTRIBUTE UTILITY FUNCTIONS

SEQUENCING RELIABILITY GROWTH TASKS USING MULTIATTRIBUTE UTILITY FUNCTIONS SEQUENCING RELIABILITY GROWTH TASKS USING MULTIATTRIBUTE UTILITY FUNCTIONS KEVIN J WILSON, JOHN QUIGLEY Department of Management Science University of Strathclyde, UK In both hardware and software engineering,

More information

Probabilistic design tools and applications

Probabilistic design tools and applications CHAPTER 5 Probabilistic design tools and applications 5.1 INTRODUCTION In this chapter the probabilistic design tools will be presented. This encompasses the methods to combine the inherent uncertainty

More information

Latin Hypercube Sampling with Multidimensional Uniformity

Latin Hypercube Sampling with Multidimensional Uniformity Latin Hypercube Sampling with Multidimensional Uniformity Jared L. Deutsch and Clayton V. Deutsch Complex geostatistical models can only be realized a limited number of times due to large computational

More information

Structural reliability analysis of rotor blades in ultimate loading

Structural reliability analysis of rotor blades in ultimate loading EWEA 2011 Brussels, Belgium: Europe s Premier Wind Energy Event Structural reliability analysis of rotor blades in ultimate loading K. C. Bacharoudis 1, D. J. Lekou 2, T. P. Philippidis 1 1. University

More information

RELIABILITY ANALYSIS IN FRACTURE MECHANICS ACCORDING TO COMBINED FAILURE CRITERIA

RELIABILITY ANALYSIS IN FRACTURE MECHANICS ACCORDING TO COMBINED FAILURE CRITERIA ECCOMAS Congress 2016 VII European Congress on Computational Methods in Applied Sciences and Engineering M. Papadrakakis, V. Papadopoulos, G. Stefanou, V. Plevris (eds.) Crete Island, Greece, 5 10 June

More information

RELIABILITY ANALYSIS AND DESIGN CONSIDERING DISJOINT ACTIVE FAILURE REGIONS

RELIABILITY ANALYSIS AND DESIGN CONSIDERING DISJOINT ACTIVE FAILURE REGIONS RELIABILITY ANALYSIS AND DESIGN CONSIDERING DISJOINT ACTIVE FAILURE REGIONS A Thesis by Xiaolong Cui Master of Science, Wichita State University, 2016 Bachelor of Science, Wichita State University, 2013

More information

A First Course in Wavelets with Fourier Analysis

A First Course in Wavelets with Fourier Analysis * A First Course in Wavelets with Fourier Analysis Albert Boggess Francis J. Narcowich Texas A& M University, Texas PRENTICE HALL, Upper Saddle River, NJ 07458 Contents Preface Acknowledgments xi xix 0

More information

STABILITY PLANNING USING RELIABILTY TECHNIQUES. ASEAN Moving Forward. November 11, 2013, Chiang Mai, THAILAND

STABILITY PLANNING USING RELIABILTY TECHNIQUES. ASEAN Moving Forward. November 11, 2013, Chiang Mai, THAILAND STABILITY PLANNING USING RELIABILTY TECHNIQUES ASEAN ++ 2013 Moving Forward November 11, 2013, Chiang Mai, THAILAND Sanga Tangchawal, Ph.D. Professor of Mining Engineering Geoscience Program Mahidol University,

More information

A Structural Reliability Analysis Method Based on Radial Basis Function

A Structural Reliability Analysis Method Based on Radial Basis Function Copyright 2012 Tech Science Press CMC, vol.27, no.2, pp.128-142, 2012 A Structural Reliability Analysis Method Based on Radial Basis Function M. Q. Chau 1,2, X. Han 1, Y. C. Bai 1 and C. Jiang 1 Abstract:

More information

SOFTWARE DEVELOPMENT ON THE MATLAB FOR STRUCTURAL RELIABILITY AND SENSITIVITY ANALYSIS

SOFTWARE DEVELOPMENT ON THE MATLAB FOR STRUCTURAL RELIABILITY AND SENSITIVITY ANALYSIS SOFTWARE DEVELOPMENT ON THE MATLAB FOR STRUCTURAL RELIABILITY AND SENSITIVITY ANALYSIS Carlo Yukio Nunes Nilson Martins Alves Neto Plínio Glauber Carvalho dos Prazeres Sandoval José Rodrigues Júnior Regina

More information

Technical Note Rock Wedge Stability Analysis Using System Reliability Methods

Technical Note Rock Wedge Stability Analysis Using System Reliability Methods Rock Mech. Rock Engng. (2007) 40 (4), 419 427 DOI 10.1007/s00603-005-0088-x Printed in The Netherlands Technical Note Rock Wedge Stability Analysis Using System Reliability Methods By R. Jimenez-Rodriguez

More information

Probability of Failure for the Thermal Fatigue Life of Solder Joints in BGA Packaging using FORM and MCS Methods

Probability of Failure for the Thermal Fatigue Life of Solder Joints in BGA Packaging using FORM and MCS Methods International Journal of Mechanical & Mechatronics Engineering IJMME-IJENS Vol:17 No:04 1 Probability of Failure for the Thermal Fatigue Life of Solder Joints in BGA Packaging using FORM and MCS Methods

More information

SEISMIC RELIABILITY ANALYSIS OF BASE-ISOLATED BUILDINGS

SEISMIC RELIABILITY ANALYSIS OF BASE-ISOLATED BUILDINGS International Symposium on Engineering under Uncertainty: Safety Assessment and Management January 4 to 6, 2012 Paper No.: CNP 070 SEISMIC RELIABILITY ANALYSIS OF BASE-ISOLATED BUILDINGS M.C. Jacob 1,

More information

Reinforced concrete structures II. 4.5 Column Design

Reinforced concrete structures II. 4.5 Column Design 4.5 Column Design A non-sway column AB of 300*450 cross-section resists at ultimate limit state, an axial load of 700 KN and end moment of 90 KNM and 0 KNM in the X direction,60 KNM and 27 KNM in the Y

More information

Polynomial chaos expansions for structural reliability analysis

Polynomial chaos expansions for structural reliability analysis DEPARTMENT OF CIVIL, ENVIRONMENTAL AND GEOMATIC ENGINEERING CHAIR OF RISK, SAFETY & UNCERTAINTY QUANTIFICATION Polynomial chaos expansions for structural reliability analysis B. Sudret & S. Marelli Incl.

More information

CLASS NOTES Computational Methods for Engineering Applications I Spring 2015

CLASS NOTES Computational Methods for Engineering Applications I Spring 2015 CLASS NOTES Computational Methods for Engineering Applications I Spring 2015 Petros Koumoutsakos Gerardo Tauriello (Last update: July 27, 2015) IMPORTANT DISCLAIMERS 1. REFERENCES: Much of the material

More information