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

Porous solvers: corrected change to ddt

parent 19c08b9e
Branches
Tags
No related merge requests found
......@@ -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)
);
......
......@@ -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))
......
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