dsfb-turbine 0.1.0

DSFB Structural Semiotics Engine for Gas Turbine Jet Engine Health Monitoring. A deterministic, read-only, observer-only augmentation layer for typed residual interpretation over existing Engine Health Monitoring (EHM), Gas Path Analysis (GPA), and Prognostics and Health Management (PHM) systems. The core engine is no_std + no_alloc. Unsafe code is forbidden in the library. Dataset loading, fleet evaluation, reporting, and executable examples are std-gated.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Full DSFB evaluation pipeline.
//!
//! This module is std-gated and alloc-using. It is not part of the
//! crate's embedded `no_std` / `no_alloc` core surface.
pub mod engine_eval;
pub mod metrics;
pub mod fleet;
pub mod sweep;
pub mod negative_control;
pub mod trace_chain;
pub mod discrimination;
pub mod regime_eval;