Skip to content
Snippets Groups Projects
Commit 5e7f18e7 authored by Thomas Fetzer's avatar Thomas Fetzer
Browse files

[pengrobinson]

removed unused variable warning

reviewed by nicolas


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15040 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent aba89a54
No related branches found
No related tags found
No related merge requests found
...@@ -118,8 +118,7 @@ public: ...@@ -118,8 +118,7 @@ public:
// Newton-Raphson method // Newton-Raphson method
for (int i = 0; i < 5; ++i) { for (int i = 0; i < 5; ++i) {
// calculate the molar densities // calculate the molar densities
int numSol = molarVolumes(Vm, params, T, pVap); assert(molarVolumes(Vm, params, T, pVap) == 3);
assert(numSol == 3);
Scalar f = fugacityDifference_(params, T, pVap, Vm[0], Vm[2]); Scalar f = fugacityDifference_(params, T, pVap, Vm[0], Vm[2]);
Scalar df_dp = Scalar df_dp =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment