CModel.MeanTime: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 26: Line 26:
  {{APIComment|...}}
  {{APIComment|...}}
   
   
  {{APIComment|Calculate the time when the model's reliability will be 95%.}}
  {{APIComment|Calculate the model's mean time to failure.}}
   {{APIPrefix|Dim}} ResultValue {{APIPrefix|As Double}}
   {{APIPrefix|Dim}} ResultValue {{APIPrefix|As Double}}
   ResultValue = AModel.MeanTime()
   ResultValue = AModel.MeanTime()

Revision as of 23:38, 28 July 2015

APIWiki.png


Member of: SynthesisAPI9.cModel


Double. Returns the mean time to failure.

Syntax

.MeanTime(CurrentAge, DutyCycle)

Parameters

CurrentAge

Double. The current age. Default value = 0. (Optional)

DutyCycle

Double. The duty cycle. Default value = 1.0. (Optional)


Example

VBA|VB.NET

 ... 

 'Add code to get an existing model or create a new one. 
 Dim AModel As New cModel
 ... 

 Calculate the model's mean time to failure. 
 Dim ResultValue As Double
 ResultValue = AModel.MeanTime()