[Thermo] Fixed an error in MargulesVPSSTP::s_update_dlnActCoeff_dT

This error was introduced in r1968, but it was masked by an issue with the code
used to compare test results.
This commit is contained in:
Ray Speth 2013-04-24 21:47:45 +00:00
parent a01b112967
commit af55ec5557

View file

@ -515,7 +515,7 @@ void MargulesVPSSTP::s_update_dlnActCoeff_dT() const
dlnActCoeffdT_Scaled_[iA] += XB * g0g1XB;
dlnActCoeffdT_Scaled_[iB] += XA * g0g1XB + XAXB * g1;
d2lnActCoeffdT2_Scaled_[iA] -= mult * XB * g0g1XB;
d2lnActCoeffdT2_Scaled_[iB] -= mult * XA * g0g1XB + XAXB * g1;
d2lnActCoeffdT2_Scaled_[iB] -= mult * (XA * g0g1XB + XAXB * g1);
}
}