在linux环境下运行fluent,case文件中带有udf的话,jou文件应该做什么改变呢?
在linux环境下运行fluent,要通过编写jou文件来调用case文件,case文件中带有udf的话,jou文件应该做什么改变呢?现在我主要是用udf添加壁面热流,下面我黏贴上udf ,以及自己现在使用的jou文件,哪位大神帮忙指导一下,试了好多次都有问题。#include "udf.h"DEFINE_PROFILE(wall_temperature, thread, index){real x; /* this will hold the position vector */real y;face_t f;begin_f_loop(f, thread){F_CENTROID(x,f,thread);y = x;F_PROFILE(f, thread, index) =72864*y*y*y*y*y-440407*y*y*y*y+714185*y*y*y-497977*y*y+137633*y+141189;}end_f_loop(f, thread)}jou文件cd public/home/liugz/data/zqq20130507file/rcd 20130507.casdefine/user-defined/interpreted-functionwall-flux.cyesdefine/boundary conditions/wall/outwallyes/yeswall_temperaturesolve/initialize/compute-defaults/all-zonesit 10wd 20130507-0000.datexityes 先编译好UDF,在jou文件中增加调用编译后UDF库的命令即可。如果不知道如何加这条命令,只需记录一次你的操作全过程的jou,然后把其中 命令识别出来即可。
页:
[1]