You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
### Added
9
9
- Added `EquationOfState.ideal_gas()` to initialize an equation of state that only consists of an ideal gas contribution. [#204](https://github.com/feos-org/feos/pull/204)
10
10
- Added `PureRecord`, `SegmentRecord`, `Identifier`, and `IdentifierOption` to `feos.ideal_gas`. [#205](https://github.com/feos-org/feos/pull/205)
11
+
- Added implementation of the Joback ideal gas model that was previously part of `feos-core`. [#204](https://github.com/feos-org/feos/pull/204)
12
+
- Added an implementation of the ideal gas heat capacity based on DIPPR equations. [#204](https://github.com/feos-org/feos/pull/204)
13
+
14
+
### Changed
15
+
- Split `feos.ideal_gas` into `feos.joback` and `feos.dippr`. [#204](https://github.com/feos-org/feos/pull/204)
11
16
12
17
## [0.5.1] - 2023-11-23
13
18
- Python only: Release the changes introduced in `feos-core` 0.5.1.
Copy file name to clipboardExpand all lines: feos-core/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
## Unreleased
8
8
### Added
9
9
- Added `EquationOfState::ideal_gas` to initialize an equation of state that only consists of an ideal gas contribution. [#204](https://github.com/feos-org/feos/pull/204)
10
+
- Added `NoBinaryModelRecord` for models that do not use binary interaction parameters. [#211](https://github.com/feos-org/feos/pull/211)
10
11
11
12
### Changed
12
13
- Made members of `JobackRecord` public. [#206](https://github.com/feos-org/feos/pull/206)
13
14
15
+
### Removed
16
+
- Removed `JobackParameters` and `JobackBinaryRecord`. [#204](https://github.com/feos-org/feos/pull/204)
17
+
- Moved the remaining implementation of `Joback` to `feos`. [#204](https://github.com/feos-org/feos/pull/204)
18
+
14
19
## [0.5.1] - 2023-11-23
15
20
### Fixed
16
21
- Aligned how binary segment records are treated in Rust and Python. [#200](https://github.com/feos-org/feos/pull/200)
This directory contains files with parameters for different models for ideal gas heat capacities.
4
+
The files named according to the pattern `NameYear.json` correspond to published parameters. The corresponding publication is provided in the [`literature.bib`](literature.bib) file.
5
+
6
+
## DIPPR correlations
7
+
8
+
The parameters published in the DIPPR database itself are not publicly available. If you have a valid license, contact us to obtain a compatible input file.
9
+
10
+
|file|description|publication(s)|
11
+
|-|-|:-:|
12
+
[`poling2000.json`](poling2000.json) | correlation parameters published in "The Properties of Gases and Liquids, 5th edition" | |
13
+
14
+
## Joback group-contribution model
15
+
16
+
|file|description|publication(s)|
17
+
|-|-|:-:|
18
+
[`joback1987.json`](joback1987.json) | group parameters by Joback and Reid; adjusted to the groups of [Sauer et al.](../pcsaft/README.md) | [🔗](https://doi.org/10.1080/00986448708960487)|
0 commit comments