mae430 reliability engineering in me term project ii jae hyung cho 20101103 andreas beckmann...

22
MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Upload: gwendolyn-terry

Post on 06-Jan-2018

220 views

Category:

Documents


0 download

DESCRIPTION

Contents Project I results summary Results using theoretical probability distribution Results using the graphical procedure Conclusion 3

TRANSCRIPT

Page 1: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

MAE430 Reliability Engineering in METerm Project II

Jae Hyung Cho 20101103Andreas Beckmann 20156476

Page 2: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Contents

• Project I results summary• Results using theoretical probability distribution• Results using the graphical procedure• Conclusion

2

Page 3: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Contents

• Project I results summary• Results using theoretical probability distribution• Results using the graphical procedure• Conclusion

3

Page 4: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Project I results summary

• Jae Hyung’s Data Set (n = 63)– Best fitting distribution: Biexponential Distribution– Best CDF estimation method: Median Rank

• Andreas’s Data Set (n = 59)– Best fitting distribution: Weibull Distribution– Best CDF estimation method: Symmetric S. C. D.

4

Page 5: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Contents

• Project I results summary• Results using theoretical probability distribution• Results using the graphical procedure• Conclusion

5

Page 6: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Strength and Stress

6

Data Set 1 42 207 371 440

60 225 380 449

96 232 386 449

96 233 390 461

114 235 393 468

130 239 393 473

132 239 399 484

134 259 400 490

150 262 405 499

150 268 410 506

159 299 412 514

186 305 413 527

187 306 414 544

188 315 415 546

194 340 422 606

205 345 435

Mean Strength

Data Set 2 16 139 281 428

27 140 292 430

30 151 313 441

30 152 314 446

40 154 323 450

49 157 325 460

53 168 336 463

81 175 360 488

87 189 364 513

89 207 384 513

93 209 398 547

99 236 408 561

108 238 421 573

123 240 423 601

134 242 424  

Mean Stress

Page 7: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Calculation of PDF Using Wolfram Alpha

7

Strength: BiexponentialCDF calculation: Median Rankξ = 118.9061X0 = 391.3413

Strength: WeibullCDF calculation: Symmetric S.C.D.m = 1.41297ξ = 308.2052

Page 8: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Theoretical probability distribution

8

Strength

Stress

Page 9: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Numerical Integration Using Matlab

9

>> f = @(x)(1-exp(-exp((x-391.3413)/118.9061))).*(0.000430008.*exp(-0.000304329.*(x.^1.41297)).*(x.^0.41297));

>> P_f = integral(f, 0, Inf)

P_f = 0.3792

>> g = @(x)(1-exp(-(x/308.2052).^(1.41297))).*(0.000312936*exp(-0.0372099.*exp(0.00841*x)+0.00841*x)); >> R = integral(g, 0, Inf)

R = 0.6208

Stress-based Strength-based

The two formulas yield the same result !

Page 10: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Integration from to : Same Result

10

% f_stress_smaller0 = 0; % F_stress_smaller0 = 0;% f_stress_larger0 = 0.000430008.*exp(-0.000304329.*(x.^1.41297))*(x.^0.41297);% F_stress_larger0 = 1-exp(-(x./308.2052).^(1.41297));% f_strength = 0.000312936.*exp(-0.0372099.*exp(0.00841.*x)+0.00841.*x);% F_strength = 1-exp(-exp((x-391.3413)/118.9061)); % term_for_R_smaller0 = (f_strength * F_stress_smaller0);% term_for_R_larger0 = (f_strength * F_stress_larger0);

integrand_R_smaller0 = @(x) 0.000312936.*exp(-0.0372099.*exp(0.00841.*x)+0.00841.*x) .* 0;integrand_R_larger0 = @(x) (0.000312936.*exp(-0.0372099.*exp(0.00841.*x)+0.00841.*x)) .* (1-exp(-(x./308.2052).^(1.41297)));integrand_Pf_smaller0 = @(x) 0 .* ( 1-exp(-exp((x-391.3413)./118.9061)));integrand_Pf_larger0 = @(x) (0.000430008.*exp(-0.000304329.*(x.^1.41297)).*(x.^0.41297)) .* (1-exp(-exp((x-391.3413)./118.9061)));

R = integral(integrand_R_smaller0, -inf , 0) + integral(integrand_R_larger0 , 0, inf)Pf = integral(integrand_Pf_smaller0, -inf , 0) + integral(integrand_Pf_larger0 , 0, inf)

R = 0.620773031855217

Pf = 0.3792290345758780.6208 + 0.3792 = 1

Page 11: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Contents

• Project I results summary• Results using theoretical probability distribution• Results using the graphical procedure• Conclusion

11

Page 12: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

𝑷 𝒇

12

Page 13: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Lower Limit

13

Page 14: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Upper Limit

14

Page 15: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Triangle Method

15

Page 16: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

𝑅

16

Page 17: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Lower Limit

17

Page 18: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Upper Limit

18

Page 19: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Triangle Method

19

Page 20: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Comparison of and

20

TheoreticalGraphical ( calculation)

Lower Upper Triangle

(=1-)

TheoreticalGraphical ( calculation)

Lower Upper Triangle

(=1-)

Most conservative values

Graphical method calculation check:

Page 21: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Contents

• Project I results summary• Results using theoretical probability distribution• Results using the graphical procedure• Conclusion

21

Page 22: MAE430 Reliability Engineering in ME Term Project II Jae Hyung Cho 20101103 Andreas Beckmann 20156476

Conclusion

22

Theoretical Calculation vs. Graphical Calculation• Data sets do not exactly represent biexponential and Weibull

distributions Difference between theoretical and graphical method results

Lower vs. Upper vs. Triangle (for )• The upper limit method is the most conservative• Conservative design is preferred in mechanical engineering

Selected Reliability and Probability of Failure• ,