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
3 changes: 3 additions & 0 deletions feos-core/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 `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)

### Changed
- Made members of `JobackRecord` public. [#206](https://github.com/feos-org/feos/pull/206)

## [0.5.1] - 2023-11-23
### Fixed
- Aligned how binary segment records are treated in Rust and Python. [#200](https://github.com/feos-org/feos/pull/200)
Expand Down
12 changes: 6 additions & 6 deletions feos-core/src/joback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ use std::sync::Arc;
/// parametrization for additional molecules in other publications.
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct JobackRecord {
a: f64,
b: f64,
c: f64,
d: f64,
e: f64,
pub a: f64,
pub b: f64,
pub c: f64,
pub d: f64,
pub e: f64,
}

impl JobackRecord {
Expand Down Expand Up @@ -71,7 +71,7 @@ pub struct JobackParameters {
c: Array1<f64>,
d: Array1<f64>,
e: Array1<f64>,
pure_records: Vec<PureRecord<JobackRecord>>,
pub pure_records: Vec<PureRecord<JobackRecord>>,
}

impl Parameter for JobackParameters {
Expand Down