|
[Sponsors] |
June 2, 2009, 13:49 |
UDF for Herschel-Bulkely model
|
#1 |
New Member
emad khazal
Join Date: Mar 2009
Posts: 23
Rep Power: 17 |
Dear All
I would to used Herschel-Bulkely model but my model don't have Yielding Viscosity. Can be any body help me to use model in Fluent for Herschel-Bulkely model only don't have the Yielding Viscosity term. Please, If any body have UDF for Herschel-Bulkely model send me. Many Thanks for help me Emad |
|
June 17, 2009, 10:33 |
|
#2 |
Member
Laurent B
Join Date: Jun 2009
Location: Lille, FRANCE
Posts: 70
Rep Power: 17 |
#include "udf.h"
#include "mem.h" DEFINE_PROPERTY(cell_viscosity, cell, thread) { real mu_lam; real K=134.0; real A=0.17; real gamma; real strain=C_STRAIN_RATE_MAG(cell, thread); if(strain==0) { gamma=11.126; } else { gamma=strain; } mu_lam=K*pow(gamma,(A-1)); return mu_lam; } |
|
June 20, 2009, 03:54 |
|
#3 |
New Member
emad khazal
Join Date: Mar 2009
Posts: 23
Rep Power: 17 |
Dear Lauren
Meny Thanks for reply. But I have some quations what mean terms K and A, I thanks the Herschel-Bulkley model have fluid yield stress where this term in your eqation. I would like to send me all terms with definetion. Emad A. My e-mail Emad_ab74@yahoo.com |
|
June 22, 2009, 03:02 |
|
#4 |
Member
Laurent B
Join Date: Jun 2009
Location: Lille, FRANCE
Posts: 70
Rep Power: 17 |
A power law index, K consistency
add the yield stress in the definition of mu_lam mu_lam=K*pow(gamma,(A-1)) + yield_stress/gamma; |
|
July 6, 2009, 16:26 |
|
#5 |
New Member
emad khazal
Join Date: Mar 2009
Posts: 23
Rep Power: 17 |
Dear Lauren
Meny Thanks for reply. I don't understand this term if(strain==0) { gamma=11.126; the number 11.126 from where equation. Many Thanks again fro help me |
|
July 20, 2009, 09:16 |
|
#6 |
Member
Laurent B
Join Date: Jun 2009
Location: Lille, FRANCE
Posts: 70
Rep Power: 17 |
i don't know exactly but it will be better to write something like
if strain < strain_min then mu_lam=mu_min if strain > strain_max then mu_lam=mu_max |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
DO radiation method, non-gray band model, UDF | wouter | Fluent UDF and Scheme Programming | 5 | March 23, 2017 23:03 |
Can Fluent Import New Turbulence Model By UDF? | Andy Cong | FLUENT | 4 | March 25, 2016 14:14 |
The problem of UDF in Non premixed combustion model | zhangyuan | Main CFD Forum | 0 | May 25, 2009 10:41 |
Using UDF to model bubble growing in a Fluid | Daniel Ofori | FLUENT | 0 | September 6, 2006 17:44 |
help; UDF of VOF model | Jay | FLUENT | 1 | March 5, 2005 01:00 |