CModel.Pdf: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 12: Line 12:


== Usage Example ==
== Usage Example ==
{{APIComment|Declare the cModel class using an in-line parameter list.}}
{{APIComment|'Declare the cModel class using an in-line parameter list.}}
        Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "NewModel1", 1, 100)
  Dim newModel As New cModel(ModelTypeEnum.Weibull2,  
 
    ModelCategoryEnum.Reliability, "NewModel1", 1, 100)
{{APIComment|Calculate the PDF at time 100 for the model described in newModel.}}
 
        Dim ResultValue as Double
{{APIComment|'Calculate the pdf at time = 100.}}
        ResultValue = newModel.Pdf(100)
  Dim ResultValue as Double
  ResultValue = newModel.Pdf(100)

Revision as of 17:15, 6 May 2014


Returns the y-value from the pdf at the specified x-value (time).

Syntax

  • Pdf ( Time As Double , Optional CurrentAge As Double = 0 , Optional DutyCycle As Double = 1 ) As Double

Parameters

Time: The x-value (time) to calculate the y-value from the pdf.
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 pdf at time = 100. 
 Dim ResultValue as Double
 ResultValue = newModel.Pdf(100)