twoPhaseEulerFoam: Added fvOptions correction to the phase velocities after matrix construction
This commit is contained in:
parent
da0b026305
commit
3b65f924ec
@ -31,6 +31,7 @@ volScalarField dragCoeff(fluid.dragCoeff());
|
||||
U1Eqn += fvm::Sp(dragCoeff, U1);
|
||||
fvOptions.constrain(U1Eqn);
|
||||
U1.correctBoundaryConditions();
|
||||
fvOptions.correct(U1);
|
||||
}
|
||||
|
||||
{
|
||||
@ -54,5 +55,6 @@ volScalarField dragCoeff(fluid.dragCoeff());
|
||||
U2Eqn += fvm::Sp(dragCoeff, U2);
|
||||
fvOptions.constrain(U2Eqn);
|
||||
U2.correctBoundaryConditions();
|
||||
fvOptions.correct(U2);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user