Path: Math/FDIR
% Algorithm to compute detection filter gains. Create a detection filter for a fully measured system. The filter is of the form: y[k] = c*x[k] x[k+1] = a*x[k] + D*(y[k] - c*x[k]) + b*u[k] Since version 9. -------------------------------------------------------------------------- Form: d = DetectionFilterBuild( g, lambda ) -------------------------------------------------------------------------- ------ Inputs ------ g (:) State space system lambda (1,1) Inverse time constant ------- Outputs ------- d (:) Detection filter .g plant .d gain matrix .t transformation matrix -------------------------------------------------------------------------- References: Meserole, J. S., "Detection Filters for Fault-Tolerant Control of Turbofan Engines." MIT 1981. --------------------------------------------------------------------------
Math: FDIR/TMatrix
Back to the Math Module page