DAMS-SLIP Documentation

Technical Documentation Β· API Reference Β· AI-Augmented Framework for Earth-Fill Dam Safety

98.2%
Mean SCI
1.45
Min F_s
25.9h
AI Lead Time
1.0
Version
3+3
Constructs + AI

πŸ“– Overview

"Structural integrity is not negotiated with gravity β€” it is enforced through geometry, physics, and constraint design."

DAMS-SLIP (Dynamic AI-Augmented Monitoring System for Seepage, Limit-state Integrity, and Piping) is a fully coupled, AI-augmented continuum mechanics framework that treats structural integrity as a continuously governed dynamic invariant β€” not a static design property frozen at commissioning.

Contemporary earth-fill dam safety relies on static safety factors that cannot capture the progressive, spatially distributed, dynamically coupled nature of internal erosion and slope instability. DAMS-SLIP provides a principled three-construct governance pipeline that classifies any dam state in real time using AI-augmented predictions.

πŸ—οΈ 3-Construct + 3 AI Architecture

Construct 01 β€” SMEC (Seepage Mechanics and Continuity Engine)

Solves transient seepage in anisotropic, heterogeneous permeability field K(x,y,z) at N_mesh = 10⁢ elements. Tracks phreatic surface and monitors hydraulic gradient field in real time.

Modified Richards Equation
βˆ‚ΞΈ/βˆ‚t = βˆ‡Β·[K(ψ)Β·βˆ‡(ψ + z)] + S(x,t)
SCI = |{x ∈ Ξ© : i_cr - i(x) β‰₯ 0}| / |Ξ©| Γ— 100%

Construct 02 β€” GSSE (Geotechnical Slip Stability Evaluator)

Morgenstern-Price equilibrium solver over 10⁴ candidate surfaces + Sum-of-Squares polynomial global optimizer for certified F_s lower bound. Satisfies both force and moment equilibrium.

Morgenstern-Price + SOS
F_s* = min_{surface∈A} F_s(surface)
F_s,LB β‰₯ 1.45 (SOS-certified lower bound)

Construct 03 β€” HGCL (Hydraulic Gradient Consistency Lock)

Real-time exit gradient enforcement at downstream boundary. Activates Level 1 drainage, Level 2 drawdown recommendation, or Level 3 critical alert based on safety thresholds.

Exit Gradient Constraint
i_exit(x,t) ≀ i_cr(x) βˆ€ x ∈ βˆ‚Ξ©_downstream
i_cr = (G_s - 1) / (1 + e) β‰ˆ 1.03

AI Module 01 β€” CNN Gradient Detector

Convolutional neural network trained on 847 simulations + 23 historical piping incidents. Classifies gradient field into {normal, elevated, critical} at each time step.

CNN Architecture
Input: βˆ‡h(x,y,t) 128Γ—128 spatial grid
Output: P ∈ {0, 1, 2} · AUC = 0.97 · Precision = 0.94 · Recall = 0.91

AI Module 02 β€” PINN Pore Pressure Forecaster

Physics-Informed Neural Network embedding Biot consolidation equation as training constraint. Forecasts full spatial pore pressure field at T+6/12/24/48 hours.

PINN Loss Function
L = Ξ»_dataΒ·L_data + Ξ»_physΒ·L_phys
Ξ»_data=0.7, Ξ»_phys=0.3, 24h MAE = 1.67 kPa

AI Module 03 β€” XGBoost Stability Ensemble

500-tree gradient boosting ensemble providing 24-hour F_s forecast with calibrated uncertainty. Reduces SOS solver computation time by 67%.

XGBoost Features
47-dim: PINN pore pressure percentiles, reservoir rate, current F_s, 12 principal components
F_s(T+24h) = ΞΌ Β± Οƒ Β· MAE = 0.024 Β· FAR = 3.8%

πŸ“ Core Equations

Eq. 1 β€” Critical Hydraulic Gradient
i_cr = (G_s - 1) / (1 + e)
G_s β‰ˆ 2.65, e β‰ˆ 0.60 β†’ i_cr β‰ˆ 1.03
Eq. 2 β€” Anisotropic Seepage PDE
βˆ‚/βˆ‚x[K_x βˆ‚h/βˆ‚x] + βˆ‚/βˆ‚y[K_y βˆ‚h/βˆ‚y] + βˆ‚/βˆ‚z[K_z βˆ‚h/βˆ‚z] = m_v βˆ‚h/βˆ‚t
Laplace equation modified for permeability tensor anisotropy
Eq. 3 β€” Effective Stress
Οƒ' = Οƒ - u
Terzaghi effective stress principle (1943)
Eq. 4 β€” Factor of Safety
F_s = Ξ£[c'Β·l + (WΒ·cos Ξ± - uΒ·l)Β·tan Ο†'] / Ξ£[WΒ·sin Ξ±]
Morgenstern-Price limit equilibrium
Eq. 5 β€” Seepage Containment Index
SCI = |{x ∈ Ξ© : i_cr - i(x) β‰₯ 0}| / |Ξ©| Γ— 100%
Target β‰₯ 98.0%
Eq. 6 β€” Darcy Velocity Constraint
v_D = kΒ·i ≀ v_cr = kΒ·i_cr
Critical piping prevention constraint

βš™οΈ HGCL Governance Protocol

SignalConditionActionHGCL Level
🟒 STABILITY CERTIFIEDF_s β‰₯ 1.45 Β· SCI β‰₯ 98%Maintenance mode β€” all constraints satisfiedNone
🟠 MONITORING PHASESCI < 98% Β· F_s β‰₯ 1.45Drainage activation β€” monitor at 15 min intervalsLevel 1
🟠 MONITORING PHASEF_s < 1.45 Β· SCI β‰₯ 96%Reservoir drawdown recommendation β€” alert engineerLevel 2
πŸ”΄ CRITICAL ALERTF_s < 1.45 Β· SCI < 96%Emergency protocol β€” immediate action requiredLevel 3

πŸ“¦ Installation

bash β€” pip install
pip install dams-slip-engine

# From source
git clone https://github.com/gitdeeper12/DAMS-SLIP.git
cd DAMS-SLIP
pip install -e .

# Quick test
python -c "from dams_slip import DAMSGovernor; print('DAMS-SLIP ready')"

πŸ”§ API Reference

python β€” main interface
from dams_slip import DAMSGovernor

# Initialize with dam configuration
governor = DAMSGovernor(
    dam_config="configs/zoned_embankment.yaml",
    reservoir_head=42.0,
    sensor_stream="live"
)

# Run full DAMS-SLIP pipeline
result = governor.evaluate()

print(result.signal)              # "STABILITY_CERTIFIED" | "MONITORING" | "CRITICAL_ALERT"
print(result.factor_of_safety)    # float β€” global min F_s (SOS certified)
print(result.sci)                 # Seepage Containment Index (%)
print(result.ai_lead_time_hours)  # Hours of warning before threshold breach
print(result.hgcl_action)         # "none" | "level_1" | "level_2" | "level_3"

DAMSGovernor Parameters

ParameterDescriptionDefaultDomain
dam_configPath to dam configuration YAML fileβ€”string
reservoir_headCurrent reservoir water level (m)42.00–100 m
sensor_streamSensor source ("live" or file path)"live"string
ai_modulesDictionary of AI module instancesNonedict

πŸ“Š Validation Summary

ScenarioSCIF_sAI Lead Time
S1 β€” Homogeneous Dam97.4%1.5828.4 h
S2 β€” Zoned Embankment99.1%1.7434.1 h
S3 β€” Rapid Drawdown96.8%1.4818.3 h
S4 β€” Seismic Coupling98.2%1.5122.7 h
MEAN98.2%1.5725.9 h

πŸ‘€ Author

🏭
Samir Baladi
Principal Investigator β€” AI-Augmented Structural Safety
Samir Baladi is an interdisciplinary researcher at the intersection of computational physics, biomedical AI, and engineering systems safety. Affiliated with the Ronin Institute and the Rite of Renaissance research program, his work spans three converging themes: the governance of dissipative AI systems (ENTRO-DASA), causal discrimination in data-driven models (COREX), and AI-augmented enforcement of structural safety constraints (DAMS-SLIP, OSEF).
DAMS-SLIP is the first project in the GEOTECH-AI series, applying the same cybernetic safety principles from aviation and aerospace to geotechnical engineering.

πŸ“ Citation

@software{baladi2026damsslip, author = {Samir Baladi}, title = {DAMS-SLIP: Dynamic AI-Augmented Monitoring System for Seepage, Limit-state Integrity, and Piping}, year = {2026}, version = {1.0.0}, publisher = {Zenodo}, doi = {10.5281/zenodo.20370291}, url = {https://doi.org/10.5281/zenodo.20370291}, note = {GEOTECH-AI-01, Systems Safety \& Engineering (AI-augmented)} }

"Structural integrity is not negotiated with gravity β€” it is enforced through geometry, physics, and AI-governed constraint design." β€” DAMS-SLIP v1.0.0