CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

Initial values and boundary condition for LES simulation of a box

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 30, 2018, 12:20
Default Initial values and boundary condition for LES simulation of a box
  #1
New Member
 
Saddam Hijazi
Join Date: May 2016
Posts: 17
Rep Power: 9
SaddamH is on a distinguished road
Hello everybody,


I am trying to simulate a case using LES turbulent approach, my case is in 3D where I have a box placed inside a rectangular parallelepiped on its bottom surface. Each side of the box is 0.1 meter length and the parallelepiped is 2 X 1 X 0.5 meter. I am using dynamicKEqn as LES model and I want to simulate the case with initial velocity field being (1 0 0) at the inlet, the box is placed 0.2 meter far from the inlet leaving 1.8 meter for the wake region.


I checked online for the boundary conditions that I should use and I found that I should use fixedvalue for inlet and inletoutlet for the outlet, but I have doubt about the values and the type of conditions I should use for nut and k.


Here are the nut and k in the zero folder
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0.000384;

boundaryField
{
inlet
{
type fixedValue;
value $internalField;
}

outlet
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}
sides
{
type fixedValue;
value uniform 0;
}
top
{
type zeroGradient;
}

bottom
{
type zeroGradient;
}

box
{
type fixedValue;
value uniform 0;
}
}

// ************************************************** *********************** //










FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -1 0 0 0 0];

internalField uniform 0.001;

boundaryField
{
inlet
{
type fixedValue;
value $internalField;
}

outlet
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}
sides
{
type fixedValue;
value uniform 0;
}
top
{
type zeroGradient;
}
bottom
{
type zeroGradient;
}
box
{
type nutkWallFunction;
value uniform 0;
}
}


// ************************************************** *********************** //


The physical viscosity is 10-5 and so Re = 10^4



I am particularly confused about the values of nut and k, I computed the value of k using the indications mentioned in this page https://www.cfd-online.com/Wiki/Turb...ary_conditions


where I supposed that Re_dh is just the same as Re (meaning that I supposed dh to be d the length of any side of the box)
second thing what about the use of the wall function for nut is it ok to have zero value on the box ?


Note that my mesh is coarse but once I verify the correctness of the boundary and initial setting I will run the same case on 8 times more cells mesh but on the cluster as my laptop does not afford running it.


Thank you very much for your help.
SaddamH is offline   Reply With Quote

Old   July 31, 2018, 02:21
Default
  #2
Senior Member
 
Santiago Lopez Castano
Join Date: Nov 2012
Posts: 354
Rep Power: 15
Santiago is on a distinguished road
Quote:
Originally Posted by SaddamH View Post
Hello everybody,


I am trying to simulate a case using LES turbulent approach, my case is in 3D where I have a box placed inside a rectangular parallelepiped on its bottom surface. Each side of the box is 0.1 meter length and the parallelepiped is 2 X 1 X 0.5 meter. I am using dynamicKEqn as LES model and I want to simulate the case with initial velocity field being (1 0 0) at the inlet, the box is placed 0.2 meter far from the inlet leaving 1.8 meter for the wake region.


I checked online for the boundary conditions that I should use and I found that I should use fixedvalue for inlet and inletoutlet for the outlet, but I have doubt about the values and the type of conditions I should use for nut and k.


Here are the nut and k in the zero folder
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0.000384;

boundaryField
{
inlet
{
type fixedValue;
value $internalField;
}

outlet
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}
sides
{
type fixedValue;
value uniform 0;
}
top
{
type zeroGradient;
}

bottom
{
type zeroGradient;
}

box
{
type fixedValue;
value uniform 0;
}
}

// ************************************************** *********************** //










FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 2 -1 0 0 0 0];

internalField uniform 0.001;

boundaryField
{
inlet
{
type fixedValue;
value $internalField;
}

outlet
{
type inletOutlet;
inletValue $internalField;
value $internalField;
}
sides
{
type fixedValue;
value uniform 0;
}
top
{
type zeroGradient;
}
bottom
{
type zeroGradient;
}
box
{
type nutkWallFunction;
value uniform 0;
}
}


// ************************************************** *********************** //


The physical viscosity is 10-5 and so Re = 10^4



I am particularly confused about the values of nut and k, I computed the value of k using the indications mentioned in this page https://www.cfd-online.com/Wiki/Turb...ary_conditions


where I supposed that Re_dh is just the same as Re (meaning that I supposed dh to be d the length of any side of the box)
second thing what about the use of the wall function for nut is it ok to have zero value on the box ?


Note that my mesh is coarse but once I verify the correctness of the boundary and initial setting I will run the same case on 8 times more cells mesh but on the cluster as my laptop does not afford running it.


Thank you very much for your help.
Kappa represents the subgrid scale turbulent kinetic energy. The instructions you followed are for setting k when you model the whole energy spectrum, so in principle is not correct. Besides, you are setting a uniform inlet, thus superposing subgrid "turbulence" to a laminar uniform flow seems counterintuitive.

Setting k for the inlet depends entirely on how you produce your boundary data. For instance, if you map your inlet from DNS data then k is zero at the inlet. Instead, if the data you map comes from LES then you should be able also to map the k sgs to the inlet as well.

Advise: much of you know for turbulence in RANS is useless for LES, except if you are using hybrid methods.
Santiago is offline   Reply With Quote

Reply

Tags
boundary condition, initial condition, les, turbulence, turbulent


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
transsonic nozzle with rhoSimpleFoam Unseen OpenFOAM Running, Solving & CFD 8 July 1, 2022 06:54
HeatSource BC to the whole region in chtMultiRegionHeater xsa OpenFOAM Running, Solving & CFD 3 November 7, 2016 05:07
Micro Scale Pore, icoFoam gooya_kabir OpenFOAM Running, Solving & CFD 2 November 2, 2013 13:58
Error finding variable "THERMX" sunilpatil CFX 8 April 26, 2013 07:00
RPM in Wind Turbine Pankaj CFX 9 November 23, 2009 04:05


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