CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   Fluent UDF and Scheme Programming (https://www.cfd-online.com/Forums/fluent-udf/)
-   -   Warning: print buffer exceeded. (https://www.cfd-online.com/Forums/fluent-udf/134858-warning-print-buffer-exceeded.html)

liuxub@hotmail May 6, 2014 09:11

Warning: print buffer exceeded.
 
hi guys:
when i use this programme , the programme have a warning:"Warning: print buffer exceeded.",i need your help! thanks a lot.

#include "udf.h"
DEFINE_ADJUST(print_f_centroids,domain)
{
real FC[3];
face_t f;
int ID =18;
Thread *thread = Lookup_Thread(domain,ID);
begin_f_loop(f,thread)
{
F_CENTROID(FC,f,thread);
Message("x-coord = %f y-coord = %f z-coord = %f",FC[0],FC[1],FC[2]);
Message("\n");

}
end_f_loop(f,thread)

}


All times are GMT -4. The time now is 13:18.