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

nutWallFunction questions

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By chb

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 27, 2009, 07:15
Default nutWallFunction questions
  #1
Senior Member
 
Anonymous
Join Date: Mar 2009
Posts: 110
Rep Power: 17
madad2005 is on a distinguished road
I'm investigating the wall function approaches used in OpenFOAM. Epsilon and omega wall functions were fairly straight-forward in the end. However, I am looking at nutWallFunction and I'm at a loss as to why nut at the wall is defined as so:

nutw[faceI] = nuw[faceI]*(yPlus*kappa_/log(E_*yPlus) - 1.0); //for y+>11

Why not use the values the computed values of k, epsilon, or omega?
madad2005 is offline   Reply With Quote

Old   November 29, 2009, 03:51
Default
  #2
Senior Member
 
Mark Olesen
Join Date: Mar 2009
Location: https://olesenm.github.io/
Posts: 1,685
Rep Power: 40
olesen has a spectacular aura aboutolesen has a spectacular aura about
Quote:
Originally Posted by madad2005 View Post
nutw[faceI] = nuw[faceI]*(yPlus*kappa_/log(E_*yPlus) - 1.0); //for y+>11

Why not use the values the computed values of k, epsilon, or omega?
I'm confused - do you mean not using any wall functions at all?
olesen is offline   Reply With Quote

Old   November 29, 2009, 14:03
Default
  #3
Senior Member
 
Anonymous
Join Date: Mar 2009
Posts: 110
Rep Power: 17
madad2005 is on a distinguished road
Sorry to have confused you; I'll elaborate more. In the k-epsilon and k-omega models, the very last thing they do is compute nut:

//from RealizableKE
// Re-calculate viscosity
nut_ = rCmu(gradU, S2, magS)*sqr(k_)/epsilon_; // (1) nut = Cmu*k/omega
nut_.correctBoundaryConditions();

nut is computed as I'd expected here. Why not use the same equation in nutWallFunction to compute the value at the boundary, as you have k, omega, and epsilon already computed at the boundary face? Is it because you require a general expression for application to all turbulence models?

The reason I've asked is because I'm not particularly conversant in wall functions and I wasn't expecting a different equation for nutWallFunction.
madad2005 is offline   Reply With Quote

Old   November 30, 2009, 04:09
Default
  #4
chb
New Member
 
CHB
Join Date: Oct 2009
Posts: 3
Rep Power: 16
chb is on a distinguished road
  • At the walls
    nutw[faceI] = nuw[faceI]*(yPlus*kappa_/log(E_*yPlus) - 1.0);
    is used to apply the wall shear stress
    tau_wall = rho * (nu + nut) * du/dy
    according to the log law.
  • For the rest of the flow field
    nut_ = Cmu*sqr(k_)/epsilon_;
    is used to model turbulence effects.
fumiya likes this.
chb is offline   Reply With Quote

Old   November 30, 2009, 05:36
Default
  #5
Senior Member
 
Anonymous
Join Date: Mar 2009
Posts: 110
Rep Power: 17
madad2005 is on a distinguished road
Thanks, Christof.

"At the walls
nutw[faceI] = nuw[faceI]*(yPlus*kappa_/log(E_*yPlus) - 1.0);
is used to apply the wall shear stress
tau_wall = rho * (nu + nut) * du/dy
according to the log law. "

Ok, if that's the case, then this is a different form from what I've read other people doing in the past. Thank you, anyway, for helping clear that up.
madad2005 is offline   Reply With Quote

Old   July 28, 2010, 09:11
Default
  #6
Member
 
83_Ale_83's Avatar
 
Alessandro
Join Date: Nov 2009
Posts: 67
Rep Power: 16
83_Ale_83 is on a distinguished road
Hi to everybody,
i was looking for the "origin" of this nut equation, It's from:

nut=nu*[(Y+/U+)-1] and U+=1/k*ln(E*Y+) ???

I don't know the origin of the first equation, I have read Pope-Turbulent Flows but in that book nut=k*y*u_t

Thank in advance
Alessandro
__________________

83_Ale_83 is offline   Reply With Quote

Old   August 11, 2010, 03:49
Default
  #7
Member
 
83_Ale_83's Avatar
 
Alessandro
Join Date: Nov 2009
Posts: 67
Rep Power: 16
83_Ale_83 is on a distinguished road
Quote:
Originally Posted by 83_Ale_83 View Post
Hi to everybody,
i was looking for the "origin" of this nut equation, It's from:

nut=nu*[(Y+/U+)-1] and U+=1/k*ln(E*Y+) ???

I don't know the origin of the first equation, I have read Pope-Turbulent Flows but in that book nut=k*y*u_t

Thank in advance
Alessandro
Anyone ?
thanks
__________________

83_Ale_83 is offline   Reply With Quote

Old   October 13, 2010, 05:08
Default
  #8
Member
 
83_Ale_83's Avatar
 
Alessandro
Join Date: Nov 2009
Posts: 67
Rep Power: 16
83_Ale_83 is on a distinguished road
Quote:
Originally Posted by 83_Ale_83 View Post
Anyone ?
thanks
Up again please
__________________

83_Ale_83 is offline   Reply With Quote

Old   October 28, 2011, 05:30
Default
  #9
Senior Member
 
Anne Gerdes
Join Date: Aug 2010
Location: Hamburg
Posts: 168
Rep Power: 15
Anne Lincke is on a distinguished road
Hey Alessandro,

in this thread you might find help:

http://www.cfd-online.com/Forums/ope...-function.html
Anne Lincke is offline   Reply With Quote

Old   October 28, 2011, 06:36
Default
  #10
Senior Member
 
Anne Gerdes
Join Date: Aug 2010
Location: Hamburg
Posts: 168
Rep Power: 15
Anne Lincke is on a distinguished road
Quote:
Originally Posted by madad2005 View Post
Thanks, Christof.

"At the walls
nutw[faceI] = nuw[faceI]*(yPlus*kappa_/log(E_*yPlus) - 1.0);
is used to apply the wall shear stress
tau_wall = rho * (nu + nut) * du/dy
according to the log law. "

Ok, if that's the case, then this is a different form from what I've read other people doing in the past. Thank you, anyway, for helping clear that up.

Dear madad,

can you please explain how the nut computed by the nutWallFunction applies the wall hear stress according to the log law?
Am I right that there is no explicit near wall treatment for the velocity and the wall function is only enabled via omega, k and nut?

Thank you for an answer in advance.
Anne
Anne Lincke is offline   Reply With Quote

Reply


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
novice star ccm+ questions apc3161 STAR-CCM+ 2 August 25, 2009 10:15
So many questions in DPM & UDF - Help! URGENT! Prashanth FLUENT 0 March 3, 2009 22:26
Few questions phi FLUENT 0 March 4, 2005 09:23
Questions about CFD Lebeau alexandre Main CFD Forum 1 April 6, 1999 14:23
turbulence modeling questions llowen Main CFD Forum 3 September 11, 1998 04:24


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