Bugfix: order of operators for dot-product
This commit is contained in:
parent
c2e734d4be
commit
fc2276c2a9
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
|||
U = rUA*UEqn.H();
|
||||
|
||||
// Calculate phi for boundary conditions
|
||||
phi = rhof*fvc::interpolate(U) & mesh.Sf();
|
||||
phi = rhof*(fvc::interpolate(U) & mesh.Sf());
|
||||
|
||||
surfaceScalarField phid2 = rhoReff/rhof*phi;
|
||||
|
||||
|
|
Reference in a new issue