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
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
Fixed integration test
  • Loading branch information
g-bauer committed Apr 12, 2024
commit 658aec4eb35534e402b67e656ac6b9282bb3f9c3
6 changes: 3 additions & 3 deletions parameters/saftvrmie/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This directory contains files with parameters for the SAFT-VR Mie equation of st
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.

## Pure Substance Parameters
|file|model|publication|
|-|-|:-:|
[`lafitte2013.json`](lafitte2013.json) | Parameters reported in the original publication of Lafitte et al.| [🔗](https://doi.org/10.1063/1.4819786)

| file | model | publication |
| -------------------------------------- | ----------------------------------------------------------------- | :--------------------------------------------: |
| [`lafitte2013.json`](lafitte2013.json) | Parameters reported in the original publication of Lafitte et al. | [🔗](https://doi.org/10.1063/1.4819786) |
2 changes: 2 additions & 0 deletions tests/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
mod gc_pcsaft;
#[cfg(feature = "pcsaft")]
mod pcsaft;
#[cfg(feature = "saftvrmie")]
mod saftvrmie;
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub fn critical_data() -> HashMap<&'static str, (Temperature, Pressure, MassDens
}

#[test]
fn critical_data_pure() {
fn critical_properties_pure() {
let t0 = Some(500.0 * KELVIN);
critical_data().iter().for_each(|(name, data)| {
dbg!(name);
Expand Down
1 change: 1 addition & 0 deletions tests/saftvrmie/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mod critical_properties;