Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
EverVino committed Sep 15, 2023
1 parent e8bc32a commit 78417a7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,23 @@ default_stages:
- commit
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.4.0
hooks:
- id: end-of-file-fixer

- repo: local
hooks:
# NOTE: This is a total unnecessary check, just used as part of the
# template. Remove this after creating the template.

- id: black
- entry: black
id: black
name: black
entry: black
language: system
pass_filenames: true
types:
- python

- id: isort
name: isort
entry: isort
name: isort
language: system
pass_filenames: true
types:
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ This Project aims to facilitate the teaching of mass transfer phenomena. Designe

Now this repo has a module to graph an example for mcthiele solution to binary destilation

## Example

```python
from fqlearn import McCabeThiele

model = McCabeThiele()
model.set_data(compound_a="methanol", compound_b="water")
model.fit(xF=0.5, xD=0.94, xW=0.05)
model.plot()
```

![mccabe thiele](docs/dest.png)

## Credits
Expand Down
Binary file modified docs/dest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 78417a7

Please sign in to comment.