|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
我想求一个边界上的温度梯度,编译通过了可是一连接到边界上就出错:
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: ()
这是源程序,帮忙看看.多谢!
DEFINE_PROFILE(boiling,thread,position)
{
cell_t c;
double g;
begin_c_loop(c,thread)
{
g=C_T_RG(c,thread)[1];
F_PROFILE(c,thread,position)=g;
}
end_c_loop(c,thread)
} |
|