Porous solvers: corrected change to ddt

This commit is contained in:
Henry
2011-03-31 18:00:39 +01:00
parent 19c08b9e5a
commit a76953302a
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
tmp<fvVectorMatrix> UEqn
(
//pZones.ddt(rho, U)
fvc::ddt(rho, U)
fvm::ddt(rho, U)
+ fvm::div(phi, U)
+ turbulence->divDevRhoReff(U)
);

View File

@ -11,7 +11,7 @@
fvVectorMatrix UEqn
(
//pZones.ddt(rho, U)
fvc::ddt(rho, U)
fvm::ddt(rho, U)
+ fvm::div(rhoPhi, U)
- fvm::laplacian(muEff, U)
- (fvc::grad(U) & fvc::grad(muEff))