CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

peritalsis problem using DEFINE_GRID_MOTION

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 23, 2009, 13:28
Default peritalsis problem using DEFINE_GRID_MOTION
  #1
New Member
 
sreya
Join Date: Jun 2009
Posts: 3
Rep Power: 16
gudiya is on a distinguished road
hi all,
i am doing a sinusoidal peristalsis problem in which the radius of the wave is given by: R(x,t)=epsilon+(a/2)(1-cos(2*pi/lambda(x-ct) . the respective values are provided. the program is supposed to take time, and x as input.
i have used a cfd as follows:
#include "udf.h"
DEFINE_GRID_MOTION(peristalsis,domain,dt,time,dtim e)
{
Thread *tf = DT_THREAD(dt);
face_t f;
Node *v;
real NV_VEC(axis),NV_VEC(val);
real val1, val2;
int n;

/*** set deforming flag on adjacent zone ***/
/*SET_DEFORMING_THREAD_FLAG(THREAD_T0(tf));*/
/*NV_D(axis, =, 1.0, 0.0, 0.0);*/
begin_f_loop(f,tf)
{
f_node_loop(f,tf,n)
{
v=F_NODE(f,tf,n);

if (NODE_X(v) > 0.000667 && NODE_POS_NEED_UPDATE (v))
{
NODE_POS_UPDATED(v);*/

val1= 1-(cos((2*3.14/0.1)*(NODE_X(v)-0.0002*time)));
printf("%d",NODE_X(v));
val2= 0.001+((0.0004/2)*val1);
val[2] = val2;
printf("%d",val2);
NV_V(NODE_COORD(v), =, val);
/*NODE_Y(v) = val2;*/
}
}
}
end_f_loop(f,tf);
}

i have used very small time steps, but it is still giving negative cell volume as an error at the very first step. kindly help me.
hoping for a reply.
thanx a lot
gudiya is offline   Reply With Quote

Old   June 25, 2009, 07:49
Default
  #2
New Member
 
sreya
Join Date: Jun 2009
Posts: 3
Rep Power: 16
gudiya is on a distinguished road
kindly help as i am eagerly waiting for it
gudiya is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
UDF compiling problem Wouter Fluent UDF and Scheme Programming 6 June 6, 2012 04:43
Incoherent problem table in hollow-fiber spinning Gianni FLUENT 0 April 5, 2008 10:33
natural convection problem for a CHT problem Se-Hee CFX 2 June 10, 2007 06:29
Adiabatic and Rotating wall (Convection problem) ParodDav CFX 5 April 29, 2007 19:13
Is this problem well posed? Thomas P. Abraham Main CFD Forum 5 September 8, 1999 14:52


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