solveFluid.H 408 Bytes
Newer Older
shunbo's avatar
shunbo committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//  Pressure-velocity SIMPLE corrector

    {
        if (frozenFlow)
        {
            #include "EEqn.H"
        }
        else
        {
            p_rgh.storePrevIter();
            rho.storePrevIter();

            #include "UEqn.H"
            #include "EEqn.H"
            if (!coupled)
            {
                #include "pEqn.H"
                turb.correct();
            }
        }
    }