Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added docs
  • Loading branch information
g-bauer committed Apr 12, 2024
commit b8be814f047f4b392ebbf5c65814a707a2bba577
3 changes: 2 additions & 1 deletion docs/api/eos.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ If you want to adjust parameters of a model to experimental data you can use cla
EquationOfState.python_residual
EquationOfState.python_ideal_gas
EquationOfState.uvtheory
EquationOfState.saftvrmie
EquationOfState.saftvrqmie
```

Expand Down Expand Up @@ -54,7 +55,7 @@ If you want to adjust parameters of a model to experimental data you can use cla

## The `estimator` module

### Import
### Import

```python
from feos.eos.estimator import Estimator, DataSet, Loss, Phase
Expand Down
3 changes: 2 additions & 1 deletion docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ These modules contain the objects to e.g. read parameters from files or build pa
peng_robinson
pets
uvtheory
saftvrmie
saftvrqmie
joback
dippr
```
```
28 changes: 28 additions & 0 deletions docs/api/saftvrmie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# `feos.saftvrmie`

Utilities to build `SaftVRMieParameters`.

## Example

```python
from feos.saftvrmie import SaftVRMieParameters

path = 'parameters/saftvrmie/lafitte2013.json'
parameters = SaftVRMieParameters.from_json(['ethane', 'methane'], path)
```

## Data types

```{eval-rst}
.. currentmodule:: feos.saftvrmie

.. autosummary::
:toctree: generated/

Identifier
ChemicalRecord
PureRecord
BinaryRecord
SaftVRMieRecord
SaftVRMieParameters
```