CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   FLUENT (https://www.cfd-online.com/Forums/fluent/)
-   -   how to solve "parse error'? (https://www.cfd-online.com/Forums/fluent/35979-how-solve-parse-error.html)

wanghong March 9, 2005 20:00

how to solve "parse error'?
 
HI,everyone, My UDF¡¯name is t.c. but when compiling it in FLUENT[3d,segregated,lam],that is, define user-defined functions interpreted my computer give me following information: Cpp--IC:\FLUENT.INC\FLUENT\fluent6.0/src -IC:\FLUENT.INC\FLUENT\fluent6.0/cortex/src -IC:\FLUENT.INC\FLUENT\fluent6.0/client/src -IC:\FLUENT.INC\FLUENT\fluent6.0/multiport/src -I. -DUDFCONFIG_H="<udfconfig.h>" t.cError: t.c: line 1: parse error. My program is as follow: /************************************************** ********************/ /* unsteady.c */ /* UDF for specifying a transient velocity profile boundary condition */ /************************************************** ********************/ #include "udf.h" DEFINE_PROFILE(unsteady_velocity, thread, position) { face_t f; begin_f_loop(f, thread) { real t = RP_Get_Real("flow-time"); F_PROFILE(f, thread, position) = 20. + 5.0*sin(10.*t); } end_f_loop(f, thread) }

that is,the computer can not find head files of UDF.Why?? thanks.


All times are GMT -4. The time now is 07:36.