CModel.Unreliability: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{DISPLAYTITLE:cModel.Unreliability}}
{{DISPLAYTITLE:cModel.Unreliability}}{{Template:API}}{{Template:APIBreadcrumb|9|.[[CModel Class|cModel]]}}
{{Template:APIClass|CModel Class|cModel}}  
{{Template:CModel.Unreliability.Cmt}}


== Syntax==
*Unreliability( Time {{APIPrefix|As Double}} , {{APIPrefix|Optional}} CurrentAge {{APIPrefix|As Double}} = 0 , {{APIPrefix|Optional}} DutyCycle {{APIPrefix|As Double}} = 1.0) {{APIPrefix|As Double}}


Parameters
<onlyinclude>'''Double'''. Returns the probability of failure at the specified time.</onlyinclude>


:''Time'': The time value at which the probability of failure is calculate.
== Syntax ==


:''CurrentAge'': The current age.
'''.Unreliability'''( ''Time'', ''StartAge'', ''DutyCycle'')


:''DutyCycle'': The duty cycle.
===Parameters===
 
''Time''
:Double. The time at which to calculate the reliability. (Required)
 
''StartAge''
:Double. The starting age. Default value = 0. (Optional)
 
''DutyCycle''
:Double. The duty cycle. Default value = 1.0. (Optional)
 
 
== 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|...}}
   
   
== Usage Example ==
  {{APIComment|Calculate the model's probability of failure at time &#61; 100.}}
  {{APIComment|'Declare the cModel class using an in-line parameter list.}}
   {{APIPrefix|Dim}} ResultValue {{APIPrefix|As Double}}
  Dim newModel As New cModel(ModelTypeEnum.Weibull2,
   ResultValue = AModel.Unreliability(100)
    ModelCategoryEnum.Reliability, "NewModel1", 1, 100)
 
{{APIComment|'Calculate the unreliability at time &#61; 100 for the model described in newModel.}}
   Dim ResultValue as Double
   ResultValue = newModel.Unreliability(100)

Revision as of 23:02, 28 July 2015

APIWiki.png


Member of: SynthesisAPI9.cModel


Double. Returns the probability of failure at the specified time.

Syntax

.Unreliability( Time, StartAge, DutyCycle)

Parameters

Time

Double. The time at which to calculate the reliability. (Required)

StartAge

Double. The starting 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 probability of failure at time = 100. 
 Dim ResultValue As Double
 ResultValue = AModel.Unreliability(100)