CModel.MeanTime: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{Template:APIClass|CModel Class|CModel}} == Declaration == {{APIPrefix|Public Function}} {{APIName|MeanTime(}} {{APIPrefix|Optional ByVal}} {{APIName|CurrentAge}} {{APIPref…')
 
mNo edit summary
 
(22 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:APIClass|CModel Class|CModel}}  
{{DISPLAYTITLE:cModel.MeanTime}}{{Template:API}}{{Template:APIBreadcrumb|.[[CModel Class|cModel]]}}




== Declaration  ==
<onlyinclude>Returns the mean time to failure. '''Double'''</onlyinclude>


{{APIPrefix|Public Function}}
== Syntax ==
{{APIName|MeanTime(}}
{{APIPrefix|Optional ByVal}}
{{APIName|CurrentAge}}
{{APIPrefix|As Double}}
=
{{APIName|0,}}
{{APIPrefix|Optional ByVal}}
{{APIName|DutyCycle}}
{{APIPrefix|As Double}}


{{APIComment|Returns the mean time.}}
'''.MeanTime'''(''CurrentAge'', ''DutyCycle'')
 
===Parameters===
 
''CurrentAge''
:Optional. Double. The current age. Default value = 0.
 
''DutyCycle''
:Optional. Double. The duty cycle. Default value = 1.
 
 
== Example ==
'''VBA|VB.NET'''
{{APIComment|...}}
{{APIComment|'Add code to get an existing model or create a new one.}}
  {{APIPrefix|Dim}} AModel {{APIPrefix|As New}} cModel
{{APIComment|...}}
{{APIComment|Calculate the model's mean time to failure.}}
  {{APIPrefix|Dim}} ResultValue {{APIPrefix|As Double}}
  ResultValue = AModel.MeanTime

Latest revision as of 21:20, 13 November 2015

APIWiki.png


Member of: SynthesisAPI.cModel


Returns the mean time to failure. Double

Syntax

.MeanTime(CurrentAge, DutyCycle)

Parameters

CurrentAge

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

DutyCycle

Optional. Double. The duty cycle. Default value = 1.


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