用户定义函数 (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).
你们中的任何人都可以帮我解决这个问题吗?