Skip to content
Snippets Groups Projects
Commit ea5da9a2 authored by mattijs's avatar mattijs
Browse files

Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev

parents 0ad764ba f45f87f2
Branches
Tags
No related merge requests found
......@@ -2,8 +2,8 @@
word scheme("div(phi,alpha)");
word schemer("div(phir,alpha)");
surfaceScalarField phic(phi);
surfaceScalarField phir(phia - phib);
surfaceScalarField phic("phic", phi);
surfaceScalarField phir("phir", phia - phib);
if (g0.value() > 0.0)
{
......@@ -41,7 +41,7 @@
alphaEqn.relax();
alphaEqn.solve();
# include "packingLimiter.H"
#include "packingLimiter.H"
beta = scalar(1) - alpha;
......
......@@ -40,7 +40,8 @@ bool Foam::adjustPhi
{
if (p.needReference())
{
p.boundaryField().updateCoeffs();
// p coefficients should not be updated here
// p.boundaryField().updateCoeffs();
scalar massIn = 0.0;
scalar fixedMassOut = 0.0;
......
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