Skip to content

Algorithm Library

meganlim edited this page Aug 3, 2018 · 10 revisions

Description

Model Based Prognosers utilize Observer and Predictor algorithms to perform Prognostics of the system.

Observers

Adding new Observers

To add new observers to the system do the following:

  1. Copy EmptyObserver.cpp and EmptyObserver.h from the templates directory and rename to the name of your observer
  2. Follow the instructions inside EmptyObserver.cpp to create your observer

Predictors

Adding new Predictors

To add new predictors to the system do the following:

  1. Copy EmptyPredictor.cpp and EmptyPredictor.h from the templates directory and rename to the name of your predictor
  2. Follow the instructions inside EmptyPredictor.cpp to create your predictor