-
Notifications
You must be signed in to change notification settings - Fork 57
PrognosticsModel
Matthew Daigle edited this page Feb 6, 2017
·
2 revisions
Class for defining a model for prognostics
The PrognosticsModel class is a wrapper around a mathematical model of a system as represented by a state, output, input, and threshold equations. It is a subclass of the Model class, with the addition of a threshold equation, which defines when some condition, such as end-of-life, has been reached.
- thresholdEqn - equation evaluating whether some region of the state space has been reached.
- simulateToThreshold - function to simulate the model up to the point where there threshold evaulates to true
See also Model.