随笔分类 -  CGNS

摘要:CGNS支持的单元类型1、线(1-D) 2、三角形(2-D) 3、四边形(2-D) 4、四面体(3-D) 5、锥体(3-D) 6、五面体(3-D) 7、六面体(3-D) 阅读全文
posted @ 2021-09-11 09:05 禅元天道 阅读(190) 评论(0) 推荐(0) 编辑
摘要:底层CGIO接口读取cgns文件信息1 #include <iostream> 2 #include<iomanip> 3 #include "cgns_io.h" 4 5 using namespace std; 6 7 8 void readChildrenByIdentifier(int index_file, double i 阅读全文
posted @ 2021-09-02 15:52 禅元天道 阅读(374) 评论(0) 推荐(0) 编辑
摘要:CGNS接口API读取CGNS格式文件1 #include <iostream> 2 #include <QFile> 3 4 5 using namespace std; 6 7 #include "cgnslib.h" 8 9 10 int main() { 11 int result; 12 13 int index_file; 阅读全文
posted @ 2021-08-31 14:56 禅元天道 阅读(1176) 评论(0) 推荐(0) 编辑
摘要:CGNS接口API写入CGNS格式文件1 #include <iostream> 2 #include <QFile> 3 4 using namespace std; 5 #include "cgnslib.h" 6 7 int main() 8 { 9 10 int result; 11 12 int index_file; 13 阅读全文
posted @ 2021-08-31 10:41 禅元天道 阅读(990) 评论(0) 推荐(0) 编辑