ALTADataSet Class: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 11: | Line 11: | ||
<br> | <br> | ||
=== Properties === | === Properties === | ||
*'''[[DatasetName]]''' {{APIComment|Gets or set the name of the data set.}} | *'''[[ALTADataSet.DatasetName]]''' {{APIComment|Gets or set the name of the data set.}} | ||
*'''[[GeneralSettings]]''' {{APIComment|General settings used when fitting the model or finding the best fit.}} | *'''[[ALTADataSet.GeneralSettings]]''' {{APIComment|General settings used when fitting the model or finding the best fit.}} | ||
*'''[[AnalysisSettings]]''' {{APIComment|Settings used when fitting the model.}} | *'''[[ALTADataSet.AnalysisSettings]]''' {{APIComment|Settings used when fitting the model.}} | ||
*'''[[FittedModel]]''' {{APIComment|Model, fitted from the raw data. See cModel class for the list of its methods below.}} | *'''[[ALTADataSet.FittedModel]]''' {{APIComment|Model, fitted from the raw data. See cModel class for the list of its methods below.}} | ||
*'''[[FailureCount]]''' {{APIComment|Total number of failures in the data set.}} | *'''[[ALTADataSet.FailureCount]]''' {{APIComment|Total number of failures in the data set.}} | ||
*'''[[SuspensionCount]]''' {{APIComment|Total number of suspensions in the data set.}} | *'''[[ALTADataSet.SuspensionCount]]''' {{APIComment|Total number of suspensions in the data set.}} | ||
*'''[[NumStresses]]''' {{APIComment|Returns the number of stresses in the data set.}} | *'''[[ALTADataSet.NumStresses]]''' {{APIComment|Returns the number of stresses in the data set.}} | ||
*'''[[StressRelation]]''' {{APIComment|Returns the number of stresses in the data set.}} | *'''[[ALTADataSet.StressRelation]]''' {{APIComment|Returns the number of stresses in the data set.}} | ||
*'''[[UseStress]]''' {{APIComment|Gets or sets use stress value for a particular stress. This value is used in subsequent calculations and plots.}} | *'''[[ALTADataSet.UseStress]]''' {{APIComment|Gets or sets use stress value for a particular stress. This value is used in subsequent calculations and plots.}} | ||
Revision as of 21:08, 11 September 2013
Instantiate this class to be able to fit an ALTA model from your raw data.
Constructors
- New ALTADataSet Creates a new class that can be used to fit a model from ALTA raw data.
Properties
- ALTADataSet.DatasetName Gets or set the name of the data set.
- ALTADataSet.GeneralSettings General settings used when fitting the model or finding the best fit.
- ALTADataSet.AnalysisSettings Settings used when fitting the model.
- ALTADataSet.FittedModel Model, fitted from the raw data. See cModel class for the list of its methods below.
- ALTADataSet.FailureCount Total number of failures in the data set.
- ALTADataSet.SuspensionCount Total number of suspensions in the data set.
- ALTADataSet.NumStresses Returns the number of stresses in the data set.
- ALTADataSet.StressRelation Returns the number of stresses in the data set.
- ALTADataSet.UseStress Gets or sets use stress value for a particular stress. This value is used in subsequent calculations and plots.
Events
- WeibullEvents Reference to a class that contains overridable methods for handling ALTA solver events.
- New ALTAEvents Reference to a class that contains overridable methods for handling ALTA solver events
Methods
- ClearDataSet Clears all data and fitted model. All analysis settings stay unchanged.
- AddStressDefinition Adds a stress definition (column). The number of stresses in subsequent calls to AddFailure, AddSuspension etc. must be equal to the number of stress definitions in the data set.
- NumStresses Returns the number of stresses in the data set.
- StressRelation Sets or returns life-stress relationship for a particular stress.
- UseStress Sets or returns use stress value for a particular stress. This value is used in subsequent calculations and plots.
- AddStressProfile Adds a stress profile to the data set. It then can be used as a stress for Cumulative Damage model.
- AddFailure Stress() Adds a failure data point to the collection of data points in the data set.
- AddFailure Stress1 Adds a failure data point to the collection of data points in the data set.
- AddFailure Stress1,Stress2 Adds a failure data point to the collection of data points in the data set.
- AddSuspension Stress() Adds a suspension data point to the collection of data points in the data set.
- AddSuspension Stress1 Adds a suspension data point to the collection of data points in the data set.
- AddSuspension Stress1,Stress2 Adds a suspension data point to the collection of data points in the data set.
- AddFailureInterval Stress () Adds a failure interval data point to the collection of data points in the data set.
- AddFailureInterval Stress1 Adds a failure interval data point to the collection of data points in the data set.
- AddFailureInterval Stress1,Stress2 Adds a failure interval data point to the collection of data points in the data set.
- AddSuspensionInterval Stress() Adds a suspension interval data point to the collection of data points in the data set.
- AddSuspensionInterval Stress1 Adds a suspension interval data point to the collection of data points in the data set.
- AddSuspensionInterval Stress1,Stress2 Adds a suspension interval data point to the collection of data points in the data set.
- Calculate Fits a model from the raw data previously entered in the data set. Sets FittedModel property if successful. Clears it (sets to Nothing) in case of an error.