|
[Sponsors] |
December 10, 2013, 14:28 |
find formula from udf code
|
#1 |
Member
shahrbanoo
Join Date: Mar 2013
Posts: 63
Rep Power: 13 |
Hi every body
I have a udf code from someone else for defining viscosity of blood I want to know what was the formula that he used. could u please help me? # include "udf.h" # define n 0.67 # define alpha 1.0 # define muo 0.0042 DEFINE_PROPERTY(Power_law_model,cell,thread) { float visc,trace; float u[3],v[3],w[3]; int i; for(i=0; i<3; i++) { u[i] = C_U_G(cell,thread)[i]; v[i] = C_V_G(cell,thread)[i]; w[i] = C_W_G(cell,thread)[i]; } trace = 0.5*(2*pow(u[0],2) + pow(v[0]+u[1],2) + 2*pow(v[1],2) + pow(v[2]+w[1],2) + 2*pow(w[2],2) + pow(w[0]+u[2],2)); visc = 0.5*muo*pow(1+alpha*trace,0.67); return visc; } |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Brownian Motion UDF Code | Confuser | FLUENT | 3 | August 13, 2021 02:14 |
Where can I find the code about Uprime2Mean and Pprime2mean | Sunxing | OpenFOAM | 4 | April 16, 2013 05:23 |
flapping wing UDF code | yahya_azizi | Fluent UDF and Scheme Programming | 1 | July 24, 2012 07:24 |
Errors running allwmake in OpenFOAM141dev with WM_COMPILE_OPTION%3ddebug | unoder | OpenFOAM Installation | 11 | January 30, 2008 21:30 |
Design Integration with CFD? | John C. Chien | Main CFD Forum | 19 | May 17, 2001 16:56 |