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

Surface Tension Force

Register Blogs Community New Posts Updated Threads Search

Like Tree6Likes
  • 5 Post By henry
  • 1 Post By henry

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 14, 2005, 05:40
Default Hello, I am trying to analy
  #1
New Member
 
Vinay Ramohalli Gopala
Join Date: Mar 2009
Location: Netherlands
Posts: 13
Rep Power: 17
gopala is on a distinguished road
Hello,

I am trying to analyze individual forces acting on the interface for every time step. I was not able to understand the implementation of surface tension force in the interFoam solver. Is it exactly the "Brackbill's CSF model" ? It would be very helpful if I can get the expression for surface tension force (volume force) so that I can print it out every time step.

Thanks in advance

/Vinay
gopala is offline   Reply With Quote

Old   June 14, 2005, 05:55
Default The surface tension is impleme
  #2
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
The surface tension is implemented as

sigma*kappa*grad(gamma)

where kappa is the surface curvature. sigma*kappa is returned by interface.sigmaK() and you should look in interfaceProperties.C to see how the curvature is evaluated. There are a couple of implementations with the less-good alternatives commented out. The force is included into the flux prediction step of the pressure equation (pEqn.H) rather than in the momentum equation:

fvc::interpolate(interface.sigmaK())*fvc::snGrad(g amma)

so that it is a force on the face balanced by pressure gradients and bouyancy. This is equivalent to a staggered-mesh formulation which is more robust and accurate than if it were included as a momentum source and then interpolated. The problem for you now is that surface-tension is not a cell "volume force" but a cell-face force.
fumiya, kk415, missios and 2 others like this.
henry is offline   Reply With Quote

Old   June 14, 2005, 06:32
Default Thanks for the quick reply.
  #3
New Member
 
Vinay Ramohalli Gopala
Join Date: Mar 2009
Location: Netherlands
Posts: 13
Rep Power: 17
gopala is on a distinguished road
Thanks for the quick reply.

> The problem for you now is that surface-tension is not a cell "volume force" but a cell-face force:

This means that if I want to print out surface-tension force as volume force then I should use the following expression:

volVectorField Fcsf = interface.sigmaK()*fvc::grad(gamma);

volScalarField magFcf = mag(Fcsf);

is this right ?

/vinay
gopala is offline   Reply With Quote

Old   June 14, 2005, 07:04
Default That will give you a surface-t
  #4
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
That will give you a surface-tension force as a volume force but it will not be consistent with that actually used in the code, i.e. the integrated force will not balance with the other forces as it should but it will be a rough estimate and a good indicator.
missios likes this.
henry 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
Surface Tension Force Model Miguel CFX 7 October 2, 2006 05:30
surface tension gradient on a free surface Abrem FLUENT 1 April 30, 2006 03:41
Surface tension - Continuum Surface Force model Robert Main CFD Forum 0 May 2, 2002 07:34
surface tension force Ray Main CFD Forum 0 October 17, 2001 15:42
[surface tension effect at free-surface ?] name Main CFD Forum 1 September 21, 2001 09:54


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