Community Edition: SDK for structural collapse detection in DAE systems (limited to 5 variables, rate-limited)
Project description
NAPIX Stability Engine
A professional SDK for detecting structural collapse in Differential-Algebraic Equation (DAE) systems before failure occurs.
Quick Start
from napix_stability import StabilityEngine, StabilityResult
engine = StabilityEngine(w1=0.4, w2=0.35, w3=0.25)
system = {
"equations": ["x1 - x2 + sin(t)", "x1 + x2 - cos(t)"],
"constraints": ["x1**2 + x2**2 - 1"],
"variables": ["x1", "x2"]
}
data = {"x1": 0.8, "x2": 0.6}
result = engine.analyze(system, data)
print(f"Risk Score: {result.risk_score:.1f}")
print(f"State: {result.state}")
print(f"Time to Failure: {result.time_to_failure} min")
Features
- Constraint Sensitivity Analysis — Detect Implicit Function Theorem breakdown
- Reduced Jacobian Spectral Radius — Identify eigenvalue blow-up
- Pencil Condition Number — Quantify algebraic loop ill-conditioning
- Unified Risk Score (0–100) — Single actionable metric
- State Classification — STABLE / PRE-COLLAPSE / IMMINENT_SHOCK
- Time-to-Failure Estimation — Trend-based extrapolation
Installation
pip install napix-stability
Optional GPU acceleration:
pip install napix-stability[gpu]
API Reference
StabilityEngine(w1=0.4, w2=0.35, w3=0.25)
| Parameter | Description |
|---|---|
w1 |
Weight for constraint sensitivity (default 0.4) |
w2 |
Weight for spectral radius (default 0.35) |
w3 |
Weight for pencil condition (default 0.25) |
engine.analyze(system_definition, live_data) → StabilityResult
StabilityResult fields:
| Field | Type | Description |
|---|---|---|
sigma_g |
float | Constraint sensitivity |
lambda_max |
float | Spectral radius of reduced Jacobian |
kappa_p |
float | Pencil condition number |
risk_score |
float | Unified collapse score (0–100) |
state |
str | Classification |
dominant_mode |
str | Driving instability mode |
time_to_failure |
float or None | Estimated minutes until collapse |
Use Cases
- Aviation — Detect flight control surface jamming via actuator DAE models
- Energy — Monitor power grid voltage collapse boundaries
- Finance — Identify systemic risk in coupled asset-liability models
- Healthcare — Predict hemodynamic decompensation in critical care
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
napix_stability-1.1.0.tar.gz
(6.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file napix_stability-1.1.0.tar.gz.
File metadata
- Download URL: napix_stability-1.1.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02ebd9a3f967051cfebcdbabb84e98d1ad7fc9acb6cce25327d505c7907fad77
|
|
| MD5 |
0c37335734320448d161ec5351a012b7
|
|
| BLAKE2b-256 |
07d03f8d2211beabcd7add82636bf2a591a01484125f27273c396293b97d6bba
|
File details
Details for the file napix_stability-1.1.0-py3-none-any.whl.
File metadata
- Download URL: napix_stability-1.1.0-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88e144757bdefa08c80e05a7172b22078b94252ef2d011a66d597732c58b2dc1
|
|
| MD5 |
13327dadfdc78f0b3c84093530f00f7a
|
|
| BLAKE2b-256 |
939a08b5b8e390accc77922b3244b03ddcdb5b938760e104d3f0d0706ce3c5ea
|