|
[Sponsors] |
October 22, 2023, 19:07 |
kOmegaSSTSAS (LES-RANS)
|
#1 |
Member
Join Date: May 2016
Posts: 40
Rep Power: 10 |
Hi
I've been trying to use kOmegaSSTSAS in a wind engineering application. This is actually a great model since this is a hybrid LES-RANS turbulence model that applies RANS kOmegaSST near walls and LES for the rest of the domain where large eddies are of interest in particular in wind engineering. It appears there are no previous examples provided in the OpenFOAM library and my search through forums didn't end up with any case setup. The thing that puzzled me the most was this turbulence model is subclassed as LES in OpenFOAM (see 1 attached) but when going through the detail description is classified in RAS (see 2). So I struggled at first by setting the model under LES in constant/turbulenceproperties even for a simple model such as a box (see 3) against inlet flow to work. However, when I changed it to RAS it started working and I believe I can see the eddies are formed (see 4). However still in doubt if the settings are correct. Does anyone have experience with such a scaled hybrid model? Should kOmegaSSTSAS be under RAS?. I copy the turbulenceproperties below. /*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2206 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object turbulenceProperties; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // simulationType RAS; RAS { RASModel kOmegaSSTSAS; turbulence on; printCoeffs on; delta vanDriest; vanDriestCoeffs { delta cubeRootVol; cubeRootVolCoeffs { deltaCoeff 1; } smoothCoeffs { delta cubeRootVol; cubeRootVolCoeffs { deltaCoeff 1; } maxDeltaRatio 1.1; } Aplus 26; Cdelta 0.158; } } // ************************************************** *********************** // |
|
October 30, 2023, 14:16 |
|
#2 |
Senior Member
Saeed Jamshidi
Join Date: Aug 2019
Posts: 214
Rep Power: 8 |
If you are going to use kOmegaSSTSAS in the family of Scale Adaptive Simulation (SAS), you should follow as below:
Code:
simulationType SAS; SAS { This is a kind of turbulent model that I found, please check it. Code:
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2112 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object turbulenceProperties; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // simulationType LES; LES { LESModel kOmegaSSTIDDES; printCoeffs yes; turbulence yes; delta IDDESDelta; IDDESDeltaCoeffs { hmax maxDeltaxyzCubeRoot; maxDeltaxyzCubeRootCoeffs { } } } // ************************************************************************* // |
|
October 30, 2023, 17:39 |
|
#3 | |
Member
Join Date: May 2016
Posts: 40
Rep Power: 10 |
Quote:
so it appears the turbulent model types shall be either LES or RAS. I tried the LES as the type with kOmegaSSTSAS model it didn't proceed saying no such model in LES. So I changed it with RAS which appear working. The IDDES is a detached eddy simulation. Was just wondering about SAS in particular. Btw, I will try DES as you suggested if still was in doubt about using SAS which looks like it has inherent URANS characteristics rather than LES. Last edited by esma; October 30, 2023 at 20:24. |
||
October 31, 2023, 01:19 |
|
#4 |
Senior Member
Saeed Jamshidi
Join Date: Aug 2019
Posts: 214
Rep Power: 8 |
Dear esma, you were right!
Please look at: https://www.openfoam.com/documentati...urbulence.html k-omega-SST SAS is a class of LES model. |
|
May 27, 2024, 05:15 |
|
#5 |
New Member
Ali Berk Kahraman
Join Date: Dec 2015
Location: Braunschweig, Germany
Posts: 14
Rep Power: 10 |
Hi Esma,
Did it work out for you? I am thinking of trying SAS for my simulations, but there is a lack of information within openfoam framework. Could you share any insights if you have any? Best Regards, Ali |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Sajben Transonic Diffuser Benchmark: RANS is great, struggling with LES | CSMDakota | SU2 | 5 | October 11, 2023 05:08 |
particle-laden backward facing step (BFS) using DPMFoam: LES vs RANS | atul1018 | OpenFOAM Running, Solving & CFD | 8 | January 4, 2021 07:20 |
Worse accuracy in LES models than in RANS models | dferrando | OpenFOAM Running, Solving & CFD | 0 | August 30, 2017 05:56 |
Model Switch, RANS to LES? | jennap223 | STAR-CCM+ | 0 | July 7, 2015 12:30 |
Mapping RANS data onto an LES | christian | OpenFOAM Running, Solving & CFD | 0 | April 13, 2007 06:31 |