CModel.MeanTime: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|CModel Class|CModel}}
{{Template:APIClass|CModel Class|CModel}}
Calculates mean time value.
Returns the mean time to failure.
== Method Syntax==
== Syntax==
<ul><li>MeanTime(
<ul><li>MeanTime(
{{APIPrefix|Optional ByVal}}
{{APIPrefix|Optional}}
{{APIName|CurrentAge}}
{{APIName|CurrentAge}}
{{APIPrefix|As Double}}
{{APIPrefix|As Double}}
=
=
{{APIName|0,}}
{{APIName|0 ,}}
{{APIPrefix|Optional ByVal}}
{{APIPrefix|Optional}}
{{APIName|DutyCycle}}
{{APIName|DutyCycle}}
{{APIPrefix|As Double}})
{{APIPrefix|As Double}}
{{APIPrefix|As Double}}</li></ul>
=
{{APIName|1}})
</li></ul>


Parameters
Parameters

Revision as of 21:42, 21 February 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