BUG: Added missing/non-committed file

This commit is contained in:
andy
2013-06-04 09:50:21 +01:00
parent dc60de6272
commit 1ad81c9b19

View File

@ -0,0 +1,8 @@
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]);
}