|
[Sponsors] |
January 31, 2019, 03:05 |
velocity profile with trailing vortices
|
#1 |
New Member
bangkok
Join Date: Jan 2019
Posts: 2
Rep Power: 0 |
hi everyone,
I'm newbie for udf coding. I had tried to simulate trailing vortices from aircraft in 3D domain by using 2 ideal vortex from lamb-oseen eq. The eq. of vortex is cylindrical coordinate form. I don't know concept how to coding velocity profile of 2 vortex. Could someone explain? Thanks. |
|
February 2, 2019, 00:06 |
|
#2 |
New Member
bangkok
Join Date: Jan 2019
Posts: 2
Rep Power: 0 |
This is my code that I try to generate 1 vortex. It can run but the result is incorrect.
#include "udf.h" #define V0 0.043 #define taouzero 0.052 #define r0 0.009 #define pi 3.14159265358979323846 #define b0 0.153 #define h0 0.0765 DEFINE_INIT(vortex,d) { cell_t c ; Thread *ct ; real x[ND_ND] ; real y ; real z ; real r ; real Vzetra ; thread_loop_c(ct,d) { begin_c_loop(c,ct) { y = x[1] ; z = x[2] ; r = sqrt(pow(y,2) + pow(z,2)) ; if(sqrt(pow(x[2],2) + pow(x[1],2)) <= 0.009) { Vzetra = taouzero/(2*pi*r)*(1-exp(-pow(r,2)/pow(r0,2))); C_U(c,ct) = V0 ; C_V(c,ct) = -Vzetra*(z/r) ; C_W(c,ct) = Vzetra*(y/r) ; } else { C_U(c,ct) = 0 ; C_V(c,ct) = 0 ; C_W(c,ct) = 0 ; } } end_c_loop(c,ct) ; } } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Plot velocity profile along longitudinal axis of pipe | jorgelmilan | EnSight | 8 | July 7, 2018 15:30 |
Velocity profile reading in Fluent | mkpm | FLUENT | 0 | July 28, 2016 03:12 |
InterFoam - Validation for velocity profile in simple channel | me.ouda | OpenFOAM Running, Solving & CFD | 0 | October 19, 2015 07:42 |
3d velocity profile at velocity inlet | swethaprakash | FLUENT | 3 | September 1, 2015 03:10 |
[boundary condition] logarithmic velocity profile | cfdworker | FLUENT | 2 | April 18, 2009 00:36 |