rel {WeibullR.learnr} | R Documentation |
Reliability.
rel(outageTime, totalTime)
outageTime |
Forced Outage Time. A numeric value representing the forced outage time or a numeric vector of outage times. |
totalTime |
Total Time. A numeric value representing the total time for a given period or a numeric vector of time periods |
The function returns a numeric value representing the reliability for a given period.
outage <- 100
total <- 1000
rel(outage, total)