加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

OpenFOAM当中物性参数的设置

(2016-07-23 16:11:35)
分类: OpenFOAM

固体当中物性参数的设置:

FoamFile

{

version 2.0;

format ascii;

class dictionary;

object thermophysicalProperties;

}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

 

thermoType

{

type heSolidThermo;

mixture pureMixture;

transport constIso;

thermo hConst;

equationOfState rhoConst;

specie specie;

energy sensibleEnthalpy;

}

 

mixture

{

specie

{

nMoles 1;         //摩尔数

molWeight 50;         //分子量

}

 

transport

{

kappa 8000;            //导热系数

}

 

thermodynamics

{

Hf 0;                //生成焓[J/kmol]

Cp 450;             //等压比热容[J/(kmol·K)]

}

 

equationOfState

{

rho 8000;            //密度

}

}

 

// ************************************************************************* //

 

流体当中物性参数的设置:

FoamFile

{

version 2.0;

format ascii;

class dictionary;

object thermophysicalProperties;

}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

 

//pRef    100000;                //当自然对流需要采用理想气体状态方程时,启用此项

 

thermoType

{

type heRhoThermo;

mixture pureMixture;

transport const;

thermo hConst;

//===================================================

//有自然对流存在的情况下

// equationOfState应设置为perfectGas(理想气体状态方程)

//====================================================

equationOfState rhoConst;

specie specie;

energy sensibleEnthalpy;

}

 

mixture

{

specie

{

nMoles 1;        //摩尔数

molWeight 18;    //分子量

}

equationOfState

{

//===========================

//密度

//采用理想气体状态方程时不设此项

//可根据其他物性参数计算得到

//============================

rho 1000;        

}

thermodynamics

{

Cp 4181;        //比热容

Hf 0;         //生成焓[J/kmol]

}

transport

{

mu 500;        //粘度

Pr 6.62;        //普朗特数

}

}

 

// ************************************************************************* //

 

说明:

constTransport:粘度μ为常数,并有普朗特数公式:

http://s10/middle/0066xqHTzy73tHaByg949&690

来计算,其中需要制定μPr

通过对该公式进行变形,我们可以计算得到热导率为:

http://s13/middle/0066xqHTzy73tHaF3eA4c&690

 

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有