不知道直径1mm的管内交变气体流动该选择什么样的计算模型?
请教,直径1mm的超细管内交变气体流动该选择什么样的计算模型? 计算模型就看具体情况了,边界条件到时可以利用udf定义一个位置和时间函数 位置和时间函数怎么编?有没有例子,请高手指导
回复 3楼 的帖子
fluent中文简体教程中关于udf中有一个关于位置函数的例子。fluent全攻略中关于udf中有一个关于时间函数的例子,
两个结合就可以了,
兄弟,莫非你也做热声不成。。。。
回复 4楼 的帖子
兄弟,我要编的是前10秒输入o2的质量组分为0.09,后20秒输入o2的质量组分为0,如此循环3次,我编译没错误,但是在初始化迭代时出错:Error:
FLUENT received fatal signal (ACCESS_VIOLATION)
1. Note exact events leading to error.
2. Save case/data under new name.
3. Exit program and restart to continue.
4. Report error to your distributor.
Error Object: ()
我的程序如下,帮我分析下吧:
#include <stdio.h>
#include "udf.h"
#include "mem.h"
face_t f;
Thread *t;
int i;
DEFINE_PROFILE(o2,t,i)
{
real c,E;
c=RP_Get_Real("flow-time");
E=F_YI(f,t,i);
begin_f_loop(f,t)
{
int a;
for(a=0;a<=2;a++)
{
do E=0.09;
while(c>=30*a&&c<=30*(a+1)-20);
do E=0;
while(c>=30*(a+1)-20&&c<=30*(a+1));
}
}
end_f_loop(f, t)
}
页:
[1]