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:粘度μ为常数,并有普朗特数公式:

来计算,其中需要制定μ和Pr。
通过对该公式进行变形,我们可以计算得到热导率为:

OpenFOAM当中物性参数的设置的更多相关文章
- openfoam变热物性参数的设置【转载】
转载自:http://blog.sina.com.cn/s/blog_9de422500102va73.html 物性参数在constant/thermophysicalProperties文件中设置 ...
- in_array 的第三个参数strict设置为 true
var_dump(in_array(0, array('s' )); 这句话的结果是bool(true). 因为in_array会将0 和's' 进行比较,0是number类型,'s'是string类 ...
- 如何把in_array 的第三个参数strict设置为 true
var_dump(in_array(0, array('s' )); 这句话的结果是bool(true). 因为in_array会将0 和's' 进行比较,0是number类型,'s'是string类 ...
- web.xml中servlet初始化参数的设置
<context-param><param-name>param1</param-name><param-value>value1</param- ...
- 关于MySql链接url参数的设置
jdbc.driverClassName=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/database?useUnicode=t ...
- [Oracle][Standby][PDB]在PDB中修改参数,设置范围为 SPFILE,报 ORA-65099错误
[Oracle][Standby][PDB]在PDB中修改参数,设置范围为 SPFILE,报 ORA-65099错误 在Data Gaurd 的 Standby (或 CDB 是 Read Only ...
- 内核参数SEMMSL SEMMNS SEMOPM SEMMNI参数的设置
内核参数SEMMSL SEMMNS SEMOPM SEMMNI参数的设置 转自:http://www.dbafree.net/?p=92 这四个参数自己一直没搞清楚 今天问了下同事,大概整了一下 ...
- LoadRunner中参数的设置
LoadRunner中参数的设置 参数个数:10个 tester1.tester2.tester3…tester10 迭代次数:2次 场景设置(一):Sequential+Each Iteration ...
- javabean 参数收集 设置属性 设置不同级别的域对象的属性 默认存储在pagecontext中
javabean 参数收集 设置属性 设置不同级别的域对象的属性 默认存储在pagecontext中
随机推荐
- Coldfusion Sql查询分组输出
<cfoutput query="myQry" group="date"> #date# <cfoutput> #detail# < ...
- vue项目在ie中空白问题
vue项目在ie浏览器中出现空白,f12打开后发现在body下面就只有一个div盒子,因此我们可以猜测就是js没有引入导致的,所有网上看了一些相关的才知道,在ie中无法解析es6或者版本更高的语法,所 ...
- sqlite移植
编译 # tar xvf sqlite-3.6.16.tar.gz # cd sqlite-3.6.16 # ./configure # ./configure --host=arm-linux -- ...
- java设计模式--观察者模式和事件监听器模式
观察者模式 观察者模式又称为订阅—发布模式,在此模式中,一个目标对象管理所有相依于它的观察者对象,并且在它本身的状态改变时主动发出通知.这通常透过呼叫各观察者所提供的方法来实现.此种模式通常被用来事件 ...
- The server quit without updating PID file
[root@fjgh ~]# service mysqld start Starting MySQL... ERROR! The server quit without updating PID fi ...
- git 分支查看与切换
git 分支查看与切换 # 1.查看所有分支 > git branch -a # 2.查看当前使用分支(结果列表中前面标*号的表示当前使用分支) > git branch # 3.切换分支 ...
- zabbix的psk加密结合zabbix_get取值
转载:https://www.xj123.info/7386.html 参考文档:https://www.zabbix.com/documentation/3.0/manpages/zabbix_ge ...
- Educational Codeforces Round 71 (Rated for Div. 2)-E. XOR Guessing-交互题
Educational Codeforces Round 71 (Rated for Div. 2)-E. XOR Guessing-交互题 [Problem Description] 总共两次询 ...
- STL详细介绍(更新中~~~)
目录 string string的常见构造函数 string与char *(或const char*)之间的转换 string 转化为const char* const char* 转化为string ...
- python3 推荐使用super调用base类方法
from:https://python3-cookbook.readthedocs.io/zh_CN/latest/c08/p07_calling_method_on_parent_class.htm ...