CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   FLUENT (https://www.cfd-online.com/Forums/fluent/)
-   -   Dynamic Mesh UDF (https://www.cfd-online.com/Forums/fluent/33217-dynamic-mesh-udf.html)

Qureshi March 12, 2004 07:20

Dynamic Mesh UDF
 
Dynamic Meshing UDF's

I have done the tutorial 11.

My problems are: #1 To use the two following Sample Examples of Dynamic Meshing as mentioned in the documentation.

How can this be done? Is there any specific case for which these are being made? I have been able to build the UDF file for a simple grid with a bar being placed in flow but when I build it I get the message: -------------------------------------- " 1 file(s) copied. (system "move user_nt.udf libudf\ntx86\2d")0 (system "copy C:\FLUENT.INC\fluent6.1\src\makefile_nt.udf libudf\ntx86\2d\makefile") 1 file(s) copied. 0 (chdir "libudf")() (chdir "ntx86\2d")() Def_Grid_Geom.c # Generating udf_names.c because of makefile Def_Grid_Geom.obj

Done." -------------------------------------- And when I load it I get the message:

-------------------------------------- "Opening library "libudf"... Error: open_udf_library: The system cannot find the file specified.

Error Object: () " -------------------------------------- #2 The documentation of UDF does't give much help on writing UDF's except you tend to know what Define Macro are to be used, but making a UDF on a physical problem isn't well explained. Anyone having any guidelines?

4.5.2 DEFINE_GEOM

Description

The DEFINE_GEOM macro is used to define the geometry of a deforming zone. By default, FLUENT provides a mechanism for defining node motion along a planar or cylindrical surface. When FLUENT updates a node on a deforming zone (e.g., through spring-based smoothing or after local face re-meshing) the node is ``repositioned'' by calling the DEFINE_GEOM UDF. Note that UDFs that are defined using DEFINE_GEOM can only be executed as compiled UDFs.

The following UDF, named parabola, is executed as a compiled UDF.

4.5.3 DEFINE_GRID_MOTION

Description

By default, FLUENT updates the node positions on a dynamic zone by applying the solid-body motion equation. This implies that there is no relative motion between the nodes on the dynamic zone. However, if you need to control the motion of each node independently, then you can use a grid motion UDF. For a DEFINE_GRID_MOTION UDF, you can update the position of each node based on, for example, the deflection due to fluid-structure interaction.

#3 Has anyone had any experience of studying an oscilating airfoil with some frequency in Fluent using UDF? I am unable to get hold of the UDF business but it seems a very promising feature of Fluent.

Any comments and suggestion in these context would be appreciated.

Qureshi.

sabbasi_mr December 2, 2009 00:27

when you recieve this: "Opening library "libudf"... Error: open_udf_library
you must do this:
Run the Vcvars32.bat file in the ..\BIN directory found in the installed directory under ..\MSDEV or ..\DevStudio\VC. This file contains the environment variables required to run build tools from a command prompt.
and run Fluent from visual c++ command prompt

osamaajaz January 13, 2017 09:39

what is #F error
 
1 Attachment(s)
respected mates, there is a problem i am facing with UDF file. Kindly check and pont out what is the main error

this is code i am using for 2D
and getting the error that is showed in the attached picture


#include "udf.h"
DEFINE_CG_MOTION(move,dt,vel,omega,time,dtime)
{
vel[1] = 0.0942*sin(0.628*time);

}

DEFINE_CG_MOTION(ball1,dt,vel,omega,time,dtime)
{
if (time>0 && time<1)
vel[1]=0.018*time;
else if (time>5 && time<5.1)
vel[1]=-0.0005;
else if (time>5.1 && time<5.5)
vel[1]=-0.035;
else
vel[1]=-0.00;

}

DEFINE_CG_MOTION(ball2,dt,vel,omega,time,dtime)
{
if (time>0 && time<0.4)
vel[1]=-0.01;
else if (time>0.4 && time<5.5)
vel[1]=0.0942*sin(0.628*time);
else if (time>5.5 && time<6.17)
vel[1]=-0.0028;
else
vel[1]=0.0942*sin(0.628*time);
}

AHF January 15, 2017 11:29

Quote:

Originally Posted by osamaajaz (Post 633156)
respected mates, there is a problem i am facing with UDF file. Kindly check and pont out what is the main error

this is code i am using for 2D
and getting the error that is showed in the attached picture


#include "udf.h"
DEFINE_CG_MOTION(move,dt,vel,omega,time,dtime)
{
vel[1] = 0.0942*sin(0.628*time);

}

DEFINE_CG_MOTION(ball1,dt,vel,omega,time,dtime)
{
if (time>0 && time<1)
vel[1]=0.018*time;
else if (time>5 && time<5.1)
vel[1]=-0.0005;
else if (time>5.1 && time<5.5)
vel[1]=-0.035;
else
vel[1]=-0.00;

}

DEFINE_CG_MOTION(ball2,dt,vel,omega,time,dtime)
{
if (time>0 && time<0.4)
vel[1]=-0.01;
else if (time>0.4 && time<5.5)
vel[1]=0.0942*sin(0.628*time);
else if (time>5.5 && time<6.17)
vel[1]=-0.0028;
else
vel[1]=0.0942*sin(0.628*time);
}

Hi
how did you compile it ?
you have to install Microsoft visual studio and then compile your code.

osamaajaz January 17, 2017 09:45

1 Attachment(s)
hi
i have installed MS VS...
you can check in the attached picture
even after that i am experiencing the same problem.

osamaajaz January 17, 2017 09:46

Quote:

Originally Posted by sabbasi_mr (Post 238419)
when you recieve this: "Opening library "libudf"... Error: open_udf_library
you must do this:
Run the Vcvars32.bat file in the ..\BIN directory found in the installed directory under ..\MSDEV or ..\DevStudio\VC. This file contains the environment variables required to run build tools from a command prompt.
and run Fluent from visual c++ command prompt

i have build the environment variables
even after that...the same error

osamaajaz January 17, 2017 09:50

without UDF, accuracy of results
 
hello mates,
if i skip UDF portion in fluent then what would be accuracy of that result?
Will it be reliable?

rsaurabh March 23, 2017 07:37

hi,
you need to check compatibility of both, ANSYS and VS.


All times are GMT -4. The time now is 19:14.