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

Free slip moving wall BC

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

Like Tree17Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 4, 2017, 08:53
Default
  #21
Member
 
Ashok
Join Date: Feb 2017
Posts: 31
Rep Power: 9
ashokmoravaneni is on a distinguished road
Hi Lousi,
Thanks for coming back
Yes I m using OF4.1. There were no errors. And Yes I have specified type in U file.Actually why I have asked the above question is I wanted to apply partialSLip to moving wall but not slip to moving wall.

First I wanna know how to apply partialslip condition to moving wall. Is that possible in OF. I have applied like below,

type partialSlip;
value uniform (0 -0.5 0);
valueFraction 0.4;

But moving wall is not taking any velocity specified. (0 -0.5 0).

Thank you.
ashokmoravaneni is offline   Reply With Quote

Old   September 5, 2017, 04:40
Default
  #22
Senior Member
 
louisgag's Avatar
 
Louis Gagnon
Join Date: Mar 2009
Location: Stuttgart, Germany
Posts: 338
Rep Power: 18
louisgag is on a distinguished road
Send a message via ICQ to louisgag
Not sure my boundary condition can deal with partialSlip as I have never dealt with it.
-LouIs
louisgag is offline   Reply With Quote

Old   September 5, 2017, 04:43
Default
  #23
Member
 
Ashok
Join Date: Feb 2017
Posts: 31
Rep Power: 9
ashokmoravaneni is on a distinguished road
Quote:
Originally Posted by louisgag View Post
Not sure my boundary condition can deal with partialSlip as I have never dealt with it.
-LouIs
Well Louis, Can you help me in implementing partial slip to moving wall in interFOAM. I have tried my best but not able to solve this Problem.

Thanks in advance.
ashokmoravaneni is offline   Reply With Quote

Old   September 5, 2017, 05:07
Default
  #24
Senior Member
 
louisgag's Avatar
 
Louis Gagnon
Join Date: Mar 2009
Location: Stuttgart, Germany
Posts: 338
Rep Power: 18
louisgag is on a distinguished road
Send a message via ICQ to louisgag
Ashok, it might be an interesting problem but it is out of my scope. I suggest you start a thread if you are looking for such support.
louisgag is offline   Reply With Quote

Old   September 5, 2017, 05:11
Default
  #25
Member
 
Ashok
Join Date: Feb 2017
Posts: 31
Rep Power: 9
ashokmoravaneni is on a distinguished road
Ok Louis. I have already posted a new Thread two weeks back. Still waiting for appropriate Response.

Anyway Thanks for your Time
ashokmoravaneni is offline   Reply With Quote

Old   September 3, 2018, 04:58
Default
  #26
New Member
 
Helvines Aquino
Join Date: Aug 2016
Posts: 13
Rep Power: 9
nesca87 is on a distinguished road
Hi Louis,

I'm interested in implementing you BC code. However, there's something I don't understand due to the lack of OF experience.

If I copy it into my personal src directory, do I have to call it in the solvers' main source code and Make/options (as FOAM_USER_LIBBIN) that I want this BC to be applied (e.g interDyMFoam) and do I have to re-compile interDyMFoam solver again?
nesca87 is offline   Reply With Quote

Old   September 3, 2018, 05:17
Default
  #27
Senior Member
 
louisgag's Avatar
 
Louis Gagnon
Join Date: Mar 2009
Location: Stuttgart, Germany
Posts: 338
Rep Power: 18
louisgag is on a distinguished road
Send a message via ICQ to louisgag
Hi Helvines,
You do not have to recompile the solver, you'll have to add something like this to controlDict:
Quote:
libs ("libmyFiniteVolume.so";
Look at the following test case:
https://github.com/louisgag/OpenFOAM...aster/testCase
Kind regards,
-Louis
nesca87 likes this.
louisgag is offline   Reply With Quote

Old   April 9, 2021, 01:48
Default
  #28
Senior Member
 
Huynh Phong Thanh
Join Date: Aug 2013
Location: Ho Chi Minh City
Posts: 105
Rep Power: 12
hiuluom is on a distinguished road
Hi Louis,

I want to try your movingwallslip with table value as time-varying BC. But it only allows set uniform value.
Should it combine two BCs uniformFixedValue with movingwallSlip?
Because uniformFixedValue has table time varying value, but it is not moving wall.

I want a BC applied for wall with moving in time, using interDymFoam 4.x solver. Do you have idea for this type BC?

Kind regards
hiuluom is offline   Reply With Quote

Old   April 9, 2021, 11:24
Default
  #29
Senior Member
 
louisgag's Avatar
 
Louis Gagnon
Join Date: Mar 2009
Location: Stuttgart, Germany
Posts: 338
Rep Power: 18
louisgag is on a distinguished road
Send a message via ICQ to louisgag
Hi Huynh,


the BC I posted already computes the moving wall velocity, you don't need to use the timeVarying condition on top of it.


Kind regards
louisgag is offline   Reply With Quote

Old   April 22, 2021, 23:27
Default
  #30
Senior Member
 
Huynh Phong Thanh
Join Date: Aug 2013
Location: Ho Chi Minh City
Posts: 105
Rep Power: 12
hiuluom is on a distinguished road
Hi Louis,

Thank your reply.
I want to set wall moving in time like this
hiuluom is offline   Reply With Quote

Old   April 22, 2021, 23:28
Default
  #31
Senior Member
 
Huynh Phong Thanh
Join Date: Aug 2013
Location: Ho Chi Minh City
Posts: 105
Rep Power: 12
hiuluom is on a distinguished road
Hi Louis,

Thank your reply.
I want to set wall moving in time like this

Code:
 type            uniformFixedValue;
        uniformValue    table
        (
            (0    (0    0    0))
            (0.2    (1.5    0    0))
            (0.4    (2.6    0    0))
            (0.6    (3.48    0    0))
            (0.8    (3.95    0    0))
            (0.9    (4.12    0    0))
            (1    (4.1    0    0))
            (1.1    (-0.125    0    0))
            (1.2    (-1.25    0    0))
            (1.4    (1.1    0    0))
            (1.45    (0    0    0))
            (1.5    (-0.52    0    0))
            (1.55    (-0.5    0    0))
            (1.6    (-0.1    0    0))
            (1.7    (0.6    0    0))
            (1.75    (0.62    0    0))
            (1.8    (0    0    0))
            (2    (0    0    0))
			(200    (0    0    0))
        );
        value           $initialField;
I am using uniformFixedValue but the wall was not moved following time. After 100s, it still moves. That is reason I want to check your BC with time varying.
hiuluom is offline   Reply With Quote

Old   November 28, 2021, 09:46
Default
  #32
New Member
 
irwin
Join Date: Apr 2014
Location: New Delhi, India
Posts: 19
Rep Power: 11
irwin is on a distinguished road
Hi Louis,
I am using openfom8 , I have complied your code successfully without any error however when i apply it in my U file it is showing error :

--> FOAM FATAL IO ERROR:
Unknown patchField type myMovingWallSlip for patch type wall

kindly help

Thanks,
Irwin
irwin is offline   Reply With Quote

Old   November 29, 2021, 03:48
Default
  #33
Senior Member
 
louisgag's Avatar
 
Louis Gagnon
Join Date: Mar 2009
Location: Stuttgart, Germany
Posts: 338
Rep Power: 18
louisgag is on a distinguished road
Send a message via ICQ to louisgag
Hi, you probably did not load the library you compiled.
Try correcting your controlDict accordingly.
irwin likes this.
louisgag is offline   Reply With Quote

Old   November 29, 2021, 12:36
Default
  #34
New Member
 
irwin
Join Date: Apr 2014
Location: New Delhi, India
Posts: 19
Rep Power: 11
irwin is on a distinguished road
Thanks a lot.
its working now
irwin is offline   Reply With Quote

Old   December 1, 2021, 22:12
Default
  #35
Senior Member
 
mohammad
Join Date: Sep 2015
Posts: 274
Rep Power: 11
mostanad is on a distinguished road
Quote:
Originally Posted by louisgag View Post
Hi, you probably did not load the library you compiled.
Try correcting your controlDict accordingly.
Hi Louis,
Sorry for my basic questions. I can't understand something in this type of Boundary conditions. It is still stress-free (zero gradient tangential velocity), but with a desired velocity value? I mean the moving wall condition is only implemented on both tangential and normal velocities or only the tangential velocity?
Second thing is the boundary type for that. Is this a patch type or wall type?

Cheers,
Mohammad
mostanad is offline   Reply With Quote

Old   December 1, 2021, 23:37
Default
  #36
New Member
 
irwin
Join Date: Apr 2014
Location: New Delhi, India
Posts: 19
Rep Power: 11
irwin is on a distinguished road
Hi Louis,
how to introduce slip when wall is already moving with some velocity ( couette flow) ?

Thanks,
Irwin
irwin is offline   Reply With Quote

Reply

Tags
free slip wall, moving wall, moving walls

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
Water subcooled boiling Attesz CFX 7 January 5, 2013 04:32
wall slip law for newtonian fluid tsi07 FLUENT 0 April 19, 2012 13:13
[ICEM] Export ICEM mesh to Gambit / Fluent romekr ANSYS Meshing & Geometry 1 November 26, 2011 13:11
Stationary wall and Moving wall Sri FLUENT 1 July 29, 2008 05:33
Pressure on the free slip wall yliu CFX 5 March 30, 2007 04:47


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