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
1addcfd
added ePC-SAFT
Mar 5, 2024
39c1f45
added epcsaft to test.yml
Mar 6, 2024
d9b9396
removed association for epcsaft
Mar 6, 2024
08bbea6
added new standard na, nb to parameter file
Mar 6, 2024
5eead2c
Moved temperature dependent sigma to parameters so that copies of Har…
g-bauer Mar 22, 2024
4d3f639
tidied up after removal of assoc and HS from epcsaft, some formatting
Mar 22, 2024
f554331
changed content of enum PermittivityRecord to not contain an addition…
Mar 22, 2024
243525b
changed interpolation function to binary search, made sure parameters…
Mar 22, 2024
b661992
removed bug: check if permittivity model types agree only if permitti…
Mar 22, 2024
dfe64c9
added possibility of constant permittivity (only 1 data point provided)
Mar 26, 2024
73e55ee
added tests for Helmholtz energy of Born and Ionic term, added parame…
Mar 26, 2024
24825c9
moved constants to top of file and named as constants
Apr 18, 2024
9534c60
reverted some changes in ionic.rs due to Pottel that weren't supposed…
Apr 18, 2024
8f13c7f
removed transport properties from ePC-SAFT
Apr 18, 2024
99b8664
added Python documentation
Apr 18, 2024
def0b2d
removed some last remainder of transport properties
Apr 18, 2024
babf87d
changed permittivity interpolation to preserve derivative
Apr 18, 2024
6518a22
added epcsaft parameters
Apr 18, 2024
eb129ba
added documentation for parameters
Apr 18, 2024
e45db99
update CHANGELOG, Cargo.toml, README
prehner Apr 18, 2024
0400804
only one Added category in CHANGELOG
prehner Apr 18, 2024
b1725f4
add binary_path in doc example
prehner Apr 18, 2024
787f06e
removed some warnings and fixed tests
prehner Apr 18, 2024
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 Python documentation
  • Loading branch information
LisaNeumaier authored and prehner committed Apr 18, 2024
commit 99b8664dfc5489b892ee1473b063bad6aa53eee9
1 change: 1 addition & 0 deletions docs/api/eos.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ If you want to adjust parameters of a model to experimental data you can use cla

EquationOfState
EquationOfState.pcsaft
EquationOfState.epcsaft
EquationOfState.gc_pcsaft
EquationOfState.peng_robinson
EquationOfState.pets
Expand Down
35 changes: 35 additions & 0 deletions docs/api/epcsaft.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# `feos.epcsaft`

Utilities to build `ElectrolytePcSaftParameters`.

## Example

```python
from feos.epcsaft import ElectrolytePcSaftParameters

path = 'parameters/epcsaft/held2014_w_permittivity_added.json'
parameters = ElectrolytePcSaftParameters.from_json(['water', 'sodium ion', 'chloride ion'], path)
```

## Data types

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

.. autosummary::
:toctree: generated/

Identifier
IdentifierOption
ChemicalRecord
SmartsRecord
ElectrolytePcSaftVariants
ElectrolytePcSaftRecord
ElectrolytePcSaftBinaryRecord
PureRecord
SegmentRecord
BinaryRecord
BinarySegmentRecord
ElectrolytePcSaftParameters
PermittivityRecord
```
1 change: 1 addition & 0 deletions docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ These modules contain the objects to e.g. read parameters from files or build pa
:maxdepth: 1

pcsaft
epcsaft
gc_pcsaft
peng_robinson
pets
Expand Down