[Thermo] Fix cv calculation in RedlichKisterVPSSTP

Partially resolves #1320
This commit is contained in:
Ray Speth 2023-03-03 20:51:32 -05:00 committed by Ray Speth
parent c563597bc1
commit 0d441325f8
2 changed files with 1 additions and 3 deletions

View File

@ -89,7 +89,7 @@ doublereal RedlichKisterVPSSTP::cp_mole() const
doublereal RedlichKisterVPSSTP::cv_mole() const doublereal RedlichKisterVPSSTP::cv_mole() const
{ {
return cp_mole() - GasConstant; return cp_mole();
} }
void RedlichKisterVPSSTP::getPartialMolarEnthalpies(doublereal* hbar) const void RedlichKisterVPSSTP::getPartialMolarEnthalpies(doublereal* hbar) const

View File

@ -321,8 +321,6 @@ Redlich-Kister:
setup: setup:
file: thermo-models.yaml file: thermo-models.yaml
phase: Redlich-Kister-LiC6 phase: Redlich-Kister-LiC6
known-failures:
cv_eq_.+: "Implementation of cv is incorrect. See GitHub Issue #1320"
states: states:
- {T: 300, P: 1 atm, X: {Li(C6): 0.85, V(C6): 0.15}} - {T: 300, P: 1 atm, X: {Li(C6): 0.85, V(C6): 0.15}}
- {T: 440, P: 1 atm, X: {Li(C6): 0.75, V(C6): 0.25}} - {T: 440, P: 1 atm, X: {Li(C6): 0.75, V(C6): 0.25}}