|
[Sponsors] |
Basic Absorption Coefficients for UDF macro DEFINE_WSGGM_ABS_COEFF |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
March 21, 2018, 11:49 |
Basic Absorption Coefficients for UDF macro DEFINE_WSGGM_ABS_COEFF
|
#1 |
New Member
moein vh
Join Date: Aug 2017
Posts: 13
Rep Power: 9 |
Hi friends,
I wanna use a non-gray model for combustion. As it is mentioned in Fluent Theory Guide, "The weighted-sum-of-gray-gases model (WSGGM) cannot be used to specify the absorption coefficient in each band.", I want to use a UDF to calculate absorption coefficient for each band, separately. I found a macro in Fluent UDF manual which is named DEFINE_WSGGM_ABS_COEFF. An example: Code:
include "udf.h" #include "materials.h" DEFINE_WSGGM_ABS_COEFF(user_wsggm_abs_coeff, c, t, xi, p_t, s, soot_conc, Tcell, nb, ab_wsggm, ab_soot) { Material *m = THREAD_MATERIAL(t); int ico2 = mixture_specie_index(m, "co2"); int ih2o = mixture_specie_index(m, "h2o"); real CO2_molf, H2O_molf; real k2, k3, k4; CO2_molf= xi[ico2]; H2O_molf= xi[ih2o]; switch (nb) { case 0 : /* First gray gas*/ { *ab_wsggm = 0; } break; case 1 : /* Second gray gas*/ { k2 = 0.1; *ab_wsggm = (k2 * (H2O_molf + CO2_molf)) * p_t; } break; case 2 : /* Third gray gas*/ { k3 = 7.1; *ab_wsggm = (k3 * (H2O_molf + CO2_molf)) * p_t; } break; case 3 : /* Fourth gray gas*/ { k4 = 60.0; *ab_wsggm = (k4 * (H2O_molf + CO2_molf)) * p_t; } } *ab_soot = 0.1; } Do you know any reference that could give me the values of basic absorption coefficients (k2, k3, k4) for various infrared and visible bands? Best Regards, Moein Vh |
|
Tags |
absorption coefficient, band, non-gray, udf, wsggm |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
timestep extraction for macro | manuc | Tecplot | 0 | August 10, 2016 13:20 |
Ansys CFX problem: unexpected very high temperatures in premix laminar combustion | faizan_habib7 | CFX | 4 | February 1, 2016 18:00 |
Radiation (P1) Absorption and Scattering Coefficients | apo | FLUENT | 0 | February 21, 2015 08:07 |
need absorption and scattering coefficients. | Pablo | FLUENT | 1 | May 16, 2007 16:50 |
Absorption Coefficients | Mark | Main CFD Forum | 4 | September 22, 2003 09:22 |