File size: 302 Bytes
2b07453 259ebe4 2b07453 259ebe4 | 1 2 3 4 5 6 7 8 9 | """Analytical benchmark solutions for GeoForce-Solver validation."""
from __future__ import annotations
from .conduction_1d import conduction_step_temperature
from .theis import theis_pressure_change, well_function
__all__ = ["conduction_step_temperature", "theis_pressure_change", "well_function"]
|