CModel.MeanTime: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:APIClass|CModel Class|CModel}}
{{DISPLAYTITLE:cModel.MeanTime}}{{Template:API}}{{Template:APIBreadcrumb|.[[CModel Class|cModel]]}}
Calculates mean time value.
== Method Syntax==
<ul><li>MeanTime(
{{APIPrefix|Optional ByVal}}
{{APIName|CurrentAge}}
{{APIPrefix|As Double}}
=
{{APIName|0,}}
{{APIPrefix|Optional ByVal}}
{{APIName|DutyCycle}}
{{APIPrefix|As Double}})
{{APIPrefix|As Double}}</li></ul>


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


== Usage Example ==
<onlyinclude>Returns the mean time to failure. '''Double'''</onlyinclude>
{{APIComment|Declare the cModel class using an in-line parameter list.}}
        Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "NewModel1", 1, 100)


{{APIComment|Calculate the MeanTime for the model described in newModel.}}
== Syntax ==
        Dim ResultValue as Double
 
        ResultValue = newModel.MeanTime
'''.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