File size: 449 Bytes
2b07453 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """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"]
|