UDF Fluent文件无法解释

时间:2018-08-11 12:50:09

标签: user-defined-functions fluent ansys

我需要帮助才能将2个UDF文件插入一个Fluent解决方案中。现在,请让我看看下面的代码有什么问题,因为它返回了错误。

#include "udf.h"

DEFINE_ON_DEMAND(Temp_grad_ondemand)
{
    Domain *d;
    cell_t c;
    Thread *t;
    d = Get_Domain(1);

    thread_loop_c(t,d)
        {
        begin_c_loop(c,t)
        {

        C_UDMI(c,t,1) = NV_MAG(C_T_G(c,t));

        }
    end_c_loop(c,t)
    }
}

DEFINE_PROFILE(unsteady_velocity, thread, position) 
{
  face_t f;
  real t = CURRENT_TIME;

  begin_f_loop(f, thread)
    {   
      F_PROFILE(f, thread, position) = 20. + 5.0*sin(10.*t);
    }
  end_f_loop(f, thread)
}

0 个答案:

没有答案