Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tdegeus/elasticconstants
Simple Python function to convert elastic constants
https://github.com/tdegeus/elasticconstants
Last synced: 11 days ago
JSON representation
Simple Python function to convert elastic constants
- Host: GitHub
- URL: https://github.com/tdegeus/elasticconstants
- Owner: tdegeus
- License: mit
- Created: 2018-08-08T12:56:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-28T15:55:53.000Z (almost 5 years ago)
- Last Synced: 2024-09-10T16:42:35.050Z (about 2 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# elasticConstants
Simple Python library/function to convert elastic constants.
## Usage
```python
import elasticConstantsprint(elasticConstants.convert(E=1.0, nu=0.3))
```## Installation
## Using conda
```bash
conda install -c conda-forge elasticConstants
```## Using PyPi
```bash
pip install elasticConstants
```## From source
```bash
# Download elasticConstants
git checkout https://github.com/tdegeus/elasticConstants.git
cd elasticConstants# Install
python -m pip install .
```## Develop
After completing an update, change the version number and upload to GitHub and then to PyPi using
```bash
python setup.py bdist_wheel --universal
twine upload dist/*
```