|
[Sponsors] |
K-OmegaSST boundary condtions for y+=1 Question |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 18, 2015, 04:59 |
K-OmegaSST boundary condtions for y+=1 Question
|
#1 |
Senior Member
CFD
Join Date: Nov 2010
Location: United States
Posts: 243
Rep Power: 17 |
Hello people,
I have been trying to use the kOmegaSST model implemented in OF 2.3.3, to simulate backward facing step. I have created three grids in order to do grid convergence study properly. However, I am a little bit confused about sitting boundary conditions for both k and omega properly. For instance, k and omega for examples in simpleFoam have been set up using wall function, and my feeling is that wall function does not work with y+=1 since it will not be resolving the boundary layer. I really would appreciate your help in this regard. Following are the boundary conditions for my turbulent parameters : k Code:
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0"; object k; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.015; boundaryField { front { type slip; } inlet { type fixedValue; value uniform 0.015; } top { type fixedValue;//kqRWallFunction; value uniform 1e-10;//0.015; } bottom { type fixedValue;//kqRWallFunction; value uniform 1e-10;//0.015; } back { type slip; } outlet { type zeroGradient; } } // ************************************************************************* // Code:
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0"; object omega; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 -1 0 0 0 0]; internalField uniform 4.1744; boundaryField { inlet { type fixedValue; value uniform 4.1744; } outlet { type zeroGradient; } top { type fixedValue;//omegaWallFunction; value uniform 1e+10;//4.1744; } bottom { type fixedValue;//omegaWallFunction; value uniform 1e+10;//4.1744; } front { type slip; } back { type slip; } } // ************************************************************************* // Code:
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; boundaryField { inlet { type zeroGradient; } outlet { type fixedValue; value uniform 0; } top { type zeroGradient; } bottom { type zeroGradient; } front { type slip; } back { type slip; } } // ************************************************************************* // Code:
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField uniform (0 0 0); boundaryField { inlet { type fixedValue; value uniform (1 0 0); } outlet { type zeroGradient; } top { type fixedValue; value uniform (0 0 0); } bottom { type fixedValue; value uniform (0 0 0); } front { type slip; } back { type slip; } } // ************************************************************************* // |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Radiation interface | hinca | CFX | 15 | January 26, 2014 18:11 |
An error has occurred in cfx5solve: | volo87 | CFX | 5 | June 14, 2013 18:44 |
Boundary Question | chris85 | ANSYS | 0 | November 17, 2011 16:29 |
Boundary Layer Question | scottneh | STAR-CCM+ | 3 | September 30, 2010 15:21 |
New topic on same subject - Flow around race car | Tudor Miron | CFX | 15 | April 2, 2004 07:18 |