第六章 工具-英语笔译专业论文.docxVIP

  1. 1、本文档共34页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  5. 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  6. 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  7. 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  8. 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
第六章 工具-英语笔译专业论文

第六章 第六章 Utilities (工具) PAGE PAGE 3 6.2.1 Looping over Cell Threads in a Domain ( thread_loop_c) ? 查询控制区的单元线 6.2.2 Looping over Face Threads in a Domain ( thread_loop_f) ? 查询控制区的面 6.2.3 Looping over Cells in a Cell Thread ( begin...end_c_loop) ? 查询单元线中的单元 6.2.4 Looping over Faces in a Face Thread ( begin...end_f_loop) ? 查询面单元中的面 6.2.5 Looping over Faces on a Cell ( c_face_loop) ? 查询单元面 6.2.6 Looping over Nodes of a Cell ( c_node_loop) ? 查询单元节点 6.2.1 查询控制区的单元线 当你想查询给定控制区的单元线时,你可以用 thread_loop_c。它包含单独的说 明,后面是对控制区的单元线所做操作,正如下面显示的包含在{ }中。注意: thread_loop_c 在执行上和 thread_loop_f 相似,参考 6.2.2 部分。 Domain *domain; Thread *c_thread; thread_loop_c(c_thread, domain) /*loops over all cell threads in domain*/ { } 6.2.2 查询控制区的面 当你想要查询给定控制区的面时,你可以应用 thread_loop_f。它包含单独的说 明,后面是对控制区的面单元所做操作,正如下面显示的包含在{ }中。注意: thread_loop_f 在执行上和 thread_loop_c 相似,参考 6.2.1 部分。 Thread *f_thread; Domain *domain; thread_loop_f(f_thread, domain)/* loops over all face threads in a domain*/ { } 6.2.3 查询单元线中的单元 当你想要查询给定单元线 c_thread 上所有的单元时,你可以应用 begin_c_loop 和 end_c_loop。它包含 begin 和 end loop 的说明,完成对单元线中单元所做的 操作,定义包含在{ }中。当你想查找控制区单元线的单元时,应用的 loop 全嵌 套在 thread_loop_c 中。 cell_t c; Thread *c_thread; begin_c_loop(c, c_thread) /* loops over cells in a cell thread */ { } end_c_loop(c, c_thread) 例子: /* Loop over cells in a thread to get information stored in cells. */ begin_c_loop(c, c_thread) { /* C_T gets cell temperature. The += will cause all of the cell temperatures to be added together. */ temp += C_T(c, c_thread); } end_c_loop(c, c_thread) } 6.2.4 查询面线中的面 当你想要查找给定面线 f_thread 的所有的面时,你可以用 begin_f_loop and end_f_loop。它包含 begin 和 end loop 的说明,完成对面线中面单元所做的操 作,定义包含在{ }中。当你想查找控制区面线的所有面时,应用的 loop 全嵌套 在 thread_loop_f 中。 face_t f; Thread *f_thread; begin_f_loop(f, f_thread) /* loops over faces in a face thread */ { } end_f_loop(f, f_thread) 例子: /* Loop over faces in a face thread to get the information stored on faces. */ begin_f_loop(f, f_thread) { /* F_T gets face temperature. The += will cause all of the face temp

您可能关注的文档

文档评论(0)

peili2018 + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档