PLOT.cg: Fatigue Crack Growth in Reliability plots

Description Usage Arguments Details Value Author(s) References Examples

Description

It provides graphical outputs composed of the trends corresponding to the crack length growth due to mechanical fatigue, the crack length estimates by the models, crack length predictions, and lifetime distribution estimates.

Usage

1

Arguments

x

cracks.growth object

Details

Specifically, the following graphs are provided: exploratory dataset graph, plot with the crack length estimates and predictions, residuals graph, empirical and estimated lifetime distribution plot obtained by SEP-lme_bkde, SEP-lme_kde or PB-nlme methods.

Value

Return the following values:

plot.data

Exploratory chart.

plot.pred

Plot for fatigue lifetimes estimates and predictions.

plot.F

Plot for the empirical distribution and lifetimes distribution estimates of fatigue lifetimes.

plot.resid

Residuals chart.

Author(s)

Antonio Meneses antoniomenesesfreire@hotmail.com, Salvador Naya salva@udc.es, Javier Tarrio-Saavedra jtarrio@udc.es, Ignacio Lopez-Ullibarri ilu@udc.es

References

Meeker, W., Escobar, L. (1998) Statistical Methods for Reliability Data. John Wiley & Sons, Inc. New York.

Pinheiro JC., Bates DM. (2000) Mixed-effects models in S ans S-plus. Statistics and Computing. Springer-Verlang. New York.

Paris, P.C. and Erdogan, F. (1963) A critical analysis of crack propagation laws. J. Basic Eng., 85, 528.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
## Not run: 
## Using the Alea.A dataset
data(Alea.A)
x <- Alea.A
## Critical crack length
aF <- 1.6    
## Censoring time         
T_c <- 0.12           
## cracks.growth function applied to Alea.A data
cg <- cracks.growth (x, aF, T_c, method = c("SEP-lme_bkde", "SEP-lme_kde",
                     "PB-nlme"), nBKDE = 5000, nKDE = 5000, nMC = 5000) 
## PLOT.cg applied to cg object.
PLOT <- PLOT.cg(cg) 
names(PLOT)
## [1]  "plot.data"  "plot.pred"  "plot.F"     "plot.resid"
## Exploratory chart for the Alea.A dataset
PLOT$plot.data(main = "Plot:  crack growth", xlab = "million cycles",
                             ylab = "cracks(inches)",  cex.lab=1.8,
                             cex.main = 2)
text(0.02, x$a.F + 0.05, "Failure", cex = 1.8)
text(0.095, 0.95, "Censoring time->", cex = 1.5)
## Plot for fatigue lifetimes estimates and predictions.
PLOT$plot.pred(xlab = "million cycles", ylab = "cracks(inches)",
 main = "Plot: crack growth, estimation and prediction\n failure times (red)",
 cex.lab = 1.8, cex.main = 1.5)
text(0.02,x$a.F+0.05, "Failure", cex = 1.8)
text(0.085,0.95, "Censoring time->", cex = 1.5)  
## Plot for the empirical distribution and lifetimes distribution estimates 
## of  fatigue lifetimes
PLOT$plot.F(main = "Plot: distributions of failure times",
             xlab = "million cycles", ylab = "probability",
             cex.lab = 1.7, cex.main=2)
text(0.14, 0.1, "<-Censoring time", cex = 1.5)
legend("topleft", c("Empirical", "Estimated"), col = c("blue","black"),
        pch=c(20,20), cex=1.5, bty="n")
## Residuals chart.
PLOT$plot.resid(main = "Plot: residual", xlab = "fitted", ylab = "residuals",
                 cex = 1.5, col = "blue", cex.lab = 1.7, cex.main = 2)

## End(Not run)

FCGR documentation built on May 2, 2019, 9:26 a.m.