Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Automatically detect VLLEs in `BinaryPhaseDiagram`. [#341](https://github.com/feos-org/feos/pull/341)
- Correct missing minus sign for `isothermal_compressibility`. [#342](https://github.com/feos-org/feos/pull/342)

## [0.9.3] - 2026-01-26
### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/feos-core/src/state/residual_properties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ where

/// Isothermal compressibility: $\kappa_T=-\frac{1}{V}\left(\frac{\partial V}{\partial p}\right)_{T,N_i}$
pub fn isothermal_compressibility(&self) -> InvP<D> {
(self.dp_dv(Contributions::Total) * self.volume).inv()
-(self.dp_dv(Contributions::Total) * self.volume).inv()
}

// entropy derivatives
Expand Down