CModel.MeanTime: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 22: Line 22:


== Usage Example ==
== Usage Example ==
{{APIComment|Declare the cModel class using an in-line parameter list.}}
{{APIComment|'Declare the cModel class using an in-line parameter list.}}
        Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "NewModel1", 1, 100)
  Dim newModel As New cModel(ModelTypeEnum.Weibull2,  
 
    ModelCategoryEnum.Reliability, "NewModel1", 1, 100)
{{APIComment|Calculate the MeanTime for the model described in newModel.}}
 
        Dim ResultValue as Double
{{APIComment|'Calculate the mean time to failure.}}
        ResultValue = newModel.MeanTime
  Dim ResultValue as Double
  ResultValue = newModel.MeanTime

Revision as of 17:14, 6 May 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 mean time to failure. 
 Dim ResultValue as Double
 ResultValue = newModel.MeanTime