anning003的个人博客分享 http://blog.sciencenet.cn/u/anning003 谈笑无鸿儒,往来有白丁

博文

fluent 入口速度udf函数

已有 20690 次阅读 2017-4-20 11:17 |个人分类:CFD|系统分类:科研笔记

1. 入口速度是位置的函数,以抛物线形入口为例:

#include "udf.h"
#include "math.h"
DEFINE_PROFILE(inlet_x_velocity, thread, position)
{
 real x[ND_ND];              
 real y;
 face_t f;
 begin_f_loop(f, thread)
   {
     F_CENTROID(x,f,thread);
     y = x[1];
     F_PROFILE(f, thread, position) = 1.5*1.0*4.0/0.1681*y*(0.41-y);
   }
 end_f_loop(f, thread)
}


2.入口速度是时间的函数:

#include "udf.h"
#include "math.h"
DEFINE_PROFILE(unsteady_velocity, thread, position)
{face_t f;
  begin_f_loop(f, thread)
  {real t = RP_Get_Real("flow-time");
     F_PROFILE(f, thread, position) = 0.0333*t/sqrt(t*t+0.0001);}
  end_f_loop(f, thread)}



https://blog.sciencenet.cn/blog-774545-1050010.html

上一篇:ABAQUS 瞬态动力学分析之受迫振动
收藏 IP: 124.115.216.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (1 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-11-25 08:31

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部