mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
[Thermo] Fix cv calculation in RedlichKisterVPSSTP
Partially resolves #1320
This commit is contained in:
parent
c563597bc1
commit
0d441325f8
@ -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
|
||||||
|
@ -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}}
|
||||||
|
Loading…
Reference in New Issue
Block a user