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

Sunction Boundary Condition

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 14, 2012, 11:37
Default Suction Boundary Condition
  #1
New Member
 
Akim Faisal
Join Date: Jan 2012
Posts: 18
Rep Power: 14
Akim679 is on a distinguished road
Hi,

I am trying to solve a problem in which the channel is rectangular and the bottom wall will have a suction, meaning the fluid near the bottom wall will go downward with a certain velocity. How would I specify such boundary condition in FLUENT?

Thanks,
Akim

Last edited by Akim679; March 14, 2012 at 11:56. Reason: Typo
Akim679 is offline   Reply With Quote

Old   March 15, 2012, 09:40
Default
  #2
Senior Member
 
ghost82's Avatar
 
Rick
Join Date: Oct 2010
Posts: 1,016
Rep Power: 26
ghost82 will become famous soon enough
Pressure outlet?
I'm not sure if you can set a mass flow inlet or a velocity inlet and then if you can specify a negative value...

I'm not sure I understand your proble..post a picture.

Daniele
ghost82 is offline   Reply With Quote

Old   March 15, 2012, 14:31
Default Porous wall
  #3
New Member
 
Akim Faisal
Join Date: Jan 2012
Posts: 18
Rep Power: 14
Akim679 is on a distinguished road
Actually,

My adviser told me to model a wall as a "porous wall" which will allow fluid to seep through. Is there a way to specify that in FLUENT?

Thanks,
Akim
Akim679 is offline   Reply With Quote

Old   March 16, 2012, 00:04
Default
  #4
Member
 
Join Date: Mar 2011
Posts: 50
Rep Power: 15
cdf_user is on a distinguished road
put ur suction boundary as pressure outlet
write a udf using DEFINE_PROFILE and place it on this boundary..should work

I am doing the same thing except my boundary is oscillating suction and injection.
cdf_user is offline   Reply With Quote

Old   March 16, 2012, 11:30
Default
  #5
New Member
 
Akim Faisal
Join Date: Jan 2012
Posts: 18
Rep Power: 14
Akim679 is on a distinguished road
Would you kindly elaborate on writing the UDF on the "DEFINE_PROFILE". I'm not too sure on UDFs.

Thanks,
Akim
Akim679 is offline   Reply With Quote

Old   March 16, 2012, 12:07
Default
  #6
Member
 
Join Date: Mar 2011
Posts: 50
Rep Power: 15
cdf_user is on a distinguished road
/************************************************** ********************/
/* unsteady.c */
/* UDF for specifying a transient velocity profile boundary condition */
/************************************************** ********************/

#include "udf.h"

DEFINE_PROFILE(SJ_velocity, thread, position)
{
face_t f;

begin_f_loop(f, thread)
{
real freq=25.;
real vol=400.;
real spd=vol/520.;
real t = RP_Get_Real("flow-time");
F_PROFILE(f, thread, position) = spd*sin(freq*(t-0.075)*(2.*3.141592654));
}
end_f_loop(f, thread)
}
cdf_user is offline   Reply With Quote

Old   May 10, 2018, 14:53
Default
  #7
New Member
 
Msvs
Join Date: Apr 2018
Posts: 7
Rep Power: 8
Msvsraj is on a distinguished road
Quote:
Originally Posted by cdf_user View Post
put ur suction boundary as pressure outlet
write a udf using DEFINE_PROFILE and place it on this boundary..should work

I am doing the same thing except my boundary is oscillating suction and injection.
could u explain it more easier way to understand . it would very nice of you if u could
Msvsraj 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
Domain Imbalance HMR CFX 5 October 10, 2016 05:57
Can anyone give me some hint on how to make traction free boundary condition? poplar OpenFOAM 3 January 14, 2015 02:37
Boundary Conditions Thomas P. Abraham Main CFD Forum 20 July 7, 2013 05:05
Setting outlet Pressure boundary condition using CAFFA code Mukund Pondkule Main CFD Forum 0 March 16, 2011 03:23
How to set boundary condition in Fluent for the fo Peiyong FLUENT 1 November 10, 2006 11:44


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