mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Removed blank-line
This commit is contained in:
@ -1,8 +0,0 @@
|
||||
FieldField<fvsPatchField, scalar>& phibf = phi.boundaryField();
|
||||
const FieldField<fvPatchField, vector>& Ubf = U.boundaryField();
|
||||
const FieldField<fvsPatchField, vector>& Sfbf = mesh.Sf().boundaryField();
|
||||
|
||||
forAll(phibf, patchI)
|
||||
{
|
||||
phibf[patchI] = (Ubf[patchI] & Sfbf[patchI]);
|
||||
}
|
||||
@ -1,5 +1,3 @@
|
||||
#include "resetPhiPatches.H"
|
||||
|
||||
volScalarField rAU(1.0/UEqn().A());
|
||||
surfaceScalarField rAUf("Dp", fvc::interpolate(rAU));
|
||||
|
||||
@ -22,6 +20,9 @@ adjustPhi(phiHbyA, U, p_gh);
|
||||
|
||||
fvOptions.relativeFlux(phiHbyA);
|
||||
|
||||
// Update the phi BCs from U before p BCs are updated
|
||||
phi.boundaryField() = mesh.Sf().boundaryField() & U.boundaryField();
|
||||
|
||||
// Non-orthogonal pressure corrector loop
|
||||
while (pimple.correctNonOrthogonal())
|
||||
{
|
||||
Reference in New Issue
Block a user