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

6 DOF simulation

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 22, 2005, 05:01
Default 6 DOF simulation
  #1
Manoj Kumar
Guest
 
Posts: n/a
Hi

I am trying to simulate a wooden block fall in water using a udf. The simulation can be viewed at http://bb.domaindlx.com/manojkumar/s...ing_block.html

The problem is that during the initial phase of the fall, the simulation looks fine, but once it hits the water surface, the block undergoes an unnatural movement. The block rebounds from the water surface and hits one of the wall of the rectangular domain.

I am using following loop to calculate the force and the moment acting in the block.

begin_f_loop (f, t)

{

f_node_loop(f,t,n)

{

F_AREA(A,f,t);

/* x,y,z - components of Force x-component of force = Pressure on the face * x-component of Area vector */

Fx += F_P(f,t)*A[0];

Fy += F_P(f,t)*A[1];

Fz += F_P(f,t)*A[2];

node = F_NODE(f,t,n);

/* Moment (M) = vector product of Force and Displacement vector (F X r);

F = Fx i + Fy j +Fz k

r = (x - cg_x)i + (y- cg_y)j + (z - cg_z)k

*/

Mx += F_P(f,t)*(A[1]*(NODE_Z(node) - loc_z)-A[2]*(NODE_Y(node) - loc_y));

My += F_P(f,t)*(A[2]*(NODE_X(node) - loc_x)-A[0]*(NODE_Z(node) - loc_z));

Mz += F_P(f,t)*(A[0]*(NODE_Y(node) - loc_y)-A[1]*(NODE_X(node) - loc_x));

}

}

end_f_loop (f, t)

Can anyone let me know if there is any problem with force and moment calculation ?

Thanks in advance.

Manoj
  Reply With Quote

Old   September 22, 2005, 08:08
Default Re: 6 DOF simulation
  #2
Manoj Kumar
Guest
 
Posts: n/a
The force on the body reported though Fluent's Force panal and the one calculated though my udf are different. Can anyone help me out?

  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
Why my simulation not agree with the wind tunnel experiment zhaowei CFX 4 July 11, 2015 03:36
Simulation of a complex wing in solidworks flow simulation niels1900 FloEFD, FloWorks & FloTHERM 6 April 20, 2011 10:44
GUI crash and simulation engine still running RPJones FLOW-3D 2 November 9, 2010 08:18
velocity profile export from a simulation onto another sudhirlv STAR-CCM+ 1 September 12, 2010 18:57
strange simulation error Ralf Schmidt FLUENT 2 May 4, 2007 13:02


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