Skip to content
Snippets Groups Projects
Commit 061511e3 authored by Henry's avatar Henry
Browse files

compressibleTwoPhaseEulerFoam/pEqn.H: minor reformat

parent b971f925
Branches
Tags
No related merge requests found
......@@ -122,16 +122,22 @@
U1 = HbyA1
+ fvc::reconstruct
(
rAlphaAU1f*(g & mesh.Sf())
+ rAlphaAU1f*mSfGradp/fvc::interpolate(rho1)
rAlphaAU1f
*(
(g & mesh.Sf())
+ mSfGradp/fvc::interpolate(rho1)
)
);
U1.correctBoundaryConditions();
U2 = HbyA2
+ fvc::reconstruct
(
rAlphaAU2f*(g & mesh.Sf())
+ rAlphaAU2f*mSfGradp/fvc::interpolate(rho2)
rAlphaAU2f
*(
(g & mesh.Sf())
+ mSfGradp/fvc::interpolate(rho2)
)
);
U2.correctBoundaryConditions();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment