多个网格合并问题?
-
我把一个几何体分为两部分,一部分划分结构网格,一部分部分非结构网格,合并网格的时候,要把两个几何也导入icem中merge吗?还是直接把网格merge就行?边界名称怎么设置啊?我设置了边界名称,可是导出.msh就没有边界了?
-
比如这个:
// Do a synchronisation of coupled points after creation of any patches. // Note: this does not work with points that are on multiple coupled patches // with transformations (i.e. cyclics). pointSync false; // Patches to create. patches ( { //- Master side patch name AMI1;//你要命名的名字2 patchInfo { type cyclicAMI; matchTolerance 0.0001; neighbourPatch AMI2; transform noOrdering; } constructFrom patches; patches (innerCylinderSmall);//在你fluent网格倒进来之后,写上你的第一个patch的名字 } { //- Slave side patch name AMI2;//你要命名的名字1 patchInfo { type cyclicAMI; matchTolerance 0.0001; neighbourPatch AMI1; transform noOrdering; } constructFrom patches; patches (innerCylinderSmall_slave);//在你fluent网格倒进来之后,写上你的第二个patch的名字 } );
他的意思是,网格需要是双层的,通常网格是单层的,但是动网格需要是双层的才能处理交接面 :expressionless:
2017年5月26日 13:24
1/13
2023年6月2日 06:58