Skip to main content

HEC-HMS automation library for hydrologic modeling - Python API for project management, simulation execution, and results analysis

Project description

hms-commander

An open-source project of CLB Engineering Corporation
LLM-Forward Engineering Solutions


PyPI version Documentation Status Python 3.10+ License: MIT

📖 Full Documentation | CLB Engineering

Beta Software - Engineering Oversight Required

This library is in active development and should be used with caution. Many workflows have only been tested with HEC-HMS example projects, not production watersheds.

Real-world hydrologic modeling requires professional engineering judgment. Every watershed has unique characteristics and nuances that automated workflows cannot fully capture. AI agent workflows are tools to assist engineers, not replace them.

Human-in-the-Loop is essential. Licensed Professional Engineers must pilot these systems, guide their application, and verify all outputs before use in engineering decisions. Always validate results against established engineering practices and local knowledge.

Why HMS Commander?

HMS→RAS linked models are an industry standard for watershed-to-river hydraulic analysis, yet there is no straightforward way to automate the linkage between HEC-HMS (hydrology) and HEC-RAS (hydraulics).

This library exists to bridge that gap—extending the ras-commander effort for HEC-RAS automation to include HEC-HMS workflows. While HEC-HMS provides robust internal functionality for standalone hydrologic models, the real power emerges when HMS hydrographs flow into RAS hydraulic models for flood inundation mapping, bridge analysis, and infrastructure design.

HMS Commander enables:

  • Automated HMS simulation execution and results extraction
  • DSS file operations for seamless HMS→RAS boundary condition transfer
  • Consistent API patterns across both HMS and RAS automation
  • LLM-assisted workflows for complex multi-model scenarios

LLM Forward Hydrologic Modeling Automation

A Python library for automating HEC-HMS operations, built using CLB Engineering's LLM Forward Approach. Within two years, CLB Engineering built the most robust and feature-complete HEC-RAS and HEC-HMS automation solution on the open internet using LLM Forward approaches -- proving that licensed professional engineers working alongside Large Language Models can create extraordinary value in compressed timeframes.

LLM Forward Approach

CLB Engineering Corporation

This library was developed using the LLM Forward approach -- a framework pioneered by CLB Engineering Corporation for responsible adoption of Large Language Models in professional engineering practice. LLM Forward places professional responsibility first while positioning LLMs forward to accelerate insight and automation.

Core Tenets:

  • Professional Responsibility First -- Public safety, ethics, and licensure remain paramount
  • LLMs Forward (Not First) -- Technology accelerates engineering insight without replacing professional judgment
  • Multi-Level Verifiability -- HEC-HMS GUI review + visual outputs + code audit trails
  • Human-in-the-Loop -- Licensed professionals in responsible charge at all times

See the CLB Engineering LLM Forward Approach for full philosophy and best practices.

⚠️ Breaking Changes in v0.2.0

Precipitation hyetograph methods now return DataFrame instead of ndarray

If upgrading from v0.1.x, note that Atlas14Storm, FrequencyStorm, and ScsTypeStorm now return pd.DataFrame with columns ['hour', 'incremental_depth', 'cumulative_depth'] instead of np.ndarray.

Quick Migration:

# OLD (v0.1.x)
hyeto = Atlas14Storm.generate_hyetograph(total_depth_inches=17.0, ...)
total = hyeto.sum()
peak = hyeto.max()

# NEW (v0.2.0+)
hyeto = Atlas14Storm.generate_hyetograph(total_depth_inches=17.0, ...)
total = hyeto['cumulative_depth'].iloc[-1]
peak = hyeto['incremental_depth'].max()

Why this change? Standardizes API for HMS→RAS integration and includes time axis.

See CHANGELOG.md for complete migration guide.

Features

  • Project Management: Initialize and manage HEC-HMS projects with DataFrames
  • File Operations: Read and modify basin, met, control, and gage files
  • Simulation Execution: Run HEC-HMS via Jython scripts (single, batch, parallel)
  • Results Analysis: Extract peak flows, volumes, hydrograph statistics
  • DSS Integration: Read/write DSS files (via ras-commander)
  • GIS Extraction: Export model elements to GeoJSON
  • Clone Operations: Non-destructive model cloning for QAQC workflows

Current TauDEM/HMS Status

The repo now includes a full Spring Creek benchmark path for:

  • gauge-first study packaging and report/data-gap regeneration
  • direct TauDEM preprocessing and delineation manifests
  • watershed verification and boundary handoff selection
  • TauDEM-to-HMS basin/scaffold assembly with SQLite geometry
  • clone-first HEC-HMS parser-of-record round-trip validation
  • Atlas 14 storm bootstrap and a live compute demonstration

That workflow is now import-valid and compute-valid, but it is not yet production-ready. The first live HMS run still surfaces residual modeling warnings that must be handled deliberately: missing ET/canopy methods, Muskingum stability warnings, lag-vs-time-step warnings, and negative inflow clipping. The current roadmap therefore adds three gating items before generated HMS projects should be promoted as defensible engineering setups:

  • a machine-readable pre-HMS readiness gate
  • TauDEM parameter sensitivity / optimization support for delineation controls
  • a human-review QAQC bundle and explicit signoff workflow

Installation

From PyPI (Recommended)

# Create conda environment (recommended)
conda create -n hms python=3.11
conda activate hms

# Install hms-commander
pip install hms-commander

# Verify installation
python -c "import hms_commander; print(hms_commander.__version__)"

Optional Dependencies

# DSS file support (requires Java 8+)
pip install hms-commander[dss]

# GIS features (geopandas, shapely)
pip install hms-commander[gis]

# All optional features
pip install hms-commander[all]

From Source (Development)

# Clone repository
git clone https://github.com/gpt-cmdr/hms-commander.git
cd hms-commander

# Create development environment
conda create -n hmscmdr_local python=3.11
conda activate hmscmdr_local

# Install in editable mode with all dependencies
pip install -e ".[all]"

# Verify using local copy
python -c "import hms_commander; print(hms_commander.__file__)"
# Should show: /path/to/hms-commander/hms_commander/__init__.py

Quick Start

from hms_commander import (
    init_hms_project, hms,
    HmsBasin, HmsControl, HmsCmdr, HmsResults
)

# Initialize project
init_hms_project(
    r"C:/HMS_Projects/MyProject",
    hms_exe_path=r"C:/HEC/HEC-HMS/4.9/hec-hms.cmd"
)

# View project data
print(hms.basin_df)
print(hms.run_df)

# Run simulation
success = HmsCmdr.compute_run("Run 1")

# Extract results
peaks = HmsResults.get_peak_flows("results.dss")
print(peaks)

Example Notebooks

Comprehensive Jupyter notebooks demonstrating workflows:

Notebook Description
01_multi_version_execution.ipynb Execute across multiple HMS versions
02_run_all_hms413_projects.ipynb Batch processing of example projects
03_project_dataframes.ipynb Explore project DataFrames and component structure
04_hms_workflow.ipynb Complete HMS workflow from init to results
05_run_management.ipynb Comprehensive run configuration guide
clone_workflow.ipynb Non-destructive QAQC with model cloning

Run Configuration Management (Phase 1):

from hms_commander import HmsRun

# Modify run parameters with validation
HmsRun.set_description("Run 1", "Updated scenario", hms_object=hms)
HmsRun.set_basin("Run 1", "Basin_Model", hms_object=hms)  # Validates component exists!
HmsRun.set_dss_file("Run 1", "output.dss", hms_object=hms)

# Prevents HMS from auto-deleting runs with invalid component references

See 05_run_management.ipynb for complete examples.

Library Structure

Class Purpose
HmsPrj Project manager (stateful singleton)
HmsBasin Basin model operations (.basin)
HmsControl Control specifications (.control)
HmsMet Meteorologic models (.met)
HmsGage Time-series gages (.gage)
HmsRun Run configuration management (.run) NEW Phase 1
HmsCmdr Simulation execution engine
HmsJython Jython script generation
HmsDss DSS file operations
HmsResults Results extraction & analysis
HmsGeo GIS data extraction
HmsUtils Utility functions

Key Methods

Project Management

init_hms_project(path, hms_exe_path)  # Initialize project
hms.basin_df                           # Basin models DataFrame
hms.run_df                             # Simulation runs DataFrame

Basin Operations

HmsBasin.get_subbasins(basin_path)                    # Get all subbasins
HmsBasin.get_loss_parameters(basin_path, subbasin)    # Get loss params
HmsBasin.set_loss_parameters(basin_path, subbasin, curve_number=80)

Run Configuration (NEW Phase 1)

HmsRun.set_description("Run 1", "Updated scenario", hms_object=hms)
HmsRun.set_basin("Run 1", "Basin_Model", hms_object=hms)  # Validates!
HmsRun.set_precip("Run 1", "Met_Model", hms_object=hms)   # Validates!
HmsRun.set_control("Run 1", "Control_Spec", hms_object=hms)  # Validates!
HmsRun.set_dss_file("Run 1", "output.dss", hms_object=hms)

Simulation Execution

HmsCmdr.compute_run("Run 1")                          # Single run
HmsCmdr.compute_parallel(["Run 1", "Run 2"], max_workers=2)  # Parallel
HmsCmdr.compute_batch(["Run 1", "Run 2", "Run 3"])    # Sequential

Results Analysis

HmsResults.get_peak_flows("results.dss")              # Peak flow summary
HmsResults.get_volume_summary("results.dss")          # Runoff volumes
HmsResults.get_hydrograph_statistics("results.dss", "Outlet")
HmsResults.compare_runs(["run1.dss", "run2.dss"], "Outlet")

DSS Operations

HmsDss.get_catalog("results.dss")                     # List all paths
HmsDss.read_timeseries("results.dss", pathname)       # Read time series
HmsDss.extract_hms_results("results.dss", result_type="flow")

Requirements

  • Python 3.10+
  • pandas, numpy, tqdm, requests

Optional

  • DSS: ras-commander, pyjnius (Java 8+)
  • GIS: geopandas, pyproj, shapely

Related Projects

Partner with CLB Engineering

For Agencies & Government Organizations: Looking to modernize your HEC-HMS workflows? CLB Engineering Corporation created hms-commander and pioneered LLM Forward engineering. As early LLM pioneers in civil engineering, CLB delivers extraordinary value in compressed timeframes. Contact CLB to bring this expertise to your organization's toughest H&H challenges.

For Engineering Firms: Need a technology partner for your next H&H proposal or joint venture? CLB Engineering brings unmatched HEC-HMS automation expertise. With the hms-commander and ras-commander libraries, CLB can dramatically accelerate model development, calibration, and QA/QC workflows. Partner with the engineers who wrote the automation.

Building on HMS Commander? If you are building products or workflows on top of hms-commander, please cite the library and provide a link to the GitHub repository. Acknowledgment of CLB Engineering Corporation as the library's creator is appreciated.

Author

William Katzenmeyer, P.E., C.F.M. - CLB Engineering Corporation

License

This software is released under the MIT license. HMS Commander is a free and open-source project of CLB Engineering Corporation.

Contact

For questions, suggestions, or support, please contact: William Katzenmeyer, P.E., C.F.M. - info@clbengineering.com CLB Engineering Corporation | LLM Forward Engineering

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

hms_commander-0.3.0.tar.gz (4.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hms_commander-0.3.0-py3-none-any.whl (283.9 kB view details)

Uploaded Python 3

File details

Details for the file hms_commander-0.3.0.tar.gz.

File metadata

  • Download URL: hms_commander-0.3.0.tar.gz
  • Upload date:
  • Size: 4.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for hms_commander-0.3.0.tar.gz
Algorithm Hash digest
SHA256 32d2b50f31dbf4c204801d2adc91d96a6996ac8a63eea3b0153b9818ffa4eebf
MD5 d2a4003468ace5730dab65f80ae43093
BLAKE2b-256 a2a1eecdaa1e63dbd81934d76d8cad2e3b91429e8c090da96562205d2514a2e1

See more details on using hashes here.

File details

Details for the file hms_commander-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: hms_commander-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 283.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for hms_commander-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7c18ad74283cbb0a2089b9d629032376b1353e7833c8aae27a27625ad6c59436
MD5 bb0591559856f15c127d56b0254d6efd
BLAKE2b-256 9cdbc4ccbc9eebfb50c791bdca614a9f2b17e6d976a429d3c28037ccbc501582

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page