mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
56 lines
1.5 KiB
C
56 lines
1.5 KiB
C
Info<< "Constructing face momentum equations" << endl;
|
|
|
|
MRF.correctBoundaryVelocity(U1);
|
|
MRF.correctBoundaryVelocity(U2);
|
|
MRF.correctBoundaryVelocity(U);
|
|
Info<< "Constructing face momentum equations" << endl;
|
|
|
|
fvVectorMatrix U1Eqn(U1, rho1.dimensions()*U1.dimensions()*dimVol/dimTime);
|
|
fvVectorMatrix U2Eqn(U2, rho2.dimensions()*U2.dimensions()*dimVol/dimTime);
|
|
|
|
{
|
|
volScalarField Vm(fluid.Vm());
|
|
|
|
fvVectorMatrix UgradU1
|
|
(
|
|
fvm::div(phi1, U1) - fvm::Sp(fvc::div(phi1), U1)
|
|
+ MRF.DDt(U1)
|
|
);
|
|
|
|
fvVectorMatrix UgradU2
|
|
(
|
|
fvm::div(phi2, U2) - fvm::Sp(fvc::div(phi2), U2)
|
|
+ MRF.DDt(U2)
|
|
);
|
|
|
|
{
|
|
U1Eqn =
|
|
(
|
|
fvm::div(alphaRhoPhi1, U1) - fvm::Sp(fvc::div(alphaRhoPhi1), U1)
|
|
+ MRF.DDt(alpha1*rho1, U1)
|
|
+ phase1.turbulence().divDevRhoReff(U1)
|
|
+ Vm*(UgradU1 - (UgradU2 & U2))
|
|
- fvOptions(alpha1, rho1, U1)
|
|
);
|
|
U1Eqn.relax();
|
|
fvOptions.constrain(U1Eqn);
|
|
U1.correctBoundaryConditions();
|
|
fvOptions.correct(U1);
|
|
}
|
|
|
|
{
|
|
U2Eqn =
|
|
(
|
|
fvm::div(alphaRhoPhi2, U2) - fvm::Sp(fvc::div(alphaRhoPhi2), U2)
|
|
+ MRF.DDt(alpha2*rho2, U2)
|
|
+ phase2.turbulence().divDevRhoReff(U2)
|
|
+ Vm*(UgradU2 - (UgradU1 & U1))
|
|
- fvOptions(alpha2, rho2, U2)
|
|
);
|
|
U2Eqn.relax();
|
|
fvOptions.constrain(U2Eqn);
|
|
U2.correctBoundaryConditions();
|
|
fvOptions.correct(U2);
|
|
}
|
|
}
|