Corrected for SP.

This commit is contained in:
henry
2008-07-10 15:53:10 +01:00
parent 8f63c498bc
commit a86b1ce4a3
3 changed files with 6 additions and 3 deletions

View File

@ -28,7 +28,7 @@
), ),
// Divergence term is handled explicitly to be // Divergence term is handled explicitly to be
// consistent with the explicit transport solution // consistent with the explicit transport solution
divU*min(alpha1, 1.0) divU*min(alpha1, scalar(1))
); );
forAll(dgdt, celli) forAll(dgdt, celli)

View File

@ -140,7 +140,7 @@
); );
volScalarField dgdt = volScalarField dgdt =
pos(alpha2)*fvc::div(phi)/max(alpha2, 0.0001); pos(alpha2)*fvc::div(phi)/max(alpha2, scalar(0.0001));
// Construct interface from alpha1 distribution // Construct interface from alpha1 distribution
interfaceProperties interface(alpha1, U, twoPhaseProperties); interfaceProperties interface(alpha1, U, twoPhaseProperties);

View File

@ -40,7 +40,10 @@
solve solve
( (
(max(alpha1, 0.0)*(psi1/rho1) + max(alpha2, 0.0)*(psi2/rho2)) (
max(alpha1, scalar(0))*(psi1/rho1)
+ max(alpha2, scalar(0))*(psi2/rho2)
)
*pdEqnComp() *pdEqnComp()
+ pdEqnIncomp + pdEqnIncomp
); );