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

About calculating droplet diameter for atomization

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 28, 2013, 06:25
Default About calculating droplet diameter for atomization
  #1
New Member
 
Kshitij kunte
Join Date: Jun 2011
Posts: 18
Rep Power: 14
k.kshitij is on a distinguished road
Hi All,

I'm simulating the breakup of droplet inside a cylindrical nozzle. For this purpose I wanted to calculated the frequency of the droplet diameter distribution.

For calculating this the domain is divided in to 'n' number of sections with each section having a fixed width. Each section is analysed for the droplet which is assumed to be spherical. Now each droplet diameter is calculated from droplet volume obtained by taking into account the volume fraction occupying the computational meshes and also taking the mesh size into account. To move forward with this method I wanted to know the location of a particular cell. Is there any tool by which I can know the centroid of the cell and the volume fraction present in it.

Thanks,

Kshitij
k.kshitij is offline   Reply With Quote

Old   July 21, 2018, 03:59
Default
  #2
Senior Member
 
Elham
Join Date: Oct 2009
Posts: 184
Rep Power: 16
Elham is on a distinguished road
Quote:
Originally Posted by k.kshitij View Post
Hi All,

I'm simulating the breakup of droplet inside a cylindrical nozzle. For this purpose I wanted to calculated the frequency of the droplet diameter distribution.

For calculating this the domain is divided in to 'n' number of sections with each section having a fixed width. Each section is analysed for the droplet which is assumed to be spherical. Now each droplet diameter is calculated from droplet volume obtained by taking into account the volume fraction occupying the computational meshes and also taking the mesh size into account. To move forward with this method I wanted to know the location of a particular cell. Is there any tool by which I can know the centroid of the cell and the volume fraction present in it.

Thanks,

Kshitij
OK. After a long time, I have a similar question. How can I calculate the droplet diameter though the droplet is evaporating? I have tested calculating the volume of the droplet in controlDict with alpha.water<0.5. But since the droplet is diffusing in the air flow just give me bigger droplets. That's because alpha.water = 0.5 is not a good representative for the droplet. I also tested alpha.water=0.98 which turns infinitive values in many times, because the droplet is smearing. Although I can see the droplet in paraView but I cannot have a good statistic for the diameter.
Elham is offline   Reply With Quote

Old   July 22, 2018, 21:59
Default
  #3
Senior Member
 
Elham
Join Date: Oct 2009
Posts: 184
Rep Power: 16
Elham is on a distinguished road
Quote:
Originally Posted by Elham View Post
OK. After a long time, I have a similar question. How can I calculate the droplet diameter though the droplet is evaporating? I have tested calculating the volume of the droplet in controlDict with alpha.water<0.5. But since the droplet is diffusing in the air flow just give me bigger droplets. That's because alpha.water = 0.5 is not a good representative for the droplet. I also tested alpha.water=0.98 which turns infinitive values in many times, because the droplet is smearing. Although I can see the droplet in paraView but I cannot have a good statistic for the diameter.

Finally, I could fix it with the following steps:

1. Create a field in createFields.H :

Code:
    volScalarField evapRate
     (
        IOobject
        (
           "evapRate", 
            runTime.timeName(),
            mesh,
            IOobject::NO_READ,
            IOobject::AUTO_WRITE
        ),
        mesh,
    dimensionedScalar("evapRate", dimDensity*dimLength/dimTime, 0.0)
      );
2. Give a value in the main C file:

Code:
                  mixtureI->correct();
tmp<volScalarField>  mDotU = mixtureI->mDotU();
            evapRate = mDotU;
Elham 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
Droplet Sauter Mean Diameter for Cross Flowing Jet amiralia FLUENT 1 March 17, 2015 08:34
Histogram on a selected volume, Droplet diameter profile crevoise STAR-CCM+ 0 May 17, 2013 06:12
droplet absorption diameter Claudia CFX 4 April 2, 2010 06:14
How to update polyPatchbs localPoints liu OpenFOAM Running, Solving & CFD 6 December 30, 2005 17:27
Significance of droplet diameter in multiphase flo Hbet FLUENT 0 June 14, 2001 09:36


All times are GMT -4. The time now is 20:03.