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

Slip & No Slip Conditions

Register Blogs Community New Posts Updated Threads Search

Like Tree50Likes
  • 4 Post By kurne
  • 15 Post By madad2005
  • 2 Post By kurne
  • 7 Post By madad2005
  • 19 Post By Tobi
  • 3 Post By Tobi

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 2, 2011, 06:15
Default Slip & No Slip Conditions
  #1
Member
 
Kurne
Join Date: Aug 2010
Location: Pune, INDIA
Posts: 88
Rep Power: 15
kurne is on a distinguished road
Dear All
Will anybody please tell me how to give the Slip and Noslip conditions at the wall.I am bit confused, whether slip means zeroGradient and Noslip means fixedGradient.
__________________
Simulation Is Determination Of Imagination Towards Approximation ®


Best Regards

Mubeen K Kurne
kurne is offline   Reply With Quote

Old   February 2, 2011, 06:25
Default
  #2
Senior Member
 
Anonymous
Join Date: Mar 2009
Posts: 110
Rep Power: 17
madad2005 is on a distinguished road
To implement no-slip, use:

type fixedValue;
value (0,0,0);

To implement slip, use:

type slip;
madad2005 is offline   Reply With Quote

Old   February 2, 2011, 06:39
Default
  #3
Member
 
Kurne
Join Date: Aug 2010
Location: Pune, INDIA
Posts: 88
Rep Power: 15
kurne is on a distinguished road
Dear madad2005
Thanks A lot for help.Will you please correct me
For No Slip conditions
1) For velocity
type fixedValue;
value uniform 0;
2) For pressure
type fixedValue;
value uniform 0;
For Slip Conditions
1) For velocity
type slip;

2) For pressure
type slip;

Thanks In Advance
BenGher and talhates like this.
__________________
Simulation Is Determination Of Imagination Towards Approximation ®


Best Regards

Mubeen K Kurne
kurne is offline   Reply With Quote

Old   February 2, 2011, 06:57
Default
  #4
Senior Member
 
Anonymous
Join Date: Mar 2009
Posts: 110
Rep Power: 17
madad2005 is on a distinguished road
Quote:
Originally Posted by kurne View Post
Dear madad2005
Thanks A lot for help.Will you please correct me
For

No Slip conditions
1) For velocity
type fixedValue;
value uniform (0,0,0);

2) For pressure
type zeroGradient;

For Slip Conditions
1) For velocity
type slip;

2) For pressure
type zeroGradient;

Thanks In Advance
See above. The BC requirement for pressure at the wall is normally zeroGradient. For velocity with a slip wall, there are two different conditions to be met normal to the wall and parallel to the wall, which I believe the slip boundary condition handles.
madad2005 is offline   Reply With Quote

Old   February 2, 2011, 07:05
Default
  #5
Member
 
Kurne
Join Date: Aug 2010
Location: Pune, INDIA
Posts: 88
Rep Power: 15
kurne is on a distinguished road
Dear mada2005
Thank you very much for guiding me.
Thanks Once Again.
__________________
Simulation Is Determination Of Imagination Towards Approximation ®


Best Regards

Mubeen K Kurne
kurne is offline   Reply With Quote

Old   November 20, 2013, 12:58
Default
  #6
New Member
 
Prashant Gupta
Join Date: Mar 2011
Location: Edinburgh
Posts: 29
Rep Power: 15
Prash is on a distinguished road
Quote:
Originally Posted by madad2005 View Post
See above. The BC requirement for pressure at the wall is normally zeroGradient. For velocity with a slip wall, there are two different conditions to be met normal to the wall and parallel to the wall, which I believe the slip boundary condition handles.
Hi all,
sorry to revive such an old post.
1. If I use full-slip for velocity, is there a need to specify pressure ? I guess it should calculate using the velocity at the wall ?

2. What if I use pressure bc as "slip" as well with Velocity bc as "slip" . It should be same as pressure bc "zeroGradient" ? I do not get same answers if I do this.
Prash is offline   Reply With Quote

Old   August 19, 2016, 15:35
Default
  #7
Sgs
New Member
 
S
Join Date: Jun 2016
Posts: 15
Rep Power: 9
Sgs is on a distinguished road
1. Yes, I think you generally need to specify zeroGradient, but you're right sometimes depending on the solver the 'boundary condition' for pressure is pre-determined by the velocity boundary conditions.
2. I think slip might be sort of a vector boundary condition (different equations for different vector components), and since pressure is a scalar maybe it took the first condition of slip (which could be the no penetration equation u1=0) as the pressure boundary condition instead of d u2 / dn = 0.
Sgs is offline   Reply With Quote

Old   August 24, 2016, 06:54
Default
  #8
Super Moderator
 
Tobi's Avatar
 
Tobias Holzmann
Join Date: Oct 2010
Location: Tussenhausen
Posts: 2,708
Blog Entries: 6
Rep Power: 51
Tobi has a spectacular aura aboutTobi has a spectacular aura aboutTobi has a spectacular aura about
Send a message via ICQ to Tobi Send a message via Skype™ to Tobi
An old topic, isn 't it Sgs?

noSlip is a vector class and hence it can not be used for the pressure. noSlip is similar to fixedValue uniform (0 0 0);

The slip boundary condition is a template class and therefore we can use any kind of fields. If we have a scalar it will set it to zeroGradient (I did not check this out, so it is just a logical consequence). For a vector field, the normal component should be zero (sliding). It would be a wall (no fluxes can pass) but there is finally no shearing based on the fact that we assume that there are no viscous effect.
__________________
Keep foaming,
Tobias Holzmann
Tobi is offline   Reply With Quote

Old   November 1, 2016, 03:19
Default
  #9
New Member
 
Chandler
Join Date: Nov 2016
Posts: 2
Rep Power: 0
chandler.b is on a distinguished road
Quote:
Originally Posted by madad2005 View Post
See above. The BC requirement for pressure at the wall is normally zeroGradient. For velocity with a slip wall, there are two different conditions to be met normal to the wall and parallel to the wall, which I believe the slip boundary condition handles.
Hello
I have a question.In flow with wall slip condition there is one less boundary condition in related to no-slip wall.Why it does not make any problem in terms of deficiency in one boundary condition?
TNX
chandler.b is offline   Reply With Quote

Old   September 8, 2018, 22:43
Default with wall function?
  #10
Member
 
fede32's Avatar
 
Federico Agustín Caccia
Join Date: Jun 2015
Location: Buenos Aires, Argentina
Posts: 55
Rep Power: 10
fede32 is on a distinguished road
Quote:
Originally Posted by Tobi View Post
An old topic, isn 't it Sgs?

noSlip is a vector class and hence it can not be used for the pressure. noSlip is similar to fixedValue uniform (0 0 0);

The slip boundary condition is a template class and therefore we can use any kind of fields. If we have a scalar it will set it to zeroGradient (I did not check this out, so it is just a logical consequence). For a vector field, the normal component should be zero (sliding). It would be a wall (no fluxes can pass) but there is finally no shearing based on the fact that we assume that there are no viscous effect.
Using a k epsilon model with k and e wall functions as BC, should I use slip or no-slip for U? I mean, i think I need no-sliip because I don't want to model the viscous layer, but I don't know how OF handle it internally.
fede32 is offline   Reply With Quote

Old   November 13, 2018, 01:55
Default
  #11
Super Moderator
 
Tobi's Avatar
 
Tobias Holzmann
Join Date: Oct 2010
Location: Tussenhausen
Posts: 2,708
Blog Entries: 6
Rep Power: 51
Tobi has a spectacular aura aboutTobi has a spectacular aura aboutTobi has a spectacular aura about
Send a message via ICQ to Tobi Send a message via Skype™ to Tobi
If you have a wall, the physical behavior is to fix the velocity there, and thus you should use noSlip. The usage of wall-functions does not require to resolve the viscous sublayer. That´s why they were generated. See the book of Wilcox or other literature such as Férziger & Peric.
ndtrong, fede32 and vivek05 like this.
__________________
Keep foaming,
Tobias Holzmann
Tobi is offline   Reply With Quote

Old   December 11, 2018, 18:44
Default Slip Boundary Condition (BC)-Temperature
  #12
Member
 
Mondal131211's Avatar
 
Mondal
Join Date: Sep 2018
Location: Canberra ACT
Posts: 68
Rep Power: 7
Mondal131211 is on a distinguished road
Quote:
Originally Posted by Tobi View Post
An old topic, isn 't it Sgs?

noSlip is a vector class and hence it can not be used for the pressure. noSlip is similar to fixedValue uniform (0 0 0);

The slip boundary condition is a template class and therefore we can use any kind of fields. If we have a scalar it will set it to zeroGradient (I did not check this out, so it is just a logical consequence). For a vector field, the normal component should be zero (sliding). It would be a wall (no fluxes can pass) but there is finally no shearing based on the fact that we assume that there are no viscous effect.
Hi Tobi,

Though it is an old message, I have a question about that. For a slip BC, I generally choose slip for velocity and zeroGradient for pressure. My question is that for a temperature dependent solver like buoyantBoussinesqSimpleFaom, what BC should I choose for temperature when the wall is considered to slip?

Cheers,
Razon
Mondal131211 is offline   Reply With Quote

Old   June 10, 2019, 04:38
Default noslip means noslip
  #13
Member
 
Tony Ladd
Join Date: Aug 2013
Posts: 48
Rep Power: 12
tladd is on a distinguished road
From our experience I would say noSlip is not always equivalent to a fixedValue patch. If the surface is moving noSlip imposes the local velocity of the surface on to the fluid next to the patch. This makes it easy to implement a rotating patch which has no fixedValue equivalent.
tladd is offline   Reply With Quote

Old   July 1, 2019, 07:54
Default
  #14
Member
 
idrees khan
Join Date: Jun 2019
Posts: 36
Rep Power: 6
idrees khan is on a distinguished road
Quote:
Originally Posted by madad2005 View Post
See above. The BC requirement for pressure at the wall is normally zeroGradient. For velocity with a slip wall, there are two different conditions to be met normal to the wall and parallel to the wall, which I believe the slip boundary condition handles.
could any one please help me that how to apply condition for pressure and velocity flow between two plates if the flow is due to the motion of upper plates.(OpenFoam)

2. how to use inletOutlet and outletInlet boundary conditions?can we use both at a time or once at a time?
3.using inletOutlet and outletInletin OpenFoam should we define in both files i.e U ,p
thanks in advance
idrees khan is offline   Reply With Quote

Old   July 1, 2019, 07:55
Thumbs up
  #15
Member
 
idrees khan
Join Date: Jun 2019
Posts: 36
Rep Power: 6
idrees khan is on a distinguished road
could any one please help me that how to apply condition for pressure and velocity flow between two plates if the flow is due to the motion of upper plates.(OpenFoam)

2. how to use inletOutlet and outletInlet boundary conditions?can we use both at a time or once at a time?
3.using inletOutlet and outletInletin OpenFoam should we define in both files i.e U ,p
thanks in advance
idrees khan 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
No Slip Boundary conditions lawrencelkl OpenFOAM Running, Solving & CFD 4 June 19, 2018 01:33
boundary conditions for simpleFoam calculation foam_noob OpenFOAM Running, Solving & CFD 8 July 1, 2015 08:07
free slip boundary conditions Yang Main CFD Forum 8 May 22, 2011 22:14
slip wall conditions ahmadbakri STAR-CCM+ 0 October 22, 2010 11:25
Slip boundary conditions NS-fan Main CFD Forum 6 October 21, 2010 09:00


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