CModel.Bounds MeanTime: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 32: Line 32:
  {{APIComment|'Calculate the bounds on the model's mean time to failure.}}
  {{APIComment|'Calculate the bounds on the model's mean time to failure.}}
   {{APIPrefix|Dim}} ResultValue {{APIPrefix|As}} BoundsValues
   {{APIPrefix|Dim}} ResultValue {{APIPrefix|As}} BoundsValues
   {{APIPrefix|Set}} ResultValue = AModel.Bounds_MeanTime()
   {{APIPrefix|Set}} ResultValue = AModel.Bounds_MeanTime
   
   
  {{APIComment|'Output sample: Display the results for the upper and lower confidence bounds.}}
  {{APIComment|'Output sample: Display the results for the upper and lower confidence bounds.}}
Line 51: Line 51:
  {{APIComment|'Calculate the bounds on the model's mean time to failure.}}
  {{APIComment|'Calculate the bounds on the model's mean time to failure.}}
   {{APIPrefix|Dim}} ResultValue {{APIPrefix|As}} BoundsValues
   {{APIPrefix|Dim}} ResultValue {{APIPrefix|As}} BoundsValues
   ResultValue = AModel.Bounds_MeanTime()
   ResultValue = AModel.Bounds_MeanTime
   
   
  {{APIComment|'Output sample: Display the results for the upper and lower confidence bounds.}}
  {{APIComment|'Output sample: Display the results for the upper and lower confidence bounds.}}
   MsgBox ({{APIString|" Upper bound: "}} & ResultValue.Upper & {{APIString|", Lower bound: "}} & ResultValue.Lower)
   MsgBox ({{APIString|" Upper bound: "}} & ResultValue.Upper & {{APIString|", Lower bound: "}} & ResultValue.Lower)

Revision as of 17:35, 23 October 2015

APIWiki.png


Member of: SynthesisAPI9.cModel


Calculates the bounds on the mean time to failure. Returns a BoundsValues object array that contains the result(s).

You must first use the SetConfidenceLevel method to specify the confidence bound settings, and then use this method to perform the calculations.

Syntax

.Bounds_MeanTime( CurrentAge, DutyCycle) 

Parameters

CurrentAge

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

DutyCycle

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


Example

VBA

 ... 

 'Add code to get an existing model or create a new one. 
 Dim AModel As New cModel
 ... 
 
 'Set the confidence level to 90% two-sided bounds. 
 Dim ErrorMsg As String
 Call AModel.SetConfidenceLevel(0.9, ConfBoundsSides_TwoSidedBoth, False, ErrorMsg)

 'Calculate the bounds on the model's mean time to failure. 
 Dim ResultValue As BoundsValues
 Set ResultValue = AModel.Bounds_MeanTime

 'Output sample: Display the results for the upper and lower confidence bounds. 
 MsgBox (" Upper bound: " & ResultValue.Upper & ", Lower bound: " & ResultValue.Lower)
VB.NET

 ... 

 'Add code to get an existing model or create a new one. 
 Dim AModel As New cModel
 ... 
 
 'Set the confidence level to 90% two-sided bounds. 
 Dim ErrorMsg As String
 AModel.SetConfidenceLevel(0.9, ConfBoundsSides.TwoSidedBoth, False, ErrorMsg)

 'Calculate the bounds on the model's mean time to failure. 
 Dim ResultValue As BoundsValues
 ResultValue = AModel.Bounds_MeanTime

 'Output sample: Display the results for the upper and lower confidence bounds. 
 MsgBox (" Upper bound: " & ResultValue.Upper & ", Lower bound: " & ResultValue.Lower)