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

SutherlandTransport setting for air

Register Blogs Community New Posts Updated Threads Search

Like Tree8Likes
  • 1 Post By Daniel_P
  • 5 Post By GRAUPS
  • 2 Post By Alexee

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 20, 2006, 08:52
Default Could somebody tell me what ar
  #1
Member
 
Dihao Tang
Join Date: Mar 2009
Posts: 78
Rep Power: 17
tangd is on a distinguished road
Could somebody tell me what are the values of Sutherland coefficient As and Sutherland temperature Ts for air? Thanks!
tangd is offline   Reply With Quote

Old   July 20, 2006, 13:04
Default For viscosity: mu=1.4584E-6*p
  #2
New Member
 
mbark elmorsli
Join Date: Mar 2009
Location: Sherbrooke, quebec, canada
Posts: 1
Rep Power: 0
elmorsli is on a distinguished road
For viscosity:
mu=1.4584E-6*pow(T,3./2.)/(T+110.33);

and for thermal conductivity:
lambda=2474.7264e-6*pow(T,3./2.)/(T+194.4)
elmorsli is offline   Reply With Quote

Old   July 26, 2006, 01:21
Default Thanks for your reply. What ar
  #3
Member
 
Dihao Tang
Join Date: Mar 2009
Posts: 78
Rep Power: 17
tangd is on a distinguished road
Thanks for your reply. What are the coefficients As and Ts for N2? Is there a table including the coefficient of all gases?
tangd is offline   Reply With Quote

Old   July 24, 2009, 05:29
Default Where to define the conductivity?
  #4
New Member
 
Tom Potters
Join Date: Jul 2009
Posts: 14
Rep Power: 16
TomP is on a distinguished road
When using constTransport the conductivity can be calculated based on the viscosity, the heat capacity and the Prandtl number. When using sutherlandTransport there is no mention of the conductivity constant (at least not in the manual). You also give the sutherland coefficients for the conductivity, but then my question is where do I use them? Right after those of the viscosity?

Quote:
Originally Posted by elmorsli View Post
For viscosity:
mu=1.4584E-6*pow(T,3./2.)/(T+110.33);

and for thermal conductivity:
lambda=2474.7264e-6*pow(T,3./2.)/(T+194.4)
TomP is offline   Reply With Quote

Old   October 26, 2012, 04:24
Default
  #5
New Member
 
mohsen cheraghi
Join Date: Jun 2010
Location: Switzerland
Posts: 28
Rep Power: 15
mohsen cheraghi is on a distinguished road
I have the same question. can any one explain more?
mohsen cheraghi is offline   Reply With Quote

Old   October 30, 2012, 05:05
Default
  #6
New Member
 
Join Date: Oct 2011
Posts: 19
Rep Power: 14
okroud is on a distinguished road
Quote:
Originally Posted by elmorsli View Post
For viscosity:
mu=1.4584E-6*pow(T,3./2.)/(T+110.33);

and for thermal conductivity:
lambda=2474.7264e-6*pow(T,3./2.)/(T+194.4)
I am also interested in the calculation of the thermal conductivity. Is there any more information? Which numbers in the second equation are coefficients, that I have to set in OpenFOAM? Hope anyone can help us!
okroud is offline   Reply With Quote

Old   December 6, 2012, 07:00
Default
  #7
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
I don't think conductivity coefficients to be necessary.only As and Ts are important.
immortality is offline   Reply With Quote

Old   April 23, 2013, 16:37
Default
  #8
Member
 
Camille
Join Date: Oct 2012
Posts: 54
Rep Power: 13
camille131 is on a distinguished road
Hi,
could you tell me where I can find the sutherland coefficients As and Ts for natural gas (ie: methane). And where can I find a table of these coef. for any gas?
Thank you very much
camille131 is offline   Reply With Quote

Old   April 3, 2014, 10:20
Default
  #9
New Member
 
Join Date: Dec 2013
Posts: 11
Rep Power: 12
Daniel_P is on a distinguished road
Hej everyone!

Sorry for reactivating this old post, but it is still not clear to me how the thermal conductivity is calculated by OF when using Sutherland's law.

For my calculations I use chtMultiRegionSimpleFoam (OF 2.2.x) and experimented with the transport models in thermophysicalProperties of a fluid region. The thermo model I set is heRhoThermo and the fluid is air.

When I set transport to "const", I define a constant dynamic viscosity mu and the Prandtl number Pr. The thermal conductivity k is then calculated by Pr=mu*cp/k.

In a second example I set transport to "sutherland". Now I define only the two input parameters As=1.4792e-06 and Ts=116 for Sutherland's law. Since there is no error message when starting a calculation, I guess that no other input is needed.

But how does the solver calculate the thermal conductivity then?


Thank you for any help,
Daniel
immortality likes this.
Daniel_P is offline   Reply With Quote

Old   July 16, 2014, 15:46
Default
  #10
Member
 
Brock Lee
Join Date: Sep 2012
Location: Midwest
Posts: 40
Rep Power: 13
GRAUPS is on a distinguished road
Quote:
Originally Posted by Daniel_P View Post
But how does the solver calculate the thermal conductivity then?
Daniel
Daniel, sorry this is a bit late, but I was just looking into this very thing today and I believe I found the answer. I'll post here in case anyone else needs the info.

The OpenFOAM sutherland viscosity model appears to use the modified Euken Model (based on kinetic theory) for the thermal conductivity calculation. I found the equation being used on line 149 of the sutherlandTransportI.H file ($FOAM_SRC/thermophysicalModels/specie/transport/sutherland/sutherlandTransportI.H)

I identified it as the modified Euken Model based on section 1.4.7.2.2 of this doc...

http://www.arc.vt.edu/ansys_help/cfx_mod/i1299744.html

Brock
GRAUPS is offline   Reply With Quote

Old   July 18, 2014, 06:00
Default
  #11
New Member
 
Join Date: Dec 2013
Posts: 11
Rep Power: 12
Daniel_P is on a distinguished road
Hej Brock!

Thank you very much for your precise answer!
I think you are right, the solver uses the modified Eucken equation in order to calculate the thermal conductivity if the Sutherland transport model is selected.
However, I am not sure how good the accuracy of this model is? From what I read, the thermal conductivity calculated from the modified Eucken equation differs up to 25% from experimental values. Anyway, the accuracy is another question. It is good to know what OpenFOAM does!
Thanks again for your help!

Daniel
Daniel_P is offline   Reply With Quote

Old   November 3, 2015, 08:38
Default
  #12
New Member
 
Join Date: Sep 2015
Posts: 15
Rep Power: 10
dappe is on a distinguished road
Sorry if I'm witless but I can't understand how to get As and Ts from mu and lambda equations posted at the top of the thread! In particular in my case I'm interested in values for air.
Thanks for your help.
Alessandro
dappe is offline   Reply With Quote

Old   November 18, 2015, 09:00
Default
  #13
New Member
 
Alexey Ryakhovskiy
Join Date: Sep 2014
Posts: 11
Rep Power: 11
Alexee is on a distinguished road
Quote:
Originally Posted by dappe View Post
Sorry if I'm witless but I can't understand how to get As and Ts from mu and lambda equations posted at the top of the thread! In particular in my case I'm interested in values for air.
Thanks for your help.
Alessandro
As and Ts are the constants in mu formula, namely:

As = 1.4584E-6
Ts = 110.33
dappe and lpz456 like this.
Alexee is offline   Reply With Quote

Old   November 23, 2015, 15:12
Default Thermal conductivity for each species
  #14
New Member
 
Younis Najim
Join Date: Apr 2013
Location: Michigan State University
Posts: 12
Rep Power: 13
Heat80 is on a distinguished road
Hi,
Does anybody know how to include thermal conductivity of individual species (not for mixture) in the Fluent results. I know how to get Cp and species gradients but still struggling with thermal conductivity.
Thank you in advance
Heat80 is offline   Reply With Quote

Old   April 10, 2016, 08:00
Default As and Ts in methan combustion
  #15
Member
 
amin jalalian
Join Date: Mar 2014
Posts: 34
Rep Power: 12
amin_jalalian is on a distinguished road
Hi
I am working with methane-air 2-step combustion. In later versions of openfoam there was no need to file 'transportProperties' but in openfoam3.0+ there is need to that. In openfoam3.0+ tutorial in 'transportProperties' it was As and Ts. What values must I write for these parameters in methane combustion?
amin_jalalian is offline   Reply With Quote

Old   September 13, 2017, 13:00
Default Alternative for broken link
  #16
New Member
 
Eric Bringley
Join Date: Nov 2016
Posts: 14
Rep Power: 9
ebringley is on a distinguished road
Quote:
Originally Posted by GRAUPS View Post
Daniel, sorry this is a bit late, but I was just looking into this very thing today and I believe I found the answer. I'll post here in case anyone else needs the info.

The OpenFOAM sutherland viscosity model appears to use the modified Euken Model (based on kinetic theory) for the thermal conductivity calculation. I found the equation being used on line 149 of the sutherlandTransportI.H file ($FOAM_SRC/thermophysicalModels/specie/transport/sutherland/sutherlandTransportI.H)

I identified it as the modified Euken Model based on section 1.4.7.2.2 of this doc...

http://www.arc.vt.edu/ansys_help/cfx_mod/i1299744.html

Brock
Here is an updated link:
CFX Documentation:
https://www.sharcnet.ca/Software/Ans...cfx_intro.html

Specifically:
https://www.sharcnet.ca/Software/Ans.../i1299744.html
ebringley is offline   Reply With Quote

Old   October 16, 2018, 05:31
Default
  #17
New Member
 
Join Date: Oct 2018
Posts: 1
Rep Power: 0
Benito is on a distinguished road
Hi


I am trying to simulate heat transfer around a cylinder for air with thermal expansion in the gas with OpenFoam 3.1.



My thermoType is :


>thermoType hPsiThermo<pureMixture<sutherlandTransport<specieT hermo<hConstThermo<perfectGas>>>>>;
>mixture air 1 28.9 1007 0 1.458e-06 110.4;


for the mixture, I set to two parameters of Sutherland model (As= 1.458e-06and Ts=110.4).



How I do it for the heat conductiity?



Thanks
Benito is offline   Reply With Quote

Old   November 22, 2022, 07:55
Default
  #18
New Member
 
Adrian
Join Date: Dec 2015
Location: Germany
Posts: 6
Rep Power: 10
Henrinavier is on a distinguished road
Since I just stumbled across this problem, here are my take-aways:


The formulation of Sutherland's law to calculate the viscosity \mu in OpenFOAM deviates from the original or common formulation:
Original/Common: \mu_{0}\frac{T_{0}+C}{T+C} \left ( \frac{T}{T_{0}} \right ) ^{3/2}, with reference viscosity \mu_{0} at the reference temperature T_0 and the Sutherland coefficient C.
OpenFOAM: \frac{A_{s} T^{3/2}}{T+T_{s}}, with A_{s} = \mu_{0} \frac{T_{0} + C}{T_0^{3/2}} (and T_{s} = C just to make it a bit more complicated).


Therefore, you can use the values from literature but you'll have to calculate A_s for each substance.


Hope that helps someone some time.
Henrinavier 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
B.C. setting PK FLUENT 0 September 28, 2007 03:46
1-way FSI Setting lars CFX 0 June 18, 2007 07:06
Setting up a FAN BEN FLUENT 0 March 25, 2006 22:36
BC setting Richard CFX 1 March 20, 2006 10:49
Setting relaxationsfactors Phil FLUENT 6 July 31, 2000 05:01


All times are GMT -4. The time now is 06:21.