https://github.com/deviantfero/femur
:skull: python implementation of FEM
https://github.com/deviantfero/femur
Last synced: over 1 year ago
JSON representation
:skull: python implementation of FEM
- Host: GitHub
- URL: https://github.com/deviantfero/femur
- Owner: deviantfero
- License: mit
- Created: 2018-06-12T23:01:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-11T18:47:53.000Z (almost 8 years ago)
- Last Synced: 2025-01-30T15:44:47.835Z (over 1 year ago)
- Language: Python
- Size: 1.53 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Femur
Femur is a small python package that solves 2d and 3d FEM systems.
## Setup for development
```sh
$ git clone https://github.com/deviantfero/femur
$ cd femur
# setup virtual env, you can skip this and just install
# dependencies and run with python -m femur
$ pyvenv venv
$ . /venv/bin/activate
(venv) $ pip install -r requirements.txt
(venv) $ python -m femur
```
## Save new dependencies
``` sh
# when in the project root
$ pip freeze > requirements.txt
```