Surface forces in contact calculations
Project description
Adhesion
Adhesion. This code implements adhesive interaction for ContactMechanics.
The methods that are implemented in this code are described in the following papers:
Build status
The following badge should say build passing. This means that all automated tests completed successfully for the master branch.
Documentation
Installation
You need Python 3 and FFTW3 to run Adhesion. All Python dependencies can be installed automatically by invoking
Installation directly with pip
# install Adhesion
pip install Adhesion
The last command will install other dependencies including muFFT, NuMPI and runtests
Note: sometimes muFFT will not find the FFTW3 installation you expect.
You can specify the directory where you installed FFTW3
by setting the environment variable FFTWDIR
(e.g. to $USER/.local
)
Installation from source directory
If you cloned the repository. You can install the dependencies with
pip install [--user] numpy
pip install [--user] pylint
pip install [--user] cython
pip install [--user] mpi4py #optional
pip3 install [--user] -r requirements.txt
in the source directory. Adhesion can be installed by invoking
pip3 install [--user] .
in the source directoy. The command line parameter --user is optional and leads to a local installation in the current user's $HOME/.local
directory.
Installation problems with lapack and openblas
bicubic.cpp
is linked with lapack
, that is already available as a dependency of numpy
.
If during build, setup.py
fails to link to one of the lapack implementations
provided by numpy, as was experienced for mac, try providing following environment variables:
export LDFLAGS="-L/usr/local/opt/openblas/lib $LDFLAGS"
export CPPFLAGS="-I/usr/local/opt/openblas/include $CPPFLAGS"
export PKG_CONFIG_PATH="/usr/local/opt/openblas/lib/pkgconfig:$PKG_CONFIG_PATH"
export LDFLAGS="-L/usr/local/opt/lapack/lib $LDFLAGS"
export CPPFLAGS="-I/usr/local/opt/lapack/include $CPPFLAGS"
export PKG_CONFIG_PATH="/usr/local/opt/lapack/lib/pkgconfig:$PKG_CONFIG_PATH"
where the paths have probably to be adapted to your particular installation method (here it was an extra homebrew installation).
Updating Adhesion
If you update Adhesion (whether with pip or git pull
if you cloned the repository),
you may need to uninstall NuMPI
, muSpectre
and or runtests
, so that the
newest version of them will be installed.
Testing
To run the automated tests, go to the main source directory and execute the following:
pytest
Tests that are parallelizable have to run with runtests
python run-tests.py
You can choose the number of processors with the option --mpirun="mpirun -np 4"
. For development purposes you can go beyond the number of processors of your computer using --mpirun="mpirun -np 10 --oversubscribe"
Other usefull flags:
--xterm
: one window per processor--xterm --pdb
: debugging
Development
To use the code without installing it, e.g. for development purposes, use the env.sh
script to set the environment:
source /path/to/Adhesion/env.sh [python3]
Note that the parameter to env.sh
specifies the Python interpreter for which the environment is set up. Adhesion contains portions that need to be compiled, make sure to run
python setup.py build
whenever any of the Cython (.pyx) sources are modified.
Please read CONTRIBUTING if you plan to contribute to this code.
Usage
The code is documented via Python's documentation strings that can be accesses via the help
command or by appending a questions mark ?
in ipython/jupyter. There are two command line tools available that may be a good starting point. They are in the commandline
subdirectory:
soft_wall.py
: Command line front end for calculations with soft (possibly adhesive) interactions between rigid and elastic flat. This is a stub rather than a fully featured command line tool that can be used as a starting point for modified script. The present implementation is set up for a solution of Martin Müser's contact mechanics challenge.
Compiling the documentation
- After changes to the Adhesion source, you have to build again:
python setup.py build
- Navigate into the docs folder:
cd docs/
- Automatically generate reStructuredText files from the source:
sphinx-apidoc -o source/ ../Adhesion
Do just once, or if you have added/removed classes or methods. In case of the latter, be sure to remove the previous source before:rm -rf source/
- Build html files:
make html
- The resulting html files can be found in the
Adhesion/docs/_build/html/
folder. Root isAdhesion/docs/_build/html/index.html
.
For convenience, all these steps are implemented in compile_doc.sh
.
Funding
Development of this project is funded by the European Research Council within Starting Grant 757343 and by the Deutsche Forschungsgemeinschaft within projects PA 2023/2 and EXC 2193.
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 adhesion-0.92.0.tar.gz
.
File metadata
- Download URL: adhesion-0.92.0.tar.gz
- Upload date:
- Size: 939.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30d417f4c67740d04992585c0afbe269a0c9d49f2d383bf65b0fc92a912ececc |
|
MD5 | f5b1376a14d498911b25d6c1d8310359 |
|
BLAKE2b-256 | fb10ab9da0bbbb8e6bbed07dfe36cf3b7607bbac18ee29e80747470297208fef |
File details
Details for the file adhesion-0.92.0-py3-none-any.whl
.
File metadata
- Download URL: adhesion-0.92.0-py3-none-any.whl
- Upload date:
- Size: 79.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0ee8e9545c8c64617fdeb477dad1c36301debd93731a9e9623d1c3f71882ad9 |
|
MD5 | d9c153a412be6b1e63b70b93e353cca8 |
|
BLAKE2b-256 | 4a9d4da8687dbd68d1ece3406058e9d24db41b6d263b01e993fb92ae9c9c0d93 |