mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
twoPhaseEulerFoam: Added fvOptions correction to the phase velocities after matrix construction
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user