geoforce / solver /__init__.py
Ubuntu
GeoForce-Solver pressure solver passes Theis benchmark (0.38% err)
2b07453
raw
history blame contribute delete
449 Bytes
"""GeoForce-Solver — minimal single-phase geothermal reservoir solver.
Built live by an Opus 4.7 agent team during the "Built with Opus 4.7" hackathon.
Adopts TOUGH's finite-volume + fully-implicit backward-Euler philosophy;
deliberately simplifies to single-phase liquid water on a 2D structured grid.
"""
from __future__ import annotations
from .grid import Grid
from .properties import WaterProperties
__all__ = ["Grid", "WaterProperties"]