Skip to content

Commit

Permalink
updated to new grf-laplace routine; better Input handling; cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Mar 7, 2019
1 parent 360e8b0 commit 3c7f8c6
Show file tree
Hide file tree
Showing 6 changed files with 356 additions and 463 deletions.
7 changes: 5 additions & 2 deletions anaflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
.. autosummary::
thiem
theis
grf_model
Heterogeneous
^^^^^^^^^^^^^
Expand All @@ -48,7 +49,7 @@
Special solutions for special aquifers
.. autosummary::
grf_model
grf_disk
Laplace
=======
Expand All @@ -68,11 +69,12 @@
from anaflow.flow import (
thiem,
theis,
grf_model,
ext_thiem2D,
ext_theis2D,
ext_thiem3D,
ext_theis3D,
grf_model,
grf_disk,
)
from anaflow.tools.laplace import get_lap_inv, get_lap

Expand All @@ -86,6 +88,7 @@
"ext_thiem3D",
"ext_theis3D",
"grf_model",
"grf_disk",
"get_lap_inv",
"get_lap",
]
10 changes: 6 additions & 4 deletions anaflow/flow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
.. autosummary::
thiem
theis
grf_model
Heterogeneous
~~~~~~~~~~~~~
Expand All @@ -48,25 +49,26 @@
Special solutions for special aquifers
.. autosummary::
grf_model
grf_disk
"""
from __future__ import absolute_import

from anaflow.flow.homogeneous import thiem, theis
from anaflow.flow.homogeneous import thiem, theis, grf_model
from anaflow.flow.heterogeneous import (
ext_thiem2D,
ext_theis2D,
ext_thiem3D,
ext_theis3D,
)
from anaflow.flow.special import grf_model
from anaflow.flow.special import grf_disk

__all__ = [
"thiem",
"theis",
"grf_model",
"ext_thiem2D",
"ext_theis2D",
"ext_thiem3D",
"ext_theis3D",
"grf_model",
"grf_disk",
]

0 comments on commit 3c7f8c6

Please sign in to comment.