Reaction-Transport Modeling in Porous Media
Project description
Overview
REMAP (Chernyavsky & Wortmann, 2007) 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:
- March 30th: Initial release
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}")
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)
Installation
pip install remmapy
will install all necessary files and dependencies- Afterwards you need to find
remap.py
and change the following line:
octave.addpath("/path/to/remap.m")
so that it points to the location of the octave matlab file.
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.1.tar.gz
.
File metadata
- Download URL: remappy-0.0.0.1.tar.gz
- Upload date:
- Size: 16.4 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.63.1 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 | 97879a2b053bb4c84dfca35ef78550f6f5a42bb059538470dc1e4196deb43aa8 |
|
MD5 | 3c0b865e9bf044a1c1e3f7af19c1143f |
|
BLAKE2b-256 | 882d9bd1340690d3d9043f1b5801b5a4500fb1a3d569f7c42b6c2223c1ac76d5 |
File details
Details for the file remappy-0.0.0.1-py3-none-any.whl
.
File metadata
- Download URL: remappy-0.0.0.1-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: 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.63.1 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 | 089a29b37593c88f345a32365bc819c3137c8765f088f979c4cdcfc5ed2f026d |
|
MD5 | e22abc934ad433496eb32e15ceab4303 |
|
BLAKE2b-256 | 1d7e3b10d9cab562a0a0c92918b77f72c35fb2d49dddd62c673df23a269377e9 |