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

Atomization

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

Like Tree1Likes
  • 1 Post By niklas

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 29, 2009, 09:02
Question Atomization
  #1
Member
 
amin
Join Date: May 2009
Posts: 62
Rep Power: 16
az1362f is on a distinguished road
Hi
as I know Dr Niklas.Nordin wrote dieselfoam solver by Eulerian-Lagrangian approach(discrete droplet method(DDM)).If you want to use this method you face to droplet in dense spray instead of liquid core,then why did he create an atomization model like LISA ,....?How can I use these atomization models when I have droplet in start of injection?
I think that atomization already done in DDM method.
It sounds strange.
az1362f is offline   Reply With Quote

Old   June 2, 2009, 05:21
Default
  #2
Super Moderator
 
niklas's Avatar
 
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29
niklas will become famous soon enoughniklas will become famous soon enough
Quote:
Originally Posted by az1362f View Post
Hi
as I know Dr Niklas.Nordin wrote dieselfoam solver by Eulerian-Lagrangian approach(discrete droplet method(DDM)).If you want to use this method you face to droplet in dense spray instead of liquid core,then why did he create an atomization model like LISA ,....?How can I use these atomization models when I have droplet in start of injection?
I think that atomization already done in DDM method.
It sounds strange.
first. the LISA model was implemented by Tommaso Lucchini.
and even though its called dieselSpray, it can be used for
any type of injector, like for instance gasoline.

There is a parameter for the parcels called liquidCore.
If this value is higher than 0.5, it does not exchange momentum/heat/mass with the gas and the atomization model
will control when the the parcel will switch to droplet-behavior, but as long as the liquidCore value is higher than 0.5 it
will be treated as if it is either in a liquid sheet or liquid core.

maybe it will be clearer if you check
src/lagrangian/dieselSpray/spray/sprayOps.C

evolve:
collisions().collideParcels(runTime_.deltaT().valu e());
move();
dispersion().disperseParcels();
inject();
atomizationLoop();
breakupLoop();


breakupLoop:
// liquidCore < 0.5 indicates discrete drops
if (elmnt().liquidCore() <= 0.5)
{
....

atomizationLoop:
// liquidCore > 0.5 indicates a liquid core
if (elmnt().liquidCore() > 0.5)
{
......


How to use them? Like you use the breakup models.
kaifu likes this.
niklas is offline   Reply With Quote

Old   June 3, 2009, 14:10
Question Lisa
  #3
Member
 
amin
Join Date: May 2009
Posts: 62
Rep Power: 16
az1362f is on a distinguished road
Hello Dear Dr;

I am thankful for your Comprehensive response.

but there are some coefficients for this model,could you please explain these coefficients?

Cl_ , cTau_ ,Q_ , J_
are there any parameter that should be defined in sprayproperties file?

Thanks
regard
az1362f is offline   Reply With Quote

Old   June 4, 2009, 03:04
Default
  #4
Super Moderator
 
niklas's Avatar
 
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29
niklas will become famous soon enoughniklas will become famous soon enough
Quote:
Originally Posted by az1362f View Post
Hello Dear Dr;

I am thankful for your Comprehensive response.

but there are some coefficients for this model,could you please explain these coefficients?

Cl_ , cTau_ ,Q_ , J_
are there any parameter that should be defined in sprayproperties file?

Thanks
regard
I have no idea what the model constants should be or what they do,

if you check the file

src/lagrangian/dieselSpray/spraySubModels/atomizationModel/LISA/LISA.H

you will find the references.

Accurate description in
@verbatim
P.K. Senecal, D.P. Shmidt, I. Nouar, C.J. Rutland, R.D. Reitz, M. Corradini
"Modeling high-speed viscous liquid sheet atomization"
International Journal of Multiphase Flow 25 (1999) pags. 1073-1097
@endverbatim

and

@verbatim
D.P. Schmidt, I. Nouar, P.K. Senecal, C.J. Rutland, J.K. Martin, R.D. Reitz
"Pressure-Swirl Atomization in the Near Field"
SAE Techical Paper Series 1999-01-0496
@endverbatim
niklas is offline   Reply With Quote

Old   August 13, 2012, 10:57
Default
  #5
New Member
 
X.G. Li
Join Date: Nov 2009
Location: Bremen, Germany
Posts: 19
Rep Power: 16
CYMa is on a distinguished road
Dear, Dr.,

I want to know how to define this liquid core, in the dictionary for injector model or injector type. I can't find the keyword 'liquid core' in any dictionary.
CYMa is offline   Reply With Quote

Old   August 13, 2012, 11:03
Default
  #6
Super Moderator
 
niklas's Avatar
 
Niklas Nordin
Join Date: Mar 2009
Location: Stockholm, Sweden
Posts: 693
Rep Power: 29
niklas will become famous soon enoughniklas will become famous soon enough
no need to define it, it is done automatically from the atomization model, via the virtual function

Foam::scalar Foam::AtomizationModel<CloudType>::initLiquidCore( ) const;
niklas is offline   Reply With Quote

Old   October 13, 2014, 15:50
Default
  #7
Member
 
yes
Join Date: Apr 2014
Posts: 32
Rep Power: 11
ENKIME is on a distinguished road
Greetings Dear Dr. Nordin
Sorry for bother with this question, as equal all my partners in this forum I'm also simulating a diesel spray, to be more specific a biodiesel spray.
I also charge all the transport properties and adjust the properties to the particular methods that NSRD functions use.
Well the question is Dr. Nordin, in the spraycloudproperties there is atomization models, blobsheet and Lisa so, there is any need to use one of them? or I can only specify the initial size and spray angle and use only the modify KHRT break up model.
Thanks a lot for your time Dr. Nordin.
Kind regards.
ENKIME 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
modeling atomization using the Eulerian approach Hossam FLUENT 1 October 4, 2008 07:48
the role of the atomization model Jay Siemens 2 March 7, 2008 21:16
atomization model vs breakup model Jay Siemens 7 January 24, 2008 20:51
a problem of petroleum atomization Bright FLUENT 1 November 16, 2001 01:56
LIQUID ATOMIZATION M. R. JAHANNAMA Main CFD Forum 1 November 4, 1999 12:11


All times are GMT -4. The time now is 16:05.