Skip to content

Commit

Permalink
rename submodule ext_grf
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Aug 7, 2019
1 parent 9cc0011 commit c8f0706
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion anaflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
Extended GRF
^^^^^^^^^^^^
.. currentmodule:: anaflow.flow.ext_grf
.. currentmodule:: anaflow.flow.ext_grf_model
The extended general radial flow model.
Expand Down
6 changes: 3 additions & 3 deletions anaflow/flow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.. autosummary::
homogeneous
heterogeneous
ext_grf
ext_grf_model
laplace
Solutions
Expand Down Expand Up @@ -50,7 +50,7 @@
Extended GRF
~~~~~~~~~~~~
.. currentmodule:: anaflow.flow.ext_grf
.. currentmodule:: anaflow.flow.ext_grf_model
The extended general radial flow model.
Expand All @@ -73,7 +73,7 @@
neuman2004,
neuman2004_steady,
)
from anaflow.flow.ext_grf import ext_grf, ext_grf_steady
from anaflow.flow.ext_grf_model import ext_grf, ext_grf_steady

__all__ = [
"thiem",
Expand Down
2 changes: 1 addition & 1 deletion anaflow/flow/ext_grf.py → anaflow/flow/ext_grf_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Anaflow subpackage providing the extended GRF Model.
.. currentmodule:: anaflow.flow.ext_grf
.. currentmodule:: anaflow.flow.ext_grf_model
The following functions are provided
Expand Down
2 changes: 1 addition & 1 deletion anaflow/flow/heterogeneous.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
TPL_CG,
TPL_CG_error,
)
from anaflow.flow.ext_grf import ext_grf, ext_grf_steady
from anaflow.flow.ext_grf_model import ext_grf, ext_grf_steady

__all__ = [
"ext_thiem_2d",
Expand Down
2 changes: 1 addition & 1 deletion anaflow/flow/homogeneous.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import numpy as np

from anaflow.tools.special import well_solution, grf_solution
from anaflow.flow.ext_grf import ext_grf, ext_grf_steady
from anaflow.flow.ext_grf_model import ext_grf, ext_grf_steady

__all__ = ["thiem", "theis", "grf"]

Expand Down
11 changes: 0 additions & 11 deletions docs/source/flow.ext_grf.rst

This file was deleted.

11 changes: 11 additions & 0 deletions docs/source/flow.ext_grf_model.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
anaflow.flow.ext_grf_model
==========================

.. automodule:: anaflow.flow.ext_grf_model
:members:
:undoc-members:
:show-inheritance:

.. raw:: latex

\clearpage
2 changes: 1 addition & 1 deletion docs/source/flow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ anaflow.flow

flow.homogeneous.rst
flow.heterogeneous.rst
flow.ext_grf.rst
flow.ext_grf_model.rst
flow.laplace.rst
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The following functions are provided directly
* :any:`neuman2004` transient solution from *Neuman 2004*
* :any:`neuman2004_steady` steady solution from *Neuman 2004*
* :any:`grf` "General Radial Flow" Model from *Barker 1988*
* :py:func:`ext_grf` the transient extended GRF model
* :any:`ext_grf` the transient extended GRF model
* :any:`ext_grf_steady` the steady extended GRF model
* :any:`ext_thiem_tpl` extended Thiem solution for truncated power laws
* :any:`ext_theis_tpl` extended Theis solution for truncated power laws
Expand Down

0 comments on commit c8f0706

Please sign in to comment.