24小时热门版块排行榜    

查看: 2687  |  回复: 6

shuzhan7879

木虫 (小有名气)

[求助] Fluent编写udf时,Reaction的变量类型是什么?

在编写udf时查看help文档,有个变量类型是Reaction,如:
DEFINE VR RATE(name,c,t,r,mw,yi,rr,rr t)
Argument Type Description
symbol name——UDF name.
cell_t c——Cell index.
Thread *t——Pointer to cell thread on which the volumetric reaction rate is to be applied.
Reaction *r——Pointer to data structure that represents the current reaction.
real *mw——Pointer to array of species molecular weights.
real *yi——Pointer to array of the species mass fractions.
real *rr——Pointer to laminar reaction rate.
real *rr_t——Pointer to turbulent reaction rate.
上面几种类型,symbol、cell_t、thread、real都遇到过,但这个Reaction的类型到底是什么呢??还请各位高手点拨一下。指教一下,这个变量类型在fluent的help文档中解释在哪?
回复此楼

» 猜你喜欢

» 本主题相关价值贴推荐,对您同样有帮助:

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

mayo_0

铜虫 (小有名气)

【答案】应助回帖

★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★
感谢参与,应助指数 +1
shuzhan7879: 金币+15, ★★★很有帮助, 还请指教下从哪里找到的~~ 2013-05-17 14:56:28
shuzhan7879: 金币+5, ★★★★★最佳答案 2013-05-17 17:01:07
xiegangmai: 金币+2, 谢谢参与! 2013-05-17 21:15:23
/*************************************************************************
  Reactions
*************************************************************************/

#define REACTION_NAME_LENGTH 32
#define STOICHIOMETRY_LENGTH 128
#define MAX_COV_SPE MAX_SPE_EQNS               /*max coverage species in a reaction = max site species*/
typedef struct reaction_struct
{
  char name[REACTION_NAME_LENGTH];              /* reaction name */
  char stoichiometry[STOICHIOMETRY_LENGTH]; /* stoichiometry equation */

  int n_reactants;                            /* number of reactants */
  Material* mat_reactant[MAX_PDF_SPECIES];  /* species materials of reactants */
  int reactant[MAX_PDF_SPECIES];            /* species indices of reactants */
  real stoich_reactant[MAX_PDF_SPECIES];    /* stoichiometric coefficients of reactants */
  real exp_reactant[MAX_PDF_SPECIES];            /* rate exponents of reactants */
  real eff_reactant[MAX_PDF_SPECIES];            /* 3rd body efficiencies of reactants */

  int n_products;                            /* number of products */
  Material* mat_product[MAX_PDF_SPECIES];   /* species materials of products */
  int product[MAX_PDF_SPECIES];                    /* species indices of products */
  real stoich_product[MAX_PDF_SPECIES];            /* stoichiometric coefficients of products */
  real exp_product[MAX_PDF_SPECIES];            /* rate exponents of products */
  real eff_product[MAX_PDF_SPECIES];            /* 3rd body efficiencies of products */

  int n_others;                                    /* number of other species */
  Material* mat_other[MAX_PDF_SPECIES];            /* materials of other species */
  int other[MAX_PDF_SPECIES];                    /* species indices of other species */
  real exp_other[MAX_PDF_SPECIES];            /* rate exponents of other species */
  real eff_other[MAX_PDF_SPECIES];            /* 3rd body efficiencies of other species */

  /* Coefficients for Arrhenius rate expression */
  double A;                                /* "pre-exponential" factor */
  double logA;
  double b;                                /* temperature exponent     */
  double E;                                /* activation energy        */
  real Cmin;                            /* minimum concentration for negative reaction order */

  /* Coefficients for turbulent mixing rate (eddy breakup) model */
  real Amix, Bmix;

  /* Data for particle surface reaction */
  int diffusion_species;                /* index for diffusion limited species */
  int catalyst_species;                 /* index for catalyst species */
  real C1, eff;                         /* diffusion rate and effectiveness factor */

  /* pressure dependent reaction */
  int press_react;
  int press_type;                       /* Lindeman, Troe, SRI */
  int bath_gas;                         /* mixture or individual species */
  real press_params[8];

  int use_third_body_efficiencies;
  int surface_reaction;
  int particle_reaction;
  int backward_reaction;

  /* cache sum of exponents for rampant jacobians */
  real sum_exponents;

  int surface_coverage ;
  int num_cov_sp ;
  int cov_sp_index[MAX_COV_SPE];
  real cover_para[MAX_COV_SPE][3];
  
  struct reaction_struct *next;                /* next reaction in list */

} Reaction;
精通各种CFD项目(电磁、多相、燃烧等)。QQ85596847。
2楼2013-05-16 23:31:36
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

shuzhan7879

木虫 (小有名气)

引用回帖:
2楼: Originally posted by mayo_0 at 2013-05-16 23:31:36
/*************************************************************************
  Reactions
*************************************************************************/

#define REACTION_NAME_LENGTH 32
...

请问这段代码是出自哪里呢?fluent的help文档里有吗?
3楼2013-05-17 09:17:59
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

shuzhan7879

木虫 (小有名气)

引用回帖:
3楼: Originally posted by shuzhan7879 at 2013-05-17 09:17:59
请问这段代码是出自哪里呢?fluent的help文档里有吗?...

自己找到了,在material.h头文件中
4楼2013-05-17 16:59:24
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

5超7

至尊木虫 (著名写手)

菜鸟

引用回帖:
2楼: Originally posted by mayo_0 at 2013-05-16 23:31:36
/*************************************************************************
  Reactions
*************************************************************************/

#define REACTION_NAME_LENGTH 32
...

udf帮助里面好像没有这个程序的把?
我要奋斗到底
5楼2013-05-18 08:04:52
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

shuzhan7879

木虫 (小有名气)

引用回帖:
5楼: Originally posted by 5超7 at 2013-05-18 08:04:52
udf帮助里面好像没有这个程序的把?...

不在udf帮助里,在Fluent.Inc安装目录下搜头文件materials.h,里面就有段代码
6楼2013-05-20 15:55:09
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

5超7

至尊木虫 (著名写手)

菜鸟

引用回帖:
6楼: Originally posted by shuzhan7879 at 2013-05-20 15:55:09
不在udf帮助里,在Fluent.Inc安装目录下搜头文件materials.h,里面就有段代码...

这样的程序很纠结,都不知道宏该怎么用
我要奋斗到底
7楼2013-05-21 08:04:23
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 shuzhan7879 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[基金申请] 某些机构,以效率低为荣,以效率低作为存在感 +9 yuleib84 2026-08-25 10/500 2026-08-25 17:14 by alexon
[基金申请] 今天务委会开完了,明天出结果吗 +11 angus9576 2026-08-25 11/550 2026-08-25 17:08 by ZJTJZ
[基金申请] 2026国自然函评费到账 +20 羊腰板 2026-08-21 23/1150 2026-08-25 16:34 by zsna
[基金申请] 在坚冰还盖着北海的时候,我看到了怒放的梅花。 +6 ziyangfang 2026-08-25 8/400 2026-08-25 16:28 by 宝贝的猪
[基金申请] 今日不放榜?网传国自然预计 8 月 27 日可查结果 +17 医学老男孩 2026-08-20 22/1100 2026-08-25 15:36 by 医学老男孩
[基金申请] 放榜前的不淡定 20+4 snowwithsea 2026-08-19 18/900 2026-08-25 14:50 by Weed114114
[基金申请] 什么时候开奖? +12 CrisMessi 2026-08-18 13/650 2026-08-25 14:40 by ZJTJZ
[基金申请] 如果此刻你正在为国基感到焦虑,不妨来听听这首《基金之外》 +8 scalable 2026-08-24 8/400 2026-08-25 12:52 by jnhyjjm
[教师之家] 导师吐槽:我怎么摊上了这么个极品研究生! +3 苏东坡二世 2026-08-23 3/150 2026-08-25 10:35 by shisan1313
[基金申请] 2026年的国家社科基金项目通讯评审的新规则与新动向、新挑战 +5 process2012 2026-08-23 7/350 2026-08-25 09:42 by huixian257
[基金申请] 只有每年这种时候来逛逛小木虫 +25 yaoyewhu2008 2026-08-20 27/1350 2026-08-25 08:01 by Equinoxhua
[基金申请] 能否退出参与的面上项目解除限项 +21 koalala 2026-08-24 24/1200 2026-08-24 19:25 by 家与远方
[基金申请] 建议基金发布提前给出明确的时间点 +13 kulium 2026-08-21 16/800 2026-08-24 16:27 by superceng
[基金申请] 让我中一个面上吧! +13 大萍1987 2026-08-20 16/800 2026-08-24 10:23 by 太傻了
[基金申请] 今天放榜吗? +15 布布和一二 2026-08-19 16/800 2026-08-23 09:55 by 张春生
[基金申请] 时间戳今天,20号变了 +5 archvillain 2026-08-20 5/250 2026-08-22 06:12 by hui_daxiao
[基金申请] 时间戳又变了 +13 wuchongjun 2026-08-20 19/950 2026-08-21 17:21 by 紫杉醇
[基金申请] 应该是下周三26日公布了吧? +4 哈哈蛤? 2026-08-21 4/200 2026-08-21 10:58 by Vivilian
[基金申请] 今天放榜没戏了吧 +9 yuleib84 2026-08-19 11/550 2026-08-21 10:06 by gltch
[基金申请] 基金啊基金 +4 longfie172 2026-08-20 4/200 2026-08-21 08:58 by mark mao
信息提示
请填处理意见