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

wall shear force with VOF

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 27, 2007, 06:28
Default wall shear force with VOF
  #1
Jürgen
Guest
 
Posts: n/a
Hello everbody,

I am just working on a simple UDF to calculate the wall shear force, it looks like

DEFINE_EXECUTE_AT_END(force)

{

Domain *d = Get_Domain(1); /* 1: mixture*/

Thread *ft;

face_t f;

real shear_force[3];

real shear_force_0 = 0.0, shear_force_1 = 0.0, shear_force_2 = 0.0;

thread_loop_f(ft,d)

{

if ((THREAD_TYPE(ft) == THREAD_F_WALL))

{

begin_f_loop(f,ft)

{

NV_V(shear_force, =, F_STORAGE_R_N3V ,ft,SV_WALL_SHEAR));

shear_force_0 += shear_force[0];

shear_force_1 += shear_force[1];

shear_force_2 += shear_force[2];

}

end_f_loop(f,ft)

}

}

}

Anyway, the UDF results in the case of a transient two-phase VoF simulation differ from that one calculated by Fluent´s force report. If a single phase flow is used, the UDF results do well agree to the standard force report. Has anybody experience with wall shear calculation for the VoF model? Thank´s in advance
  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
Force can not converge colopolo CFX 13 October 4, 2011 22:03
Multicomponent fluid Andrea CFX 2 October 11, 2004 05:12
Macro to set Wall Shear Stress Satish FLUENT 4 November 26, 2003 14:46
Re: About wall shear stress Mike FLUENT 9 November 17, 2003 14:41
Wall Shear Force Bo B. B. Jensen Main CFD Forum 3 January 28, 2000 17:48


All times are GMT -4. The time now is 16:01.