|
[Sponsors] |
January 23, 2012, 05:54 |
Macros for discrete ordinate, non gray model
|
#1 |
New Member
Join Date: Jun 2011
Posts: 18
Rep Power: 15 |
Hi all,
I am using the discrete ordinate, non gray radiation model. I am after the macros to access the incident radiation for each band and the absorption coefficient for each band as well. Anyone able to assist? Thanks! Yash |
|
March 19, 2012, 03:13 |
|
#2 |
New Member
Ali Emadi
Join Date: Jan 2011
Posts: 18
Rep Power: 15 |
Hello Yash
you can access to Incident radiation of each cell by using the following macro(in DOM): C_STORAGE_R_XV(c,t,SV_DO_IRRAD,i) where i is the number of grey band and you can change it from 0 to the last band. you yourself define absorption coefficient for each band! so you obviously know its value. If you want to define not a constant absorption coefficient for each band you can use it's standard macro: DEFINE_GRAY_BAND_ABS_COEFF(name,c,t,nb) as an example: #include "udf.h" DEFINE_GRAY_BAND_ABS_COEFF(user_gray_band_abs,c,t, nb) { real abs_coeff = 0; real T = C_T(c,t); switch (nb) { case 0 : abs_coeff = 1.3+0.001*T; break; case 1 : abs_coeff = 2.7 + 0.005*T; break; } return abs_coeff; } good luck Ali |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Atomization and Breakup model | xck1986 | OpenFOAM | 4 | May 31, 2014 05:43 |
Problems bout CFD model of biomass gasification, Downdraft gasifier | wanglong | FLUENT | 2 | November 26, 2009 00:27 |
help for different between les model (subgrid-scale model) | liuyuxuan | FLUENT | 1 | October 2, 2009 16:25 |
Grid resolution for full-scale and down scaled model | gravis | Main CFD Forum | 0 | October 2, 2009 11:27 |
Discrete Ordinate Model | Raffi Kazazian | Main CFD Forum | 1 | January 4, 2000 03:25 |