24小时热门版块排行榜    

Znn3bq.jpeg
查看: 4955  |  回复: 19
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

SJTU_SZ

金虫 (小有名气)

[求助] FLUENT单机多核并行运算导入udf之后,初始化报错,Received signal SIGSEGV 已有1人参与

用FLUENT的圆管内超临界水流动传热,采用SST模型,用udf在material物性设置里面定义超临界水的物性随温度的变化,然后初始化的时候报错,错误信息如下:
==============================================================================

Node 4: Process 19756: Received signal SIGSEGV.

==============================================================================
MPI Application rank 0 exited before MPI_Finalize() with status 2
The fl process could not be started.
下面是我的udf代码,udf直接在记事本里写的,然后把扩展名改成.c   ,请问是udf的问题,还是我别的什么地方弄错了?PS,我串行运算的时候也报错Error:  received a fatal signal (Segmentation fault).
Error Object: #f,求大神指教!

#include "udf.h"
DEFINE_PROPERTY(viscosity_polynomial,cell,thread)
{
real viscosity;
real temperature;
temperature=C_T(cell,thread);
if(temperature>=540&&temperature<670)
  viscosity=-0.02974+(2.06393E-4)*temperature-(5.32888E-7)*pow(temperature,2)+(6.09625E-10)*pow(temperature,3)-(2.61186E-3)*pow(temperature,4);
else if(temperature>=670&&temperature<720)
  viscosity=1.71089-0.00967*temperature+(2.05003E-5)*pow(temperature,2)-(1.93154E-8)*pow(temperature,3)+(6.82497E-12)*pow(temperature,4);
else
  viscosity=4.60518E-4-(1.89262E-6)*temperature+(3.04391E-9)*pow(temperature,2)-(2.12799E-12)*pow(temperature,3)+(5.55983E-16)*pow(temperature,4);
return viscosity;
}
DEFINE_PROPERTY(density_polynomial,cell,thread)
{
real density;
real temperature;
temperature=C_T(cell,thread);
if(temperature>=540&&temperature<650)
  density=-102064.64697+719.52081*temperature-1.88404*pow(temperature,2)+0.00219*pow(temperature,3)-(9.59734E-7)*pow(temperature,4);
else if(temperature>=650&&temperature<680)
  density=1.05818E8-637783.40085*temperature-1441.25876*pow(temperature,2)-1.44725*pow(temperature,3)+(5.44861E-4)*pow(temperature,4);
else if(temperature>=680&&temperature<720)
  density=1.45053E7-81799.75493*temperature+173.01793*pow(temperature,2)-0.16267*pow(temperature,3)+(5.7363E-5)*pow(temperature,4);
else
  density=9785.72376-39.65886*temperature+0.06117*pow(temperature,2)-(4.2103E-5)*pow(temperature,3)+(1.08805E-8)*pow(temperature,4);
return density;
}
DEFINE_PROPERTY(thermal_conductivity_polynomial,cell,thread)
{
real tc;
real temperature;
temperature=C_T(cell,thread);
if(temperature>=540&&temperature<650)
  tc=-46.31273+0.31446*temperature-(7.86857E-4)*pow(temperature,2)+(8.75221E-7)*pow(temperature,3)-(3.6729E-10)*pow(temperature,4);
else if(temperature>=650&&temperature<680)
  tc=-10013.68647+61.91813*temperature-0.14356*pow(temperature,2)+(1.47931E-4)*pow(temperature,3)-(5.7166E-8)*pow(temperature,4);
else if(temperature>=680&&temperature<750)
  tc=4105.15866-22.5438*temperature+0.04644*pow(temperature,2)-(4.25217E-5)*pow(temperature,3)+(1.46033E-8)*pow(temperature,4);
else
  tc=7.23134-0.02932*temperature+(4.49844E-5)*pow(temperature,2)-(3.0539E-8)*pow(temperature,3)+(7.76698E-12)*pow(temperature,4);
return tc;
}
DEFINE_SPECIFIC_HEAT(specific_heat_polynomial,T,Tref,h,yi)
{
real cp;
if(T>=540&&T<650)
  cp=1.02221E7-70713.70545*T+183.47921*pow(T,2)-0.21157*pow(T,3)+(9.15037E-5)*pow(T,4);
else if(T>=650&&T<675)
  cp=-2.81076E10+(1.69883E8)*T-384994.92162*pow(T,2)+387.72315*pow(T,3)-0.14641*pow(T,4);
else if(T>=675&&T<710)
  cp=-5.27703E9+3.05849E7*T-66448.74541*pow(T,2)+64.13917*pow(T,3)-0.02321*pow(T,4);
else if(T>=710&&T<900)
  cp=6.4899E6-31048.84474*T+55.78053*pow(T,2)-0.04456*pow(T,3)+(1.33526E-5)*pow(T,4);
else
  cp=117954.93316-415.67508*T+0.56772*pow(T,2)-(3.47613E-4)*pow(T,3)+(8.04047E-8)*pow(T,4);
*h=cp*(T-Tref);
return cp;
}
回复此楼

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

科研!科研!
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

SJTU_SZ

金虫 (小有名气)

引用回帖:
8楼: Originally posted by gafeide at 2015-06-26 12:31:07
但是你在函数声明的括弧里面的是h,却没带星号,这是那个意思啊,其实我对udf不熟,仅仅对c的了解一些
...

你说的函数声明是fluent自带的宏,不用我定义,我只是调用,这个宏里面,h默认就是指针类型。谢谢你的回复
科研!科研!
9楼2015-06-26 15:07:21
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 20 个回答

SJTU_SZ

金虫 (小有名气)

真心求高人相助,弄了好几天了,没进展!
科研!科研!
2楼2015-06-23 08:43:25
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

gafeide

铜虫 (初入文坛)

倒数第三行,*h是什么意思啊

[ 发自小木虫客户端 ]
3楼2015-06-23 13:00:38
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

SJTU_SZ

金虫 (小有名气)

引用回帖:
3楼: Originally posted by gafeide at 2015-06-23 13:00:38
倒数第三行,*h是什么意思啊

显焓的值,我看fluent帮助里面这么写的,要求定义这么一个形式。
科研!科研!
4楼2015-06-23 14:20:42
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 电气专硕320求调剂 +5 小麻子111 2026-04-10 5/250 2026-04-12 02:43 by 秋豆菜芽
[考研] 296求调剂 +6 汪!?! 2026-04-09 6/300 2026-04-11 11:25 by zhq0425
[考研] 农学0904 312求调剂 +6 Say Never 2026-04-10 6/300 2026-04-11 10:33 by wwj2530616
[考研] 263能源动力专硕求调剂 +3 加大号饭盒袋 2026-04-10 3/150 2026-04-10 22:23 by 286640313
[考研] 263能源动力专硕求调剂 +4 加大号饭盒袋 2026-04-10 4/200 2026-04-10 20:52 by gong120082
[考研] 284求调剂 +9 让我上岸吧阿西 2026-04-09 11/550 2026-04-10 19:18 by 靖jing
[考研] 一志愿华东师范生物学326分,求调剂 +8 刘墨墨 2026-04-09 8/400 2026-04-10 12:00 by pengliang8036
[考研] 292求调剂 +9 笑笑袁 2026-04-09 9/450 2026-04-10 10:05 by LHGeng
[考研] 一志愿华工085600 331分 +6 天下ww 2026-04-09 6/300 2026-04-09 18:59 by l_paradox
[考研] 367求调剂 +10 hffQAQ 2026-04-09 10/500 2026-04-09 18:06 by lijunpoly
[考研] 材料专硕322 +14 哈哈哈吼吼吼哈 2026-04-05 14/700 2026-04-09 13:25 by 5268321
[考研] 283电子信息求调剂 +4 三石WL 2026-04-08 4/200 2026-04-09 10:21 by wp06
[考研] 土木水利专硕276分求调剂 +6 我想上学!!6 2026-04-05 9/450 2026-04-08 17:45 by 宋小宝HQ
[考研] 一志愿郑州大学085600求调剂 +21 吃的不少 2026-04-05 24/1200 2026-04-08 16:47 by sunhuadong
[考研] 求考研材料调剂 +3 材化李可 2026-04-07 3/150 2026-04-08 00:21 by JourneyLucky
[考研] 材料工程专业日语生求调剂 +9 111623 2026-04-07 9/450 2026-04-07 23:31 by 一只好果子?
[考研] 085100建筑学 寻求跨专业调剂 一志愿南大294分 校级省级国家级奖项若干 踏实肯干 +3 1021075758 2026-04-06 4/200 2026-04-07 09:23 by 蓝云思雨
[考研] 304求调剂 +4 luoye0105 2026-04-05 4/200 2026-04-06 21:05 by 木子君1218
[考研] 生物与医药求调剂 +7 heguanhua 2026-04-05 8/400 2026-04-06 18:41 by macy2011
[考研] (调剂)一志愿报考哈尔滨工业大学0857资源与环境专业378分考生 +7 狠狠加油 2026-04-05 8/400 2026-04-06 16:52 by momo皓
信息提示
请填处理意见