AIAA R-101A-2005 The CFD General Notation System C Standard Interface Data Structures.pdf
《AIAA R-101A-2005 The CFD General Notation System C Standard Interface Data Structures.pdf》由会员分享,可在线阅读,更多相关《AIAA R-101A-2005 The CFD General Notation System C Standard Interface Data Structures.pdf(200页珍藏版)》请在麦多课文档分享上搜索。
1、 Recommended Practice AIAA R-101A-2005 The CFD General Notation System Standard Interface Data Structures Downloaded by AIAA on March 27, 2014 | http:/arc.aiaa.org | DOI: 10.2514/4.479304 AIAA R-101A-2005 Recommended Practice The CFD General Notation System Standard Interface Data Structures Maintai
2、ned by The CGNS Steering Sub-committee of the AIAA CFD Committee on Standards Abstract The CFD General Notation System (CGNS) is a standard for recording and recovering computer data associated with the numerical solution of the equations of fluid dynamics. The intent is to facilitate the exchange o
3、f CFD data between sites, between applications codes, and across computing platforms, and to stabilize the archiving of CFD data. The CGNS system consists of a collection of conventions, and software implementing those conventions, for the storage and retrieval of CFD data. It consists of two parts:
4、 (1) a standard format for recording the data, and (2) software that reads, writes, and modifies data in that format. The format is a conceptual entity established by the documentation; the software is a physical product supplied to enable developers to access and produce data recorded in that forma
5、t. The standard format, or paper convention, part of CGNS consists of two fundamental pieces. The first, known as the Standard Interface Data Structures, is described in this Recommended Practice. It defines the intellectual content of the information to be stored. The second, known as the File Mapp
6、ing, defines the exact location in a CGNS file where the data is to be stored. Downloaded by AIAA on March 27, 2014 | http:/arc.aiaa.org | DOI: 10.2514/4.479304 AIAA R-101A-2005 ii Published by American Institute of Aeronautics and Astronautics 1801 Alexander Bell Drive, Reston, VA 20191 Copyright 2
7、007 American Institute of Aeronautics and Astronautics All rights reserved. No part of this publication may be reproduced in any form, in an electronic retrieval system or otherwise, without prior written permission of the publisher. Printed in the United States of America. Downloaded by AIAA on Mar
8、ch 27, 2014 | http:/arc.aiaa.org | DOI: 10.2514/4.479304 ContentsForeword vii1 Introduction 11.1 Major Differences from Previous CGNS Versions . . . . . . . . . . . . . . . . . . . . . . 21.1.1 Version 2.0, Beta 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31.1.2 Version 2.0,
9、Beta 2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31.1.3 Version 2.1, Beta 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31.1.4 Version 2.2, Beta 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41.1.5 Version 2.3 . . . . . . . . . . .
10、. . . . . . . . . . . . . . . . . . . . . . . . . . 41.1.6 Version 2.4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42 Design Philosophy of Standard Interface Data Structures 63 Conventions 93.1 Data Structure Notation Conventions . . . . . . . . . . . . . . . . . . . .
11、. . . . . . . 93.2 Structured Grid Notation and Indexing Conventions . . . . . . . . . . . . . . . . . . . . 133.3 Unstructured Grid Element Numbering Conventions . . . . . . . . . . . . . . . . . . . . 143.3.1 1-D (Line) Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
12、.3.2 2-D (Surface) Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163.3.2.1 Triangular Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . 163.3.2.2 Quadrilateral Elements . . . . . . . . . . . . . . . . . . . . . . . . . . 173.3.3 3-D (Volume) Elements . . . . . .
13、 . . . . . . . . . . . . . . . . . . . . . . . . . 173.3.3.1 Tetrahedral Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . 173.3.3.2 Pyramid Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183.3.3.3 Pentahedral Elements . . . . . . . . . . . . . . . . . . . . . . . . .
14、. . 203.3.3.4 Hexahedral Elements . . . . . . . . . . . . . . . . . . . . . . . . . . . 213.3.4 Unstructured Grid Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 223.4 Multizone Interfaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 244 Building-Block
15、Structure Definitions 274.1 Definition: DataClass_t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 274.2 Definition: Descriptor_t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 274.3 Definition: DimensionalUnits_t . . . . . . . . . . . . . . . . . . . . . . .
16、. . . . . . 284.4 Definition: DimensionalExponents_t . . . . . . . . . . . . . . . . . . . . . . . . . . . 294.5 Definition: GridLocation_t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 304.6 Definition: IndexArray_t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
17、 304.7 Definition: IndexRange_t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 304.8 Definition: Rind_t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 315 Data-Array Structure Definitions 325.1 Definition: DataArray_t . . . . . . . . . . . . . . . . . .
18、. . . . . . . . . . . . . . . . 325.1.1 Definition: DataConversion_t . . . . . . . . . . . . . . . . . . . . . . . . . . . 335.2 Data Manipulation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 345.2.1 Dimensional Data . . . . . . . . . . . . . . . . . . . . . . . . . .
19、. . . . . . . . 34iiiDownloaded by AIAA on March 27, 2014 | http:/arc.aiaa.org | DOI: 10.2514/4.479304 AIAA R-101A-20055.2.2 Nondimensional Data Normalized by Dimensional Quantities . . . . . . . . . . . 355.2.3 Nondimensional Data Normalized by Unknown Dimensional Quantities . . . . . . 355.2.4 Non
20、dimensional Parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 385.2.5 Dimensionless Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 395.3 Data-Array Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 396 Hierarchical Structures 4
21、46.1 CGNS Version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 446.2 CGNS Entry Level Structure Definition: CGNSBase_t . . . . . . . . . . . . . . . . . . . 446.3 Zone Structure Definition: Zone_t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 476.4 Prec
22、edence Rules and Scope Within the Hierarchy . . . . . . . . . . . . . . . . . . . . . 517 Grid Coordinates, Elements, and Flow Solutions 537.1 Grid Coordinates Structure Definition: GridCoordinates_t . . . . . . . . . . . . . . . 537.2 Grid Coordinates Examples . . . . . . . . . . . . . . . . . . .
23、. . . . . . . . . . . . . . 557.3 Elements Structure Definition: Elements_t . . . . . . . . . . . . . . . . . . . . . . . . 587.4 Elements Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 607.5 Axisymmetry Structure Definition: Axisymmetry_t . . . . . . . . . . . .
24、. . . . . . . . 617.6 Rotating Coordinates Structure Definition: RotatingCoordinates_t . . . . . . . . . . 637.7 Flow Solution Structure Definition: FlowSolution_t . . . . . . . . . . . . . . . . . . . 647.8 Flow Solution Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
10000 积分 0人已下载
下载 | 加入VIP,交流精品资源 |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- AIAAR101A2005THECFDGENERALNOTATIONSYSTEMCSTANDARDINTERFACEDATASTRUCTURESPDF

链接地址:http://www.mydoc123.com/p-426702.html