release on 2012-10-23_10-36-40

This commit is contained in:
cfdem
2012-10-23 10:36:40 +02:00
parent 93fcd16a45
commit 5fb9e6cd84
79 changed files with 3796 additions and 153 deletions

View File

@ -93,7 +93,7 @@ int main(int argc, char *argv[])
fvVectorMatrix UEqn
(
fvm::ddt(U)
fvm::ddt(voidfraction,U)
+ fvm::div(phi, U)
+ turbulence->divDevReff(U)
);
@ -123,7 +123,7 @@ int main(int argc, char *argv[])
fvScalarMatrix pEqn
(
fvm::laplacian(rUA, p) == fvc::div(phi)
fvm::laplacian(rUA, p) == fvc::div(phi) + fvc::ddt(voidfraction)
);
pEqn.setReference(pRefCell, pRefValue);
@ -157,7 +157,8 @@ int main(int argc, char *argv[])
turbulence->correct();
Info << "particleCloud.calcVelocityCorrection() " << endl;
particleCloud.calcVelocityCorrection(p,U,phiIB);
volScalarField voidfractionNext=mesh.lookupObject<volScalarField>("voidfractionNext");
particleCloud.calcVelocityCorrection(p,U,phiIB,voidfractionNext);
runTime.write();