CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   Does OpenFOAM have compressible LES capability? (https://www.cfd-online.com/Forums/openfoam-solving/133911-does-openfoam-have-compressible-les-capability.html)

CoolHand April 22, 2014 11:17

Does OpenFOAM have compressible LES capability?
 
I was going through the standard solvers and I didn't see a compressible LES solver. Does this mean OpenFOAM can't do compressible LES?

alexeym April 22, 2014 11:29

Hi,

I guess turbulence handling in compressible solvers are generic, i.e. this is a part of rhoCentralFoam/createFields.H:

Code:

Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::turbulenceModel> turbulence
(
    compressible::turbulenceModel::New
    (
        rho,
        U,
        phi,
        thermo
    )
);

and if you go to $FOAM_SRC/turbulenceModels/compressible/LES, you can find a list of compressible LES models.

CoolHand April 22, 2014 13:19

Ok I think I understand. I'm just starting to learn about LES so I thought I needed to find the proper solver first but I guess there's more than one correct answer.


All times are GMT -4. The time now is 19:32.