[Thermo] Remove unused members of MargulesVPSSTP
This commit is contained in:
parent
44b24ca873
commit
4818c87344
2 changed files with 0 additions and 20 deletions
|
|
@ -444,10 +444,6 @@ protected:
|
|||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_HE_c_ij;
|
||||
|
||||
//! Enthalpy term for the quaternary mole fraction interaction of the
|
||||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_HE_d_ij;
|
||||
|
||||
//! Entropy term for the binary mole fraction interaction of the
|
||||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_SE_b_ij;
|
||||
|
|
@ -456,10 +452,6 @@ protected:
|
|||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_SE_c_ij;
|
||||
|
||||
//! Entropy term for the quaternary mole fraction interaction of the
|
||||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_SE_d_ij;
|
||||
|
||||
//! Enthalpy term for the binary mole fraction interaction of the
|
||||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_VHE_b_ij;
|
||||
|
|
@ -468,10 +460,6 @@ protected:
|
|||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_VHE_c_ij;
|
||||
|
||||
//! Enthalpy term for the quaternary mole fraction interaction of the
|
||||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_VHE_d_ij;
|
||||
|
||||
//! Entropy term for the binary mole fraction interaction of the
|
||||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_VSE_b_ij;
|
||||
|
|
@ -480,10 +468,6 @@ protected:
|
|||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_VSE_c_ij;
|
||||
|
||||
//! Entropy term for the quaternary mole fraction interaction of the
|
||||
//! excess Gibbs free energy expression
|
||||
mutable vector_fp m_VSE_d_ij;
|
||||
|
||||
//! vector of species indices representing species A in the interaction
|
||||
/*!
|
||||
* Each Margules excess Gibbs free energy term involves two species, A and
|
||||
|
|
|
|||
|
|
@ -473,16 +473,12 @@ void MargulesVPSSTP::resizeNumInteractions(const size_t num)
|
|||
numBinaryInteractions_ = num;
|
||||
m_HE_b_ij.resize(num, 0.0);
|
||||
m_HE_c_ij.resize(num, 0.0);
|
||||
m_HE_d_ij.resize(num, 0.0);
|
||||
m_SE_b_ij.resize(num, 0.0);
|
||||
m_SE_c_ij.resize(num, 0.0);
|
||||
m_SE_d_ij.resize(num, 0.0);
|
||||
m_VHE_b_ij.resize(num, 0.0);
|
||||
m_VHE_c_ij.resize(num, 0.0);
|
||||
m_VHE_d_ij.resize(num, 0.0);
|
||||
m_VSE_b_ij.resize(num, 0.0);
|
||||
m_VSE_c_ij.resize(num, 0.0);
|
||||
m_VSE_d_ij.resize(num, 0.0);
|
||||
|
||||
m_pSpecies_A_ij.resize(num, npos);
|
||||
m_pSpecies_B_ij.resize(num, npos);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue