Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit 867907f

Browse files
authored
Export Eigen to be able to calculate critical points for pure components and binary mixtures generically. (#4)
1 parent de09f80 commit 867907f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.2] - 2025-05-28
10+
### Fixed
11+
- Import `Eigen` to be able to calculate critical points for pure components and binary mixtures generically. [#4](https://github.com/feos-org/feos-ad/pull/4)
12+
913
## [0.2.1] - 2025-04-14
1014
### Added
1115
- Added `StateAD::molar_isochoric_heat_capacity` and `StateAD::molar_isobaric_heat_capacity`. [#3](https://github.com/feos-org/feos-ad/pull/3)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-ad"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Philipp Rehner <prehner@ethz.ch"]
55
edition = "2021"
66
readme = "README.md"

src/core/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ mod state;
1010
mod total;
1111
pub use phase_equilibria::PhaseEquilibriumAD;
1212
pub use residual::{ParametersAD, ResidualHelmholtzEnergy};
13-
pub use state::StateAD;
13+
pub use state::{Eigen, StateAD};
1414
pub use total::{EquationOfStateAD, IdealGasAD, TotalHelmholtzEnergy};
1515

1616
/// Used internally to implement the [Residual] and [IdealGas] traits from FeOs.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pub mod eos;
22

33
mod core;
44
pub use core::{
5-
EquationOfStateAD, HelmholtzEnergyWrapper, IdealGasAD, NamedParameters, ParametersAD,
5+
Eigen, EquationOfStateAD, HelmholtzEnergyWrapper, IdealGasAD, NamedParameters, ParametersAD,
66
PhaseEquilibriumAD, ResidualHelmholtzEnergy, StateAD, TotalHelmholtzEnergy,
77
};
88

0 commit comments

Comments
 (0)