mf6rtm 0.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mf6rtm/__init__.py +15 -0
- mf6rtm/__main__.py +4 -0
- mf6rtm/mf6rtm.py +742 -0
- mf6rtm/mrbeaker.png +0 -0
- mf6rtm/mup3d.py +707 -0
- mf6rtm/py.typed +0 -0
- mf6rtm/utils.py +418 -0
- mf6rtm-0.0.0.dist-info/METADATA +88 -0
- mf6rtm-0.0.0.dist-info/RECORD +13 -0
- mf6rtm-0.0.0.dist-info/WHEEL +5 -0
- mf6rtm-0.0.0.dist-info/entry_points.txt +2 -0
- mf6rtm-0.0.0.dist-info/licenses/LICENSE +28 -0
- mf6rtm-0.0.0.dist-info/top_level.txt +2 -0
mf6rtm/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
The MF6RTM (Modflow 6 Reactive Transport Model) package is a python package
|
|
3
|
+
for reactive transport modeling via the MODFLOW 6 and PhreeqcRM APIs.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
# populate package namespace
|
|
7
|
+
from mf6rtm import (
|
|
8
|
+
mf6rtm,
|
|
9
|
+
mup3d,
|
|
10
|
+
utils,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
from mf6rtm.mf6rtm import run_cmd
|
|
14
|
+
|
|
15
|
+
__author__ = "Pablo Ortega"
|
mf6rtm/__main__.py
ADDED