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

Critical pressure

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 8, 2016, 20:19
Default Critical pressure
  #1
Member
 
sampath
Join Date: Sep 2014
Posts: 36
Rep Power: 11
sampy is on a distinguished road
Hello everyone,
I am final leg of my UDF development. In order to successfully complete it, I require the knowledge of critical pressure of the fuel. I employ both single component and multi-component fuel surrogates in my current study. So, can I retrieve the critical pressure from any of the shared header files or do I need to provide this information as an user input?
Thanks in advance.
sampy is offline   Reply With Quote

Old   June 10, 2016, 20:24
Default
  #2
Member
 
sampath
Join Date: Sep 2014
Posts: 36
Rep Power: 11
sampy is on a distinguished road
Hello everyone,
Converge does use the critical pressure in the Homogeneous Relaxation Model (HRM) it uses in modeling cavitation. I am not modeling cavitation currently but I am working on something related to HRM and would require the knowledge of the critical pressure of the liquid/parcel in order to go forward. So, I would like to know how to access this information.

I have gone through the manual and do understand that gas critical properties can be accessed directly using crit_temp and crit_pres but these are not of interest in the current scenario.

I would appreciate any kind of help on by the members of this forum.
Thanks,
Sampath
sampy is offline   Reply With Quote

Old   June 13, 2016, 12:45
Default
  #3
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 10
ywang89 is on a distinguished road
Quote:
Originally Posted by sampy View Post
Hello everyone,
I am final leg of my UDF development. In order to successfully complete it, I require the knowledge of critical pressure of the fuel. I employ both single component and multi-component fuel surrogates in my current study. So, can I retrieve the critical pressure from any of the shared header files or do I need to provide this information as an user input?
Thanks in advance.
Hi Sampath,

You can access the critical temperature and pressure of liquid species like this
critical_temp=liquid_critical_temperature_table[isp_liq];
it_crit=(int)(critical_temp/10.0);
critical_pres=liquid_pvap_table[isp_liq][it_crit+1];
isp_liq is the index of the liquid species. If you have only one liquid species, isp_liq=0.

Thanks,
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   June 22, 2016, 12:45
Default
  #4
Member
 
sampath
Join Date: Sep 2014
Posts: 36
Rep Power: 11
sampy is on a distinguished road
Hi Yunliang,
Thank you for the assistance and sorry for getting back so late on this. I have a follow up question concerning the critical pressure. The solution given by you spits on the critical pressures of the individual components in a mixture. Is there a way Converge calculates the overall critical pressure of the mixture or does Converge calculates the critical pressure a mass weighted or mole fraction weighted average (pseudo critical pressure)?
Thanks,
Sampath
sampy is offline   Reply With Quote

Old   June 22, 2016, 23:14
Default
  #5
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 10
ywang89 is on a distinguished road
Quote:
Originally Posted by sampy View Post
Hi Yunliang,
Thank you for the assistance and sorry for getting back so late on this. I have a follow up question concerning the critical pressure. The solution given by you spits on the critical pressures of the individual components in a mixture. Is there a way Converge calculates the overall critical pressure of the mixture or does Converge calculates the critical pressure a mass weighted or mole fraction weighted average (pseudo critical pressure)?
Thanks,
Sampath
Hi Sampath,

As CONVERGE can handle liquid with multicomponents, CONVERGE doesn't calculate the mixture critical pressure using mass weighted or molar-weighted average. If your model needs to do so, you can easily calculate it. For VOF simulations, it will be more accurate to consider individual critical pressure than to use the mixture critical pressure.

Thanks,

Yunliang
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   June 23, 2016, 12:20
Default
  #6
Member
 
sampath
Join Date: Sep 2014
Posts: 36
Rep Power: 11
sampy is on a distinguished road
Hi Yunliang,
Thank you for your response. So, Converge does not calculate the overall critical pressure either numerically based on an EOS or a pseudocritical pressure sorts using mass or mole fractions?

I am currently modelling sprays and not using VOF simulations. I have to calculate a non-dimensional pressure which is based on the critical pressure of the mixture/surrogate that I am using. For the time being I am calculating the pseudo critical pressure based on the mass fraction of the individual components, I am looking for a better estimate of the critical pressure.

Also, is there a way to access the molecular weights of the parcel species (not the gas species)?
Thanks,
Sampath
sampy is offline   Reply With Quote

Old   June 23, 2016, 13:49
Default
  #7
Member
 
ywang89's Avatar
 
Yunliang Wang
Join Date: Dec 2015
Location: Convergent Science, Madison WI
Posts: 58
Rep Power: 10
ywang89 is on a distinguished road
Quote:
Originally Posted by sampy View Post
Hi Yunliang,
Thank you for your response. So, Converge does not calculate the overall critical pressure either numerically based on an EOS or a pseudocritical pressure sorts using mass or mole fractions?

I am currently modelling sprays and not using VOF simulations. I have to calculate a non-dimensional pressure which is based on the critical pressure of the mixture/surrogate that I am using. For the time being I am calculating the pseudo critical pressure based on the mass fraction of the individual components, I am looking for a better estimate of the critical pressure.

Also, is there a way to access the molecular weights of the parcel species (not the gas species)?
Thanks,
Sampath

Hi Sampath,

You are right that we don't calculate the mixture critical pressure or temperature since we don't need them. The molecular weight of liquid parcels can be accessed via the way below

for(isp=0;isp<num_parcel_species;isp++)
{
isp1 = parcel_species_lookup[isp];
parcel_mw=species[isp1]->mw;
}

Thanks,

Yunliang
__________________
Yunliang Wang
Applications Manager

CONVERGECFD
ywang89 is offline   Reply With Quote

Old   June 23, 2016, 15:58
Default
  #8
Member
 
sampath
Join Date: Sep 2014
Posts: 36
Rep Power: 11
sampy is on a distinguished road
Hi Yunliang,
Thank you for the assistance provided during the course of last couple of couple of weeks, really appreciate the help.
Thanks,
Sampath
sampy is offline   Reply With Quote

Reply

Tags
converge, critical pressure, multi-component, single component


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
Periodic flow using Cyclic - comparison with Fluent nusivares OpenFOAM Running, Solving & CFD 30 December 12, 2017 05:35
Pressure loss Velocity coupling CFXMUFFIN CFX 1 February 6, 2016 04:43
Discharge of Pressure Vessel into Pipe with Regulator gajowni2 System Analysis 0 October 31, 2015 18:57
Unsteady pressure differential between inlet and outlet of the pipe for single phase joshi20h FLUENT 0 September 26, 2012 12:41
Does star cd takes reference pressure? monica Siemens 1 April 19, 2007 11:26


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