Modelling and analyzing random nanowire networks in Python.
Project description
Random NWNs
Python package for modelling and analyzing random nanowire networks. This package was a summer research project lasting from May 2021 to August 2021 under the supervision of Dr. Claudia Gomes da Rocha.
Update: This project will now be continuing as of May 2024. If you are using this project, please note there will be active development on it and the functionality may change.
For future additions, feel free to fork the repository. Please cite Marcus Kasdorf if you wish to extend the project.
Table of Contents
Installation
Random NWNs can be installed from PyPI for quick use or installed manually for development.
Production
The latest version of randomnwn can be installed from PyPI:
pip install randomnwn
An Anaconda environment file is also provided to create a new virtual environment with the minimum required dependencies required to run the package.
conda env create -n randomnwn -f environment.yml
Be sure you activate the environment before using the package!
conda activate randomnwn
Development
One can use the dev-environment.yml
file with Anaconda to create a new
virtual environment with all the required dependencies for development.
conda env create -n randomnwn -f dev-environment.yml
This will also install the randomnwn package in editable mode (i.e. as if
running pip install -e .
in the base folder).
Usage
Nanowire network objects are simply NetworkX graphs with various attributes stored in the graph, edges, and nodes.
>>> import randomnwn as rnwn
>>> NWN = rnwn.create_NWN(seed=123)
>>> NWN
<networkx.classes.graph.Graph at 0x...>
>>> rnwn.plot_NWN(NWN)
(<Figure size 800x600 with 1 Axes>, <AxesSubplot:>)
See the wiki pages for more detail on usage.
Uninstallation
To uninstall the package, use:
pip uninstall randomnwn
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 randomnwn-0.4.5.tar.gz
.
File metadata
- Download URL: randomnwn-0.4.5.tar.gz
- Upload date:
- Size: 30.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b1a4b28ce2f4baee3d366e9757146e7810a646f83998ff894551a48a97e18e0 |
|
MD5 | 0f7d25fdcfa95eaa5c8a32ca00999d52 |
|
BLAKE2b-256 | 262a1f07db29dd3d9a5294edf5aee205d1664f3bb71884801fcb8932cee9d81d |
File details
Details for the file randomnwn-0.4.5-py3-none-any.whl
.
File metadata
- Download URL: randomnwn-0.4.5-py3-none-any.whl
- Upload date:
- Size: 33.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 062f1bf673a4d1212938ec58917af1a549fbadbdfe6cb774dc2af6decfeb535b |
|
MD5 | ef100aa8203218575a3f6be1c52c9300 |
|
BLAKE2b-256 | 15d32523fb1a18f413ae238b8937644f10de2eb88e1bd94469acbdc20a0cc21f |