crunchflow 2.0.4__tar.gz → 2.0.6__tar.gz
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.
- {crunchflow-2.0.4 → crunchflow-2.0.6}/PKG-INFO +19 -3
- crunchflow-2.0.6/README.md +37 -0
- crunchflow-2.0.6/crunchflow/input/__init__.py +4 -0
- {crunchflow-2.0.4 → crunchflow-2.0.6}/crunchflow/input/blocks.py +249 -154
- {crunchflow-2.0.4 → crunchflow-2.0.6}/crunchflow/input/inputfile.py +93 -60
- {crunchflow-2.0.4 → crunchflow-2.0.6}/crunchflow/output/__init__.py +2 -0
- {crunchflow-2.0.4 → crunchflow-2.0.6}/crunchflow/output/spatial.py +210 -206
- {crunchflow-2.0.4 → crunchflow-2.0.6}/crunchflow/output/timeseries.py +101 -92
- crunchflow-2.0.6/crunchflow/util.py +58 -0
- crunchflow-2.0.6/pyproject.toml +95 -0
- crunchflow-2.0.4/README.md +0 -22
- crunchflow-2.0.4/crunchflow/input/__init__.py +0 -2
- crunchflow-2.0.4/crunchflow/util.py +0 -56
- crunchflow-2.0.4/pyproject.toml +0 -24
- {crunchflow-2.0.4 → crunchflow-2.0.6}/LICENSE +0 -0
- {crunchflow-2.0.4 → crunchflow-2.0.6}/crunchflow/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: crunchflow
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.6
|
|
4
4
|
Summary: A Python toolbox for working with the CrunchFlow reactive transport code
|
|
5
5
|
License: GPL-3.0-or-later
|
|
6
6
|
Author: Zach Perzan
|
|
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
16
|
Requires-Dist: matplotlib (>=3.7.0,<4.0.0)
|
|
16
17
|
Requires-Dist: numpy (>=2.0.0,<3.0.0)
|
|
17
18
|
Requires-Dist: pandas (>=2.2.2,<3.0.0)
|
|
@@ -23,15 +24,30 @@ The Python crunchflow package is a toolbox for working with the CrunchFlow react
|
|
|
23
24
|
|
|
24
25
|
## Installation
|
|
25
26
|
|
|
26
|
-
Use the package manager [pip](https://pip.pypa.io/en/stable/)
|
|
27
|
+
Use the package manager [pip](https://pip.pypa.io/en/stable/) or
|
|
28
|
+
[conda](https://anaconda.org/anaconda/conda) to install `crunchflow`.
|
|
27
29
|
|
|
28
30
|
```bash
|
|
29
31
|
pip install crunchflow
|
|
30
32
|
```
|
|
33
|
+
or
|
|
34
|
+
```bash
|
|
35
|
+
conda install -c conda-forge crunchflow
|
|
36
|
+
```
|
|
31
37
|
|
|
32
38
|
## Usage
|
|
33
39
|
Full documentation can be found [here](https://readthedocs.org/projects/python-crunchflow/)
|
|
34
40
|
|
|
41
|
+
## Citation
|
|
42
|
+
If you use the Python `crunchflow` package in published work, please cite the paper for which it
|
|
43
|
+
was originally developed:
|
|
44
|
+
|
|
45
|
+
Perzan, Z., Babey, T., Caers, J., Bargar, J.R. and Maher, K., 2021, Local and global sensitivity analysis of a reactive transport model simulating floodplain redox cycling, *Water Resources Research*, doi: [10.1029/2021WR029723](https://dx.doi.org/10.1029/2021WR029723)
|
|
46
|
+
|
|
47
|
+
From version 2.0.5 on, each release of this package is archived in Zenodo and can be cited directly, in addition to citing the paper above. For example, to cite version 2.0.5:
|
|
48
|
+
|
|
49
|
+
Perzan, Z., 2025, zperzan/python-crunchflow: v2.0.5 (v2.0.5), *Zenodo*, doi: [10.5281/zenodo.14636010](https://dx.doi.org/10.5281/zenodo.14636010)
|
|
50
|
+
|
|
35
51
|
## Contributing
|
|
36
52
|
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
|
|
37
53
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# crunchflow
|
|
2
|
+
|
|
3
|
+
The Python crunchflow package is a toolbox for working with the CrunchFlow reactive transport model. It can be particularly useful for analyzing and plotting CrunchFlow model output.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Use the package manager [pip](https://pip.pypa.io/en/stable/) or
|
|
8
|
+
[conda](https://anaconda.org/anaconda/conda) to install `crunchflow`.
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install crunchflow
|
|
12
|
+
```
|
|
13
|
+
or
|
|
14
|
+
```bash
|
|
15
|
+
conda install -c conda-forge crunchflow
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
Full documentation can be found [here](https://readthedocs.org/projects/python-crunchflow/)
|
|
20
|
+
|
|
21
|
+
## Citation
|
|
22
|
+
If you use the Python `crunchflow` package in published work, please cite the paper for which it
|
|
23
|
+
was originally developed:
|
|
24
|
+
|
|
25
|
+
Perzan, Z., Babey, T., Caers, J., Bargar, J.R. and Maher, K., 2021, Local and global sensitivity analysis of a reactive transport model simulating floodplain redox cycling, *Water Resources Research*, doi: [10.1029/2021WR029723](https://dx.doi.org/10.1029/2021WR029723)
|
|
26
|
+
|
|
27
|
+
From version 2.0.5 on, each release of this package is archived in Zenodo and can be cited directly, in addition to citing the paper above. For example, to cite version 2.0.5:
|
|
28
|
+
|
|
29
|
+
Perzan, Z., 2025, zperzan/python-crunchflow: v2.0.5 (v2.0.5), *Zenodo*, doi: [10.5281/zenodo.14636010](https://dx.doi.org/10.5281/zenodo.14636010)
|
|
30
|
+
|
|
31
|
+
## Contributing
|
|
32
|
+
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
|
|
33
|
+
|
|
34
|
+
Please make sure to update tests as appropriate.
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
[GPL](https://choosealicense.com/licenses/gpl-3.0/)
|