CModel.MeanTime: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{DISPLAYTITLE:cModel.MeanTime}}
{{DISPLAYTITLE:cModel.MeanTime}}
{{Template:APIClass|CModel Class|CModel}}
{{Template:APIClass|CModel Class|cModel}}
Returns the mean time to failure.
{{Template:CModel.MeanTime.Cmt}}
 
== Syntax==
== Syntax==
<ul><li>MeanTime(
<ul><li>MeanTime(

Revision as of 23:47, 6 March 2014


Returns the mean time to failure.

Syntax

  • MeanTime( Optional CurrentAge As Double = 0 , Optional DutyCycle As Double = 1 )

Parameters

CurrentAge: The current age.
DutyCycle: The duty cycle.

Usage Example

Declare the cModel class using an in-line parameter list.

       Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "NewModel1", 1, 100)

Calculate the MeanTime for the model described in newModel.

       Dim ResultValue as Double
       ResultValue = newModel.MeanTime