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

This commit is contained in:
mattijs
2011-02-14 14:56:12 +00:00
2 changed files with 5 additions and 4 deletions

View File

@ -2,8 +2,8 @@
word scheme("div(phi,alpha)"); word scheme("div(phi,alpha)");
word schemer("div(phir,alpha)"); word schemer("div(phir,alpha)");
surfaceScalarField phic(phi); surfaceScalarField phic("phic", phi);
surfaceScalarField phir(phia - phib); surfaceScalarField phir("phir", phia - phib);
if (g0.value() > 0.0) if (g0.value() > 0.0)
{ {

View File

@ -40,7 +40,8 @@ bool Foam::adjustPhi
{ {
if (p.needReference()) if (p.needReference())
{ {
p.boundaryField().updateCoeffs(); // p coefficients should not be updated here
// p.boundaryField().updateCoeffs();
scalar massIn = 0.0; scalar massIn = 0.0;
scalar fixedMassOut = 0.0; scalar fixedMassOut = 0.0;