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
update CHANGELOG, Cargo.toml, README
  • Loading branch information
prehner committed Apr 18, 2024
commit e45db99e25ba949923c73f3d3603dbf2fbfefed6
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added SAFT-VR Mie equation of state.[#237](https://github.com/feos-org/feos/pull/237)

### Added
- Added ePC-SAFT equation of state. [#229](https://github.com/feos-org/feos/pull/229)

### Changed
- Updated model implementations to account for the removal of trait objects for Helmholtz energy contributions and the de Broglie in `feos-core`. [#226](https://github.com/feos-org/feos/pull/226)
- Changed Helmholtz energy functions in `PcSaft` contributions so that the temperature-dependent diameter is re-used across different contributions. [#226](https://github.com/feos-org/feos/pull/226)
Expand Down
14 changes: 3 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
[package]
name = "feos"
version = "0.6.1"
authors = [
"Gernot Bauer <bauer@itt.uni-stuttgart.de>",
"Philipp Rehner <prehner@ethz.ch>",
]
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>", "Philipp Rehner <prehner@ethz.ch>"]
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
description = "FeOs - A framework for equations of state and classical density functional theory."
homepage = "https://github.com/feos-org"
repository = "https://github.com/feos-org/feos"
keywords = [
"physics",
"thermodynamics",
"equations_of_state",
"phase_equilibria",
]
keywords = ["physics", "thermodynamics", "equations_of_state", "phase_equilibria"]
categories = ["science"]

[package.metadata.docs.rs]
features = ["all_models", "rayon"]
rustdoc-args = ["--html-in-header", "./docs-header.html"]
rustdoc-args = [ "--html-in-header", "./docs-header.html" ]

[workspace]
members = ["feos-core", "feos-dft", "feos-derive"]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ The following models are currently published as part of the `FeOs` framework
|name|description|eos|dft|
|-|-|:-:|:-:|
|`pcsaft`|perturbed-chain (polar) statistical associating fluid theory|✓|✓|
|`epcsaft`|electrolyte PC-SAFT|✓||
|`gc-pcsaft`|(heterosegmented) group contribution PC-SAFT|✓|✓|
|`pets`|perturbed truncated and shifted Lennard-Jones mixtures|✓|✓|
|`uvtheory`|equation of state for Mie fluids and mixtures|✓||
Expand Down