24小时热门版块排行榜    

查看: 2692  |  回复: 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的回帖

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的回帖
查看全部 7 个回答

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

木虫 (小有名气)

引用回帖:
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的回帖
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[公派出国] 售SCI一区文章,我:8.O.551.O.5.4,科目全,可伽急 +3 PbwVEMK5haaE 2026-08-25 4/200 2026-08-26 03:20 by cNXvBfCpiZOM
[考博] 售SCI一区T0P文章,我:8.O.55.1.O.5.4,科目全,可+急 +3 Qj98d49dHFb9 2026-08-25 4/200 2026-08-26 03:08 by cNXvBfCpiZOM
[论文投稿] 售SCI一区T0P文章,我:8O.55.1.O.5.4,科目齐全,可+急 +3 7K1CJE38xLG4 2026-08-25 4/200 2026-08-26 02:04 by cNXvBfCpiZOM
[基金申请] 2026年8月25日国自然放榜前突然收到列入评审专家邮件,有关系吗? +17 木水思豆 2026-08-25 20/1000 2026-08-26 01:26 by chengyan1220
[基金申请] 在坚冰还盖着北海的时候,我看到了怒放的梅花。 (金币+10) +6 ziyangfang 2026-08-25 9/450 2026-08-25 20:26 by huagongfeihu
[基金申请] 有没有大神帮我看看基金代码 28+4 1234567wang 2026-08-24 10/500 2026-08-25 19:15 by lfy8008
[基金申请] 某些机构,以效率低为荣,以效率低作为存在感 +9 yuleib84 2026-08-25 10/500 2026-08-25 17:14 by alexon
[基金申请] 2026国自然函评费到账 +20 羊腰板 2026-08-21 23/1150 2026-08-25 16:34 by zsna
[基金申请] 今日不放榜?网传国自然预计 8 月 27 日可查结果 +17 医学老男孩 2026-08-20 22/1100 2026-08-25 15:36 by 医学老男孩
[基金申请] 没有任何消息-是不是就凉了 +9 图啦图啦 2026-08-24 10/500 2026-08-25 11:59 by 南海小哥
[基金申请] 人气不行了 +11 fansofjerry 2026-08-21 11/550 2026-08-25 11:04 by 孤独的英雄6
[教师之家] 导师吐槽:我怎么摊上了这么个极品研究生! +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
[基金申请] 今天基金会出结果吗?20260819 +17 kkkl_v 2026-08-19 18/900 2026-08-25 09:41 by windflowerwy
[基金申请] 范进中举一文的中心思想 +7 炎黄贵胄 2026-08-22 8/400 2026-08-25 08:48 by ZJTJZ
[基金申请] 只有每年这种时候来逛逛小木虫 +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 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
[基金申请] 基金啊基金 +4 longfie172 2026-08-20 4/200 2026-08-21 08:58 by mark mao
信息提示
请填处理意见