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

yPlus query

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 28, 2009, 05:02
Default yPlus query
  #1
New Member
 
varun
Join Date: Jul 2009
Location: Braunschweig, Germany
Posts: 28
Rep Power: 16
vw.cfd is on a distinguished road
Hi,

I have a basic query regarding the yPlus value and the associated(or appropriate) turbulence model, I wish to use the k-omega+SST model. What should be the appropriate yPlus value for good functioning of this model on openFoam. I have read in several threads that for K-epsilon model the yPlus should be in the log layer (y+>10). Is it the same case with komega+SST or should it be in the laminar sub-layer?

thnX!!
vw.cfd is offline   Reply With Quote

Old   October 28, 2009, 07:06
Default
  #2
Member
 
Simon Lapointe
Join Date: May 2009
Location: Québec, Qc, Canada
Posts: 33
Rep Power: 16
Simon Lapointe is on a distinguished road
The kOmegaSST model in OpenFOAM uses wall functions and thus requires a high y+ value. However, in 1.5-dev there is a kOmegaSST_LowRe which, I think, can resolve the near-wall region and should be used with a small y+.

Hope this helps
Simon Lapointe is offline   Reply With Quote

Old   October 28, 2009, 09:20
Default
  #3
New Member
 
varun
Join Date: Jul 2009
Location: Braunschweig, Germany
Posts: 28
Rep Power: 16
vw.cfd is on a distinguished road
Hi Simon,

I will try this out.

ThanX!!

Last edited by vw.cfd; October 28, 2009 at 09:41.
vw.cfd is offline   Reply With Quote

Old   October 29, 2009, 07:53
Default
  #4
New Member
 
varun
Join Date: Jul 2009
Location: Braunschweig, Germany
Posts: 28
Rep Power: 16
vw.cfd is on a distinguished road
Hi Simon,

I tried your suggestion on openfoam 1.5-dev,

I obtain this error message:

Unknown RASModel type kOmegaSST_LowRe
Valid RASModel types are :
15
(
NonlinearKEShih
kEpsilon
realizableKE
LienCubicKELowRe
LienLeschzinerLowRe
LaunderSharmaKE
laminar
SpalartAllmaras
LienCubicKE
LamBremhorstKE
RNGkEpsilon
LRR
QZeta
LaunderGibsonRSTM
kOmegaSST
)

Which turbulence model did you mean exactly?

ThnX!!
vw.cfd is offline   Reply With Quote

Old   October 29, 2009, 09:24
Default
  #5
Member
 
Simon Lapointe
Join Date: May 2009
Location: Québec, Qc, Canada
Posts: 33
Rep Power: 16
Simon Lapointe is on a distinguished road
Hi varun,

The kOmegaSST_LowRe model has been added recently to OpenFOAM-1.5-dev so you need to update your OpenFOAM (or download the model source code) to get it.
Simon Lapointe is offline   Reply With Quote

Old   February 18, 2010, 09:08
Default
  #6
Senior Member
 
Claus Meister
Join Date: Aug 2009
Location: Wiesbaden, Germany
Posts: 241
Rep Power: 17
idrama is on a distinguished road
Hey, foamers!

I am already using OpenFOAM 1.6. The mentioned mole does not exist.

Cheers
idrama is offline   Reply With Quote

Old   February 22, 2010, 05:44
Default
  #7
Senior Member
 
MadsR's Avatar
 
Mads Reck
Join Date: Aug 2009
Location: Copenhagen, Denmark
Posts: 177
Rep Power: 17
MadsR is on a distinguished road
bump - any new info on this?
__________________
Online free airfoil-mesher for OpenFOAM here
MadsR is offline   Reply With Quote

Old   February 23, 2010, 03:25
Default
  #8
New Member
 
Tammo Wenterodt
Join Date: Mar 2009
Posts: 24
Rep Power: 17
wenterodt is on a distinguished road
The source of the kOmegaSST_lowRe model can be downloaded here:
http://openfoam-extend.svn.sourcefor.../?pathrev=1415
it does not directly compile with 1.6, though only little changes neccessary:

at kOmegaSST_LowRe/kOmegaSST_LowRe.C line 171 add
Code:
kappa_
     (
         dimensioned<scalar>::lookupOrAddToDict
       (
           "kappa",
            coeffDict_,
           0.41
       )
     ),
and at line 313 add
Code:
kappa_.readIfPresent(coeffDict_);
in kOmegaSST_LowRe/kOmegaSST_LowRe.H add at line 131
Code:
dimensionedScalar kappa_;
I have used it in 1.6 a lot so far in 1d and 2d problems obtaining very good results (pipes, channels, plate heat exchangers, tube bundle heat exchangers).
BUT I face major problems in 3d geometries, where the model results in distinct pressure fronts in the domain, which then make the calculation crash.

I'd be glad for any ideas on that!

//Tammo

Last edited by wenterodt; February 23, 2010 at 03:52.
wenterodt is offline   Reply With Quote

Old   February 23, 2010, 06:15
Default
  #9
Senior Member
 
Claus Meister
Join Date: Aug 2009
Location: Wiesbaden, Germany
Posts: 241
Rep Power: 17
idrama is on a distinguished road
Hello wenterodt,

could you please post the procedure to install it in OpenFOAM-1.6?

Cheers,

Claus
idrama is offline   Reply With Quote

Old   February 23, 2010, 07:19
Default
  #10
New Member
 
Tammo Wenterodt
Join Date: Mar 2009
Posts: 24
Rep Power: 17
wenterodt is on a distinguished road
Basically just write Make/files and Make/options, compile (wmake libso) and add a line to the controlDict

The procedure is pretty much the same as described here:
http://www.tfd.chalmers.se/~hani/kurser/OS_CFD_2008/implementTurbulenceModel.pdf

// Tammo
wenterodt is offline   Reply With Quote

Old   March 3, 2010, 15:12
Default Wall function on LowRe model
  #11
New Member
 
Join Date: Feb 2010
Posts: 28
Rep Power: 16
Pekka is on a distinguished road
Hello Tammo,


have you any experience in nut boundary conditions on kOmegaSST_LowRe RAS model. It is zeroGradient or some nut wall function?


Thanks.
Pekka is offline   Reply With Quote

Old   March 10, 2010, 14:39
Default
  #12
Senior Member
 
Claus Meister
Join Date: Aug 2009
Location: Wiesbaden, Germany
Posts: 241
Rep Power: 17
idrama is on a distinguished road
Hey Foamers!

I do not understand the purpose of yPlus. I found that tool yPlusRAS and executed. I got this values, but what should I do with these? I have been watching in many books.

Cheers,

Claus
idrama is offline   Reply With Quote

Reply

Tags
turbulence model, yplus

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
How to choose the YPLUS value in two-phase flows? Niewlande FLUENT 3 December 7, 2015 15:43
Who stole my Yplus? Chebeba CFX 4 March 23, 2006 04:18
YPlus value -- CFX 5.7 NeedHelp CFX 3 December 7, 2004 20:46
X-Y plot of Yplus in Fluent 5.3 Luo FLUENT 24 April 11, 2000 06:07
heat transfer coefficients with "bad" yplus Andrew Main CFD Forum 4 April 8, 1999 04:43


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