Skip to main content

Layer-based 2D triangular, quadrilateral and mixed-element mesh library with first-class ADCIRC fort.14 I/O

Reason this release was yanked:

Relicensed under PolyForm Noncommercial 1.0.0; install the latest version.

Project description

CHILmesh

Fast 2D mesh processing, smoothing, and analysis for triangular, quadrilateral, and mixed-element meshes.

Dominik Mattioli1†, Ethan Kubatko2
Corresponding author | 1Penn State University | 2Ohio State University (CHIL)

CHIL Lab @ OSU ADMESH PyPI Tests DOI License

Note for MATLAB users: This Python implementation is the actively-developed successor to the original MATLAB codebase. It is still in development and the API may evolve. The original MATLAB code (no longer maintained) remains available for reference at src/@CHILmesh/CHILmesh.m.


Table of Contents


Quick Start

pip install chilmesh
import chilmesh
import matplotlib.pyplot as plt

mesh = chilmesh.examples.annulus()
mesh.smooth_mesh(method='fem', acknowledge_change=True)

quality, angles, stats = mesh.elem_quality()
mesh.plot_quality()
plt.show()

See examples/ for more runnable scripts.


Gallery

WNAT_Hagen quality plot and distribution
Figure 1. Scale demo on WNAT_Hagen (52,774 vertices · 98,365 elements). plot_quality() renders per-element skew quality; plot_quality_histogram() emits the matched-colormap distribution beneath. Reproduce: python scripts/generate_wnat_showcase.py.

Mixed-element mesh: wireframe, layers, quality
Figure 2. Mixed-element pipeline — wireframe, skeletonization, and per-element quality on one tri+quad mesh, all via the standard API. Reproduce: python scripts/generate_mixed_truss_demo.py.

Skeletonization + quality plotting across three smoothing states
Figure 3. Flagship plots plot_layer() and plot_quality() tracking how skeletonization and quality respond to smoothing (raw → truss → FEM). Reproduce: python scripts/generate_3row_admesh.py.


Features

  • Fast — full init + quality analysis on a 98,365-element mesh in ~3.3 s (4.3× faster than v0.2.0).
    • Hash-mapped O(1) edge lookups, vectorised numpy core ops, kd-tree spatial queries at O(log n)
  • Mixed-element — triangles, quads, and mixed meshes share one API
  • Smoothing — three algorithms: Balendran direct FEM (one-shot solve), Zhou-Shimada angle-based (iterative), and the ADMESH Spring-Based Truss Smoother (force relaxation)
  • Mesh alterationsinsert_vertex, coord-only vertex moves, advancing-front element addition; topology-update primitives via the MutableMesh API (full mutation suite tracked in #94)
  • Analysis — element quality, interior angles, layer-based skeletonization
  • I/OADCIRC .fort.14 and SMS .2dm read/write. (gmsh Coming Soon)
  • Spatial queries — point-in-element, k-nearest vertices, radius search.
  • Mesh traversal algorithms (in-development)
  • ADMESH-Domains integrationfrom_admesh_domain() adapter for catalog meshes

Installation

From PyPI (pip):

pip install chilmesh

With uv (faster, pip-compatible):

uv pip install chilmesh        # or:  uv add chilmesh

From conda-forge (once published):

conda install -c conda-forge chilmesh
# or: mamba install -c conda-forge chilmesh

From source:

git clone https://github.com/domattioli/CHILmesh && cd CHILmesh
pip install -e .

Performance

CHILmesh is engineered for fast initialisation, query, and analysis on large unstructured 2D meshes. Hash-mapped edge adjacencies reduce topology build from O(n²) to amortised O(n); core operations (signed_area, interior_angles, elem_quality) are fully vectorised over numpy arrays; a centroid kd-tree backs spatial queries (find_element, nearest_vertices) at O(log n) per call.

Reference workload: WNAT_Hagen (52,774 vertices · 98,365 elements).

Stage v0.2.0 v0.4.0
Fast init (no layers) 3.9 s 0.44 s
Full init (with layers) 7.7 s 3.26 s
Quality analysis 6.6 s 0.07 s
Total workflow 14.3 s 3.33 s
find_element (per call) n/a < 50 μs
Vert2Edge lookup (per call) 0.7 μs 0.17 μs

Per-stage breakdown, methodology, and historical baselines in docs/BENCHMARK.md. Reproduce locally: python scripts/benchmark_wnat_hagen.py --json results.json.


API Overview

import chilmesh

# Load
mesh = chilmesh.examples.annulus()
mesh = chilmesh.CHILmesh.read_from_fort14('mesh.14')
mesh = chilmesh.CHILmesh.read_from_2dm('mesh.2dm')

# Smooth, analyse, visualise
mesh.smooth_mesh(method='fem', acknowledge_change=True)
quality, angles, stats = mesh.elem_quality()
mesh.plot()             # wireframe
mesh.plot_quality()     # per-element quality
mesh.plot_layer()       # skeletonization layers

# Skeletonization output
layers = mesh.layers    # {'OE', 'IE', 'OV', 'IV'} per layer

# Spatial queries (v0.3.0)
elem_id = mesh.find_element([0.5, 0.0])
neighbors = mesh.nearest_vertices([0.5, 0.0], k=5)
in_radius = mesh.find_elements_in_radius([0.5, 0.0], radius=0.2)

Full reference in docs/API.md. Optional ADMESH truss warm-start via chilmesh.optimize_with_admesh_truss.


Mesh Smoothing

Three smoothing algorithms — pick by use case. Each preserves boundary nodes, leaves topology unchanged, and accepts mixed-element meshes.

Algorithm API Style When
Balendran direct FEM smooth_mesh(method='fem', ...)direct_smoother(kinf=1e12) One-shot sparse solve Best general-purpose default. Stable on tri / quad / mixed. Non-iterative.
Zhou-Shimada angle-based smooth_mesh(method='angle-based', ...)angle_based_smoother(n_iter, omega, tol) Iterative, angle-maximising Fallback for difficult mixed meshes where FEM stalls. Iterative.
ADMESH Spring-Based Truss Smoother chilmesh.optimize_with_admesh_truss(mesh, sdf, niter, Fscale) distmesh2d-style spring/force relaxation against a signed-distance field When you want quality gains plus boundary nodes that respect a domain SDF (e.g., coastline). Iterative.
mesh.smooth_mesh(method='fem', acknowledge_change=True)         # default
mesh.smooth_mesh(method='angle-based', acknowledge_change=True) # fallback
mesh = chilmesh.optimize_with_admesh_truss(mesh, sdf, niter=500, Fscale=0.5)

Stiffness assembly, convergence parameters, and algorithm details: docs/API.md.

References.

  • FEM smoother: Balendran, B. (1999). "A direct smoothing method for surface meshes." Proc. 8th International Meshing Roundtable, pp. 189–193.
  • Angle-based smoother: Zhou, M. & Shimada, K. (2000). "An angle-based approach to two-dimensional mesh smoothing." Proc. 9th IMR, pp. 373–384.
  • ADMESH Spring-Based Truss Smoother: Conroy et al. (2012) "ADMESH: An advanced, automatic unstructured mesh generator for shallow water models." doi:10.1007/s10236-012-0574-0.

Examples

Runnable scripts in examples/ demonstrate common tasks against bundled fixtures — no external mesh files required:

python examples/01_quickstart.py

CLI

chilmesh ships with a small shell entry point for inspection, conversion, smoothing, and plotting. No new dependencies — pure stdlib argparse over the existing public API.

# Mesh statistics (verts, elems, edges, layers, quality)
chilmesh info path/to/mesh.fort.14

# Format conversion (output format inferred from suffix)
chilmesh convert mesh.2dm mesh.fort.14

# In-place smoothing
chilmesh smooth mesh.fort.14 -o smoothed.fort.14 --method angle-based --iter 50

# Static figure (PNG / PDF / SVG by suffix; --layers or --quality for overlays)
chilmesh plot mesh.fort.14 -o mesh.png --quality

Each subcommand has its own --help with an example. Also available as python -m chilmesh ... when the script isn't on PATH.


Downstream Projects

ADMESH — Optimized 2D triangular mesh generation for hydrodynamic domains MADMESHR — AI based quad- and mixed element generation for hydrodynamic domains. ADMESH-Domains — Mesh catalog for hydrodynamic domains.


Contributing

Issues and pull requests welcome at github.com/domattioli/CHILmesh. Run pytest -v before opening a PR — see TESTING.md for the test-suite guide.


Citation

CHILmesh originated in MATLAB as the mixed-element data structure backing a skeletonization-driven heuristic for indirect triangle-to-quad conversion that preserves the underlying size function (Mattioli, OSU MSc thesis, 2017). This Python implementation is the actively-developed successor, with .fort.14 I/O and a shared API for downstream projects (MADMESHR, ADMESH, ADMESH-Domains).

Software (Zenodo). Placeholder until the first Zenodo archive mints a DOI — replace XXXXXXX once available:

@software{mattioli_chilmesh,
  author    = {Mattioli, Dominik O. and Kubatko, Ethan J.},
  title     = {{CHILmesh}: a fast 2D mesh library for triangular,
               quadrilateral, and mixed-element grids},
  year      = {2026},
  publisher = {Zenodo},
  version   = {0.4.1},
  doi       = {10.5281/zenodo.XXXXXXX},
  url       = {https://github.com/domattioli/CHILmesh}
}

MATLAB source (Mattioli, 2017 thesis).

@mastersthesis{mattioli2017quadmesh,
  author = {Mattioli, Dominik O.},
  title  = {{QuADMESH+}: A Quadrangular ADvanced Mesh Generator
            for Hydrodynamic Models},
  school = {The Ohio State University},
  year   = {2017},
  url    = {http://rave.ohiolink.edu/etdc/view?acc_num=osu1500627779532088}
}

License

MIT License — See LICENSE for details.

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

chilmesh-0.4.1.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

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

chilmesh-0.4.1-py3-none-any.whl (173.9 kB view details)

Uploaded Python 3

File details

Details for the file chilmesh-0.4.1.tar.gz.

File metadata

  • Download URL: chilmesh-0.4.1.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for chilmesh-0.4.1.tar.gz
Algorithm Hash digest
SHA256 ff21f708cf94e2a370d637f131b616a84f0e94bbac62ab7d9d266f0797005c26
MD5 ffee490bf1f9fe7c54a57fa3b6f80e33
BLAKE2b-256 8e49440ae92abe52d850ed9d9bc64ae77868800e27e0c9ee574b90be457dcbf9

See more details on using hashes here.

File details

Details for the file chilmesh-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: chilmesh-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 173.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for chilmesh-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f340a48babf569a5134c42e19deccb301df08b82bd25703ff88f40d5be921eaa
MD5 cef5d47cf302780190db5e340657bd70
BLAKE2b-256 5b7e9f9da7f22f10bec4682ed90810451fb30ac4aa8faec2a2db652adb9dcb8b

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