ALTADataSet.AddFailure

From ReliaWiki
Revision as of 00:12, 12 September 2013 by Albert Szeto (talk | contribs)
Jump to navigation Jump to search



Inserts a failure point to the WeibullDataSet.

Method Syntax

AddFailure( ByVal Value As Double , ByVal NumberInGroup As Integer , ByRef Stress() As Object )
Adds a failure data point to the collection of data points in the data set. AddFailure( ByVal Value As Double , ByVal NumberInGroup As Integer , ByRef Stress1 As Object )
Adds a failure data point to the collection of data points in the data set. AddFailure( ByVal Value As Double , ByVal NumberInGroup As Integer , ByRef Stress1, Stress2 As Object )
Adds a failure data point to the collection of data points in the data set.

Parameters

Value The failure point in time.

NumberInGroup The number of units that failed at the Value time.

Adds a failure data point to the collection of data points in the data set.

Usage Example

Declare the ALTADataSet. See New ALTADataSet for additional details.

       Dim ALTADS as New ALTADataSet

Add values to the raw data.

       ALTADS.AddFailure(1, 1)
       ALTADS.AddFailure(2, 1)
       ALTADS.AddFailure(3, 1)

Get the number of failures. In this example, NumberOfFailures will be 3.

       Dim NumberOfFailures as Integer
       NumberOfFailures = WeibullDataSet.FailureCount