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

Contact angle between different phase and wall

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 28, 2013, 23:48
Default Contact angle between different phase and wall
  #1
Member
 
Guifan Li
Join Date: Apr 2011
Location: New York City, U.S.
Posts: 96
Rep Power: 15
liguifan is on a distinguished road
Good evening,

I am trying to simulating a droplet made of oil drop into a water base.

However, I am confusing about setting up the Contact Angle between phase and between phase and wall.

for example
Quote:
boundaryField
{

sideWall
{
type alphaContactAngle;
thetaProperties
(
( water air ) 90 0 0 0
( oil air ) 90 0 0 0

( water oil ) 90 0 0 0


);
value uniform 1;
}
lowerWall
{
type alphaContactAngle;
thetaProperties
(
( water air ) 90 0 0 0
( oil air ) 90 0 0 0

( water oil ) 90 0 0 0


);
value uniform 0;
}
like in the sideWall, there are (water air) 90 0 0 0. I understand the contact angle between water and air is 90 here. But in lowerWall section, there is also (water air) 90 0 0 0. what is the difference between these two (water air)? and how can I set up the contact angle between the water and the wall? (in the breakdam-one phase, I can successfully set up the contact angle between water and wall but here is a little bit different).

Can anyone give me some suggestions please?
liguifan is offline   Reply With Quote

Old   March 7, 2013, 02:46
Default
  #2
Member
 
Michiel
Join Date: Oct 2010
Location: Delft, Netherlands
Posts: 97
Rep Power: 15
michielm is on a distinguished road
The second water-air is on a different patch (lowerWall as opposed to sideWall) because you can set the contact angle on each patch individually to be able to model a real-life situation in which maybe one wall is wetting with respect to the water and another wall is non-wetting (think of a glass lid and a teflon wall in a cooking pan for example).

Setting up the contact angles with the walls is just a matter of changing the 90s into something else. So to give an example: if you set the following:
Code:
lowerWall
    {
        type            alphaContactAngle;
        thetaProperties
        (
            ( water air ) 50 0 0 0
            ( oil air )120 0 0 0
            
            ( water oil ) 90 0 0 0
            
            
        );
That means that a water-air interface will have a contact angle of 50 with the lowerWall, an oil air interface will have a contact angle of 120 with the lowerWall and the water oil interface will have a 90 degree contact angle.

I am not that familiar with the multiPhaseInterFoam so I don't know what the 3 zeros in the boundaryField settings mean, but they seem like dummy variables to me. To confirm that you would have to dig into the solver code a bit.
michielm is offline   Reply With Quote

Reply

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
Natural convection in a closed domain STILL NEEDING help! Yr0gErG FLUENT 4 December 2, 2019 00:04
Slug Flow, interFoam, problems with Contact Angle PrzemekPL OpenFOAM Running, Solving & CFD 13 February 18, 2014 22:10
Water subcooled boiling Attesz CFX 7 January 5, 2013 03:32
help with UDF for contact angle based on contact line velocity gandesk Fluent UDF and Scheme Programming 14 October 29, 2012 13:58
angle for wall adhesion in two phase flow Al-jasim FLUENT 0 August 18, 2007 10:04


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