FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

UEqn.H

Go to the documentation of this file.
00001     fvVectorMatrix UEqn
00002     (
00003         fvm::ddt(U)
00004       + fvm::div(phi, U)
00005       + turbulence->divDevReff(U)
00006     );
00007 
00008     if (ocorr != nOuterCorr-1)
00009     {
00010         UEqn.relax();
00011     }
00012 
00013     if (momentumPredictor)
00014     {
00015         solve(UEqn == -fvc::grad(p));
00016     }
00017 
00018 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines