An open API service indexing awesome lists of open source software.

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

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
```