|
[Sponsors] |
January 18, 2016, 05:55 |
Building expressions on CFX
|
#1 |
New Member
Francesco
Join Date: Jan 2016
Posts: 2
Rep Power: 0 |
Hi guys,
this is my first post on CFD online! I would to have an information on building expressions on CFX starting on this UDF: #include "udf.h" #define OMEGA 7.26E-3 #define K_F0 0.0257 #define K_S0 1.0 real k_solid(real e_gas) { real k_sol; real a = K_S0/K_F0; real b = 1.25*pow((1.-e_gas)/e_gas, 10./9.); real t1 = (a-1.)/pow((1.-b/a),2.0)*(b/a)*log(a/b); real t2 = -((b-1.)/(1.-b/a))-0.5*(b+1.); real gm = (2./(1.-b/a))*(t1+t2); real k_bs = K_F0*(OMEGA*a + (1.-OMEGA)*gm); k_sol = k_bs/sqrt(1.-e_gas); return (k_sol); } DEFINE_PROPERTY(conduct_gas,cell,thread) { real k_bf, k_gas; k_bf = K_F0*(1.-sqrt(1.-C_VOF(cell,thread))); k_gas = k_bf/C_VOF(cell, thread); return (k_gas); } DEFINE_PROPERTY(conduct_solid,cell,thread) { real k_sol; real epsi_max = 1.-10*SD_EPS; real epsi = MIN( epsi_max, (1.-C_VOF(cell,thread))); k_sol = k_solid(epsi); return (k_sol); } In order to transcribe this program in CFX is necessary to know the meaning of a few variables like C_VOF, e_gas, SD_EPS. I tried searching in the Ansys library but I didn't find nothing. Where I can found them?....or does someone know the variables associated with them? Thanks for the support. |
|
January 18, 2016, 09:49 |
|
#2 |
Senior Member
Join Date: Jun 2009
Posts: 1,873
Rep Power: 33 |
If you provide the names of those variables in FLUENT, I am sure someone can pitch in for the equivalent names in CFX.
By not doing so, only those familiar with FLUENT UDF variables and ANSYS CFX Expressions would be able to help you. summary: the more information you can provide, the better. Hope the above helps |
|
April 3, 2019, 07:55 |
|
#3 |
New Member
Akash
Join Date: Sep 2016
Posts: 2
Rep Power: 0 |
Dear Sir/Madam,
I am working on a fluidized bed simulation and use the same code to specify the thermal conductivity. From what I concluded, e_gas is the voidage, C_VOF the volume fraction, however I couldn't find anything on SD_EPS, do you know what that stands for? Thank You, Sincerely, Akash ajodhia |
|
Tags |
cfx expressions, c_vof, e_gas, sd_eps |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
CFX Pre & Post Startup Error | vigges | CFX | 12 | March 17, 2023 04:30 |
CFX Post Expressions number decimals | njiang | CFX | 3 | December 13, 2013 05:39 |
Particle Interaction is CFX; Adding Interparticle Attraction such as Van Der Waals | FrankS | CFX | 11 | November 12, 2013 20:53 |
CFX Expressions | lex | CFX | 6 | January 7, 2010 09:12 |
CFX 10's solutions differ from CFX 5.7's | Atit Koonsrisuk | CFX | 4 | July 26, 2006 12:59 |