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

Droplet Incident Angle

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 17, 2013, 04:08
Default Droplet Incident Angle
  #1
New Member
 
David
Join Date: Oct 2012
Posts: 15
Rep Power: 13
PLP3A_ENSIAME is on a distinguished road
Good morning,

I'm working in the BAI's impingement model on droplets and I'm trying to create my own rebound model but I met one problem. I would like to define a restitution coefficient for my rebound model but I really don't see how can I obtain the incident angle of my droplet in the sub-routine DROWBC.
If I understand well the code sample in DROWBC, there is a parameter called S1 which represent the cosinus of the angle between cells directions and the global x,y and z directions. But it's not my droplet velocity incident angle. How could I obtain the incident angle of my droplet velocity?

Can someone shed any light on this?
PLP3A_ENSIAME is offline   Reply With Quote

Old   July 17, 2013, 11:16
Default
  #2
Senior Member
 
Pauli
Join Date: Mar 2009
Posts: 189
Rep Power: 17
Pauli is on a distinguished road
It sounds like you have enough information to compute the boundary face normal. Combine that with the droplet velocity vector components & you should be able to compute incident angle. Or am I missing something?
Pauli is offline   Reply With Quote

Old   July 18, 2013, 05:25
Default
  #3
New Member
 
David
Join Date: Oct 2012
Posts: 15
Rep Power: 13
PLP3A_ENSIAME is on a distinguished road
Thank you. In fact, it's like if the programm makes believe that the cell is oriented by an angle even if it's not. So that angle defines effectively the incident angle of the droplet velocity vector. It's just a play on points of view.
I don't know if I'm clear but I have the solution of my problem thank you.
PLP3A_ENSIAME is offline   Reply With Quote

Old   July 24, 2013, 08:46
Default
  #4
New Member
 
David
Join Date: Oct 2012
Posts: 15
Rep Power: 13
PLP3A_ENSIAME is on a distinguished road
Me again !

I'm sorry Pauli I thought I found my solution alone but after few trials I realized that the solution I found doesn't represent my incident angle...

So I'll try to explain my approach :

In the subroutine DROWBC.f, there is an example to how compute the droplet velocity after rebound. In this example, there are 3 parameters called S1,S2 and S3 which represent the outward-pointing area components of the cell face in the global x, y and z directions (m2) and the AREA ratio with AREA = SQRT(SBX²+SBY²+SBZ²). The mistake I did is simply that to understand well this, I made a drawing in 2D of this. In 2D, in a basic drawing of a cell, S1 and S2 correspond to my sinus and cosinus of the angle between my global x,y and z directions and my cell's local directions. But I'm computing a rebound model in 3D so in that case, S1 and S2 don't represent a sinus or a cosinus.

Here is the approach I used (but it's not correct obviously):
I calculate the incident droplet velocity magnitude as
VDMAG = SQRT(UD²+VD²+WD²)
Then I use the variable used in DROWBC which represents (I think) the incident droplet velocity magnitude on the normal direction of my cell:
VNMAG = UD.S1 + VD.S2 + WD.S3
As I'm considering a plane rebound, I just need to calculate the angle between VDMAG and VNMAG using the the function ACOS().

I did it but to have a proof of this, I imposed a 10°-incident-angle on my wall and my solver finds an incident angle of 22.7°.

I don't understand what I did wrong...
Any suggestions to help me ?

Thank you in advance.
PLP3A_ENSIAME is offline   Reply With Quote

Old   July 24, 2013, 10:19
Default
  #5
Senior Member
 
Pauli
Join Date: Mar 2009
Posts: 189
Rep Power: 17
Pauli is on a distinguished road
I believe you need to compute the angle between the vector defining the cell face normal (you report this as S1, S2, and S3) and the droplet velocity vector.

Do not use the plane geometry formulation, use the "long" formula which computes the angle between two vectors in 3-D (http://www.wikihow.com/Find-the-Angl...en-Two-Vectors).

The result should be the angle between the cell face normal and the droplet velocity vector. Depending upon how you define incident angle, you may need to subtract the computed value from 90 degrees.
Pauli is offline   Reply With Quote

Old   July 24, 2013, 10:20
Default
  #6
New Member
 
David
Join Date: Oct 2012
Posts: 15
Rep Power: 13
PLP3A_ENSIAME is on a distinguished road
After few researches, I maybe found my mistake. Indeed, when I look at my incident droplet velocity components (UD, VD and WD), I should fall on my incident angle that I imposed at the pipe exit (10°). Whereas, when I do this check, I don't find it so the only explaination possible is that my incident angle is not well defined.
I find : UD = 1.8459, VD = 1.1095e-4, WD = 4.3926
The angle between UD and WD is 22.79° and not 10°.

When I defined it in proSTAR, I fill in in the Injection Points pannel :

- Injection Points panel
- Selected option
Single Point from the Set Type menu
- Entered
1 in the Point Coordinate System and Injection Direction Coordinate System boxes
- Entered
1 in the Number of Points box
- Selected option
Specify for Point and entered its coordinates (30, 0, 2674) in the X, Y, Z boxes

- Specified the entrance velocity direction in terms of unit vector components by
entering (0.173648, 0, 0.984808) in the DX, DY, DZ boxes to have an incident angle of 10°.

- Ensured
Add New Set is selected from the Action menu and clicked Apply.

Thank you in advance for your help,

PLP3A_ENSIAME is offline   Reply With Quote

Old   July 24, 2013, 10:30
Default
  #7
New Member
 
David
Join Date: Oct 2012
Posts: 15
Rep Power: 13
PLP3A_ENSIAME is on a distinguished road
Hello Pauli,

Thank you for responding. The solution that you propose is the approach I used. Indeed, the variable VNMAG is exactly the normal vector of my cell (I'm quite sure when I look my drawing). Then considering that 2 vectors are in the same plane, I can use directly the function cosinus to find my angle. I already tried to use the "long" definition in 3-D, scalar-product of 2 vectors but I don't have the components of the normal vector of my cell. Dead-end for me with this way.

Did you see my latest post? Do you think I didn't define very well my incident angle ?
PLP3A_ENSIAME is offline   Reply With Quote

Old   July 25, 2013, 09:37
Default
  #8
Senior Member
 
Pauli
Join Date: Mar 2009
Posts: 189
Rep Power: 17
Pauli is on a distinguished road
Looks like you defined it correctly. Therefore your problem is likely correctly interpreting the output. Have you made a droplet plot & graphically viewed what is happening?

Didn't you say S1 is the cell face direction cosines?

What is the normal vector for the surface you are spraying against?
Pauli is offline   Reply With Quote

Old   July 25, 2013, 11:07
Default
  #9
New Member
 
David
Join Date: Oct 2012
Posts: 15
Rep Power: 13
PLP3A_ENSIAME is on a distinguished road
Hi Pauli,

I made a droplet plot and also a particle tracking to see if there is an angle of 10° at the exit of my pipe. This check gave me an incident angle of 10° so the injection is correctly modelised.
You are right, S1 is the cell face direction cosinus but only in one of my drawing which is unfortunately a particular case of my problem so I can't say that S1 is always the cell face direction cosinus.
I've got news about VNMAG, it's obviously my boudary normal direction.

I found something intersting. I forgot that my case in running with the gravity effect and as I am shouting out droplets on a ceiling, gravity plays a crucial part in the droplet velocity direction and by consequence in the incident angle.
I decided to put my pipe close too my ceiling to check that and ... as if by magic, I found an incident angle of 10° between my boundary normal direction and my droplet velocity vector.
So I think my problem is now solved...

Thank you very much Pauli for your interest and your patience.
PLP3A_ENSIAME 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
Initial contact angle of droplet tringuyenttt Main CFD Forum 2 June 17, 2013 22:17
[Netgen] Import netgen mesh to OpenFOAM hsieh OpenFOAM Meshing & Mesh Conversion 32 September 13, 2011 05:50
Normal vector, slope and aspect angle g_niro Main CFD Forum 0 February 2, 2011 17:24
DieselFoam Droplet Temperature Issues - OF 1.6 viv05 OpenFOAM 0 February 27, 2010 11:20
Incident wave angle ramTAMUg FLOW-3D 1 June 19, 2009 02:53


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