Reaction-Transport Modeling in Porous Media
Project description
Overview
REMAP (Chernyavsky & Wortmann, 2007, DOI 10.1029/2006GC001442) provides an easy to use interface for 1-dimensional reaction-transport modeling in porous media, and provides explicit support for kinetic stable isotope fractionation calculations.
The original program was written as matlab program. Remappy provides a python wrapper to the original code which can be run via oct2py
.
News:
- April 5th: v 0.0.0.4, installation path is now updated during installation, non-python files are now included in installation script. Updated installation instructions
- March 30th: Initial release
Installation
pip install remappy
will install all necessary files and dependencies- you can now import remap into your python code (see below)
- to run remap as standalone application, you need to follow your os specific instructions to create an executable python program. On linux, it is sufficient to link
remap.py
to a directory which is in your path (often/usr/local/bin/
) and set is a executable. Tools like https://datatofish.com/executable-pyinstaller/ will also work on Mac and Windows.
Usage
- remap.py: This behaves similar to the original remap but provides extended command-line parsing options, run
remap.py --help
for details - you can also import the library and use it inside of your own python code
import remap
import pathlib as pl
import pandas as pd
fn: str = "hg.rmp" # remap config file
cwd: pl.Path = pl.Path.cwd() # get the current working directory
fqfn: pl.Path = pl.Path(f"{cwd}/{fn}") # fully qualified file name
if not fqfn.exists(): # check if file exist
raise FileNotFoundError(f"Cannot find file {fn}")
# run remap and return results as dataframe
df: pd.DataFrame = remap.run_remap(str(fname))
- or use the
oct2py
interface directly
from oct2py import octave
octave.addpath("/path/to/remap.m")
fn = "hg.rmp" # name of remap configuration file
# call remap
[c, conc, r, v, par] = octave.start_remap(fn, nout=5)
Documentation
See the docs
folder for the original REMAP documentation.
Todo
- port more matlab code to python
- provide more examples
- do more testing
License
remappy: reaction-transport modeling Copyright (C), 2022 Ulrich G. Wortmann
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file remappy-0.0.0.5.tar.gz
.
File metadata
- Download URL: remappy-0.0.0.5.tar.gz
- Upload date:
- Size: 25.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 pkginfo/1.8.2 readme-renderer/27.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.3 keyring/23.4.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17f60e4cc8df6ac31e8442f32b6a65c9b087745991b1276500b1e8cc2853e0e7 |
|
MD5 | d772c687e4f18eb277f0c7e1388d5c86 |
|
BLAKE2b-256 | 2b3c621f291eb28b6aaf7108f07ba99d2c8af497b6d84b3b74c3734d636b5a25 |
File details
Details for the file remappy-0.0.0.5-py2.py3-none-any.whl
.
File metadata
- Download URL: remappy-0.0.0.5-py2.py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 pkginfo/1.8.2 readme-renderer/27.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.3 keyring/23.4.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ed8417728695258a0ed968df3548f99e08c54803eaedad96e8d505d201424a6 |
|
MD5 | 02696c2e87043db20178ff8356c3808a |
|
BLAKE2b-256 | 2b24ba86fc9e13561c8836bc0c173332155bfc1ffeb1e0c913a00a9d17860477 |