CModel.Bounds Unreliability: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 11: | Line 11: | ||
===Parameters=== | ===Parameters=== | ||
''Time'' | ''Time'' | ||
:Double. The time at which to calculate the probability of failure. | :Required. Double. The time at which to calculate the probability of failure. | ||
''StartAge'' | ''StartAge'' | ||
:Double. The start age. Default value = 0. | :Optional. Double. The start age. Default value = 0. | ||
''DutyCycle'' | ''DutyCycle'' | ||
:Double. The duty cycle. Default value = 1. | :Optional. Double. The duty cycle. Default value = 1. | ||
Revision as of 17:48, 31 August 2015
Member of: SynthesisAPI9.cModel
Calculates the bounds on the probability of failure at the specified time. 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_Unreliability( Time, StartAge, DutyCycle)
Parameters
Time
- Required. Double. The time at which to calculate the probability of failure.
StartAge
- Optional. Double. The start 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 probability of failure at time = 100. Dim ResultValue As BoundsValues Set ResultValue = AModel.Bounds_Unreliability(100) '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 probability of failure at time = 100. Dim ResultValue As BoundsValues ResultValue = AModel.Bounds_Unreliability(100) 'Output sample: Display the results for the upper and lower confidence bounds. MsgBox (" Upper bound: " & ResultValue.Upper & ", Lower bound: " & ResultValue.Lower)