用户定义函数(UDF)是可以编程的函数,可以与CFD软件Fluent Solver一起动态加载以增强标准功能。 UDF是用C编程语言编写的。
以下是我的UDF的一部分:
/*Memory Allocation only at first call to the subroutine*/
if(CellAroundNodeFirstCallflag==0)
{
CellAroundNodeFirstCallflag=1;
Avg_CellAroundNode =(cell_t**)calloc((Nnum+1),sizeof(cell_t));
for(i=0;i<Nnum;i++)
{
Avg_CellAroundNode[i] =(cell_t*)calloc((NCellANode+1),sizeof(cell_t));
}
}
if (Avg_CellAroundNode!=NULL)
{
Message("Check: Not Null.... \n");
}
Message("CHECK Enter... \n.");
Message("Check:Array size %d %d \n",Nnum,NCellANode);
/*Initializing the matrix*/
for(i=0;i<Nnum;i++)
{
for(j=0;j<NCellANode;j++)
{
Message("Check:Initalizing cell: %d %d \n",i,j);
Avg_CellAroundNode[i][j]=-1;
}
}
Message("CHECK Exit....");
我对使用Windows 32位中的VC ++进行上述代码编译没有任何问题。但在Windows 64位和Linux 32/64位(使用GCC)..我收到以下错误:
==============================================================================
Stack backtrace generated for process id 10801 on signal 1 :
Please include this information with any bug report you file on this issue!
==============================================================================
Data.In is read...
Check: Not Null....
CHECK Enter...
Check:Array size 10 20
Check:Initalizing cell: 0 0
Check:Initalizing cell: 0 1
Check:Initalizing cell: 0 2
.
.
Check:Initalizing cell: 7 18
Check:Initalizing cell: 7 19
Check:Initalizing cell: 8 0
/opt/Fluent.Inc/fluent6.3.26/lnamd64/2ddp/fluent.6.3.26[0xcc0e0b]
/opt/Fluent.Inc/fluent6.3.26/lnamd64/2ddp/fluent.6.3.26[0xcc0d61]
/lib64/libpthread.so.0[0x355aa0de70]
BubUDF/lnamd64/2ddp/libudf.so(NodeAvg+0x104)[0x2ba2089bc1bd]
Error: fluent.6.3.26 received a fatal signal (SEGMENTATION VIOLATION).
你能否帮我解决这个问题?
答案 0 :(得分:2)
你的第一个分配需要分配一个指向cell_t的指针,但是你正在分配一个cell_t。如果cell_t
的大小为4个字节,那么它们就是它迄今为止在32位(与指针大小相同)上工作并在64位上失败的原因。在64位情况下,它将小于指针,这意味着您没有分配足够的内存并最终超出已分配的范围。你的正确代码应该是:
Avg_CellAroundNode =(cell_t**)calloc((Nnum+1),sizeof(cell_t*));
但这并没有解释为什么它在32位Linux上失败了。