Skip to content
Snippets Groups Projects
Commit 482f8cee authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: localMin scheme - was using minMod instead of min

parent c537e4e8
Branches
Tags
No related merge requests found
......@@ -146,7 +146,7 @@ public:
forAll(vff, facei)
{
vff[facei] = minMod(vf[own[facei]], vf[nei[facei]]);
vff[facei] = min(vf[own[facei]], vf[nei[facei]]);
}
typename GeometricField<Type, fvsPatchField, surfaceMesh>::
......@@ -167,7 +167,7 @@ public:
forAll(pff, i)
{
pff[i] = minMod(pif[i], pnf[i]);
pff[i] = min(pif[i], pnf[i]);
}
}
else
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment