CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT

UDF & MDM

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 19, 2003, 08:28
Default UDF & MDM
  #1
paolo
Guest
 
Posts: n/a
Hi all, can someone tell me why this udf doesn't work? I'using that to simulate an impuse shaped plunge velocity in time for a profile and I want to calculate the CL for the profile. the udf works when I use for qdot the function sinus. As soon as I use the exponential function fluent doesn't seem to understand it in the sense that the resulting CL is zero, so for him I'm inputting a zero amplitude velocity.....

#include "udf.h" #include "dynamesh_tools.h" #include "stdio.h" #include "math.h"

DEFINE_CG_MOTION(plunge, dt, vel, omega, time, dtime) { real pi; real Timp; real Amp; real qdot; Amp = 0.000088363; Amp = 0.0000088363; Timp = 0.08; pi = 3.145926; NV_S (vel, =, 0.0); NV_S (omega, =, 0.0); qdot = 0.0; /* if (time < 1*Timp) */ if (time == dtime)

{

qdot = Amp*exp(time);

qdot = Amp*exp(-((time-Timp/2)/(0.1*Timp))*((time-Timp/2)/(0.1*Timp)));

qdot = Amp*pi/Timp*sin(2*pi*time/Timp);

qdot = Amp*exp(-pow((time-Timp/2)/(0.1*Timp),2));

qdot = 100*Amp;

} else

{

qdot = 0.0;

} vel[1]= qdot; }
  Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Dynamic Mesh UDF Qureshi FLUENT 7 March 23, 2017 07:37
UDF parallel error: chip-exec: function not found????? shankara.2 Fluent UDF and Scheme Programming 1 January 16, 2012 22:14
MDM udf to change size of bubble efra FLUENT 1 May 16, 2007 12:20
UDF in MDM Tutorial mAx FLUENT 0 November 28, 2005 07:34
UDF...UDF...UDF...UDF Luc SEMINEL FLUENT 0 November 25, 2002 04:03


All times are GMT -4. The time now is 10:20.