|
[Sponsors] |
July 27, 2007, 07:28 |
wall shear force with VOF
|
#1 |
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 |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Force can not converge | colopolo | CFX | 13 | October 4, 2011 23:03 |
Multicomponent fluid | Andrea | CFX | 2 | October 11, 2004 06:12 |
Macro to set Wall Shear Stress | Satish | FLUENT | 4 | November 26, 2003 15:46 |
Re: About wall shear stress | Mike | FLUENT | 9 | November 17, 2003 15:41 |
Wall Shear Force | Bo B. B. Jensen | Main CFD Forum | 3 | January 28, 2000 18:48 |