Some code to find ion pairs in solution. WIP.
micromamba create -f environment.yml # For the first time only
micromamba activate soluenv
rm -rf subprojects
git restore subprojects
meson setup build --wipe
pip install -e . --no-build-isolation
solvlib
is the C++ library. The library graph_lib
contains classes for the Network class.
import soluanalysis as solu
system = solu.solvlib.System()
We test with pytest
. Run it like so (in verbose mode):
pytest -v
Can be used to determine ion pairs. Has bindings to the C++
library James.