当前位置: 首页>>代码示例>>C++>>正文


C++ block::getOriginalNumber方法代码示例

本文整理汇总了C++中block::getOriginalNumber方法的典型用法代码示例。如果您正苦于以下问题:C++ block::getOriginalNumber方法的具体用法?C++ block::getOriginalNumber怎么用?C++ block::getOriginalNumber使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在block的用法示例。


在下文中一共展示了block::getOriginalNumber方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: checkQuality

void checkQuality(const block &b) 
{
	int nBadVol=0, nBadFace=0;
	double minVolRatio=1.0;
	blockLoc aBadVol, aBadFace;
	CkSample edgeStats, volumeStats, volRatioStats, faceRatioStats;
	/* loop over all cells in the block */
	blockLoc cellCoor;
	blockSpan cells(blockLoc(0,0,0),b.getDim()-blockLoc(1,1,1));

	enum {nCorners=8,nEdges=12,nFaces=6};
	vector3d c[nCorners];
	int i,j,k,f,e;

	/* Check the quality of each cell */
	BLOCKSPAN_FOR(cellCoor,cells) {

		// Copy out the locations of the cell corners
		for (k=0;k<2;k++) for (j=0;j<2;j++) for (i=0;i<2;i++)
			c[i+2*j+4*k]=b.getLoc(cellCoor+blockLoc(i,j,k));

	/* Find the minimum edge length for this cell.
		FIXME: Rocflo's criterion depends on the minimum edge 
	   length for *any* cell in the (partitioned) block.  This means
	   our per-cell criterion is actually more stringent than Rocflo's.
	 */
		double minEdge=1.0e30;
		
		// Compute the length of the shortest edge
		const static int edges[nEdges][2]={
			{0,1}, {1,3}, {3,2}, {2,0},
			{4,5}, {5,7}, {7,6}, {6,4},
			{0,4}, {1,5}, {3,7}, {2,6}
		};
		for (e=0;e<nEdges;e++) {
			double l=c[edges[e][0]].dist(c[edges[e][1]]);
			if (l<minEdge) minEdge=l;
			edgeStats.add(l);
		}

		// Compute the outward-pointing normals of the faces
		const static int faces[nFaces][4]={
			{0,4,6,2}, {1,3,7,5}, /* imin, imax */
			{0,1,5,4}, {2,6,7,3}, /* jmin, jmax */
			{0,2,3,1}, {4,5,7,6}  /* kmin, kmax */
		};
		vector3d normals[nFaces]; // area-scaled normal vector
		vector3d center[nFaces]; // position of centroid
		for (f=0;f<nFaces;f++) 
		{ // Area and normal come from face diagonals:
			vector3d diagA=c[faces[f][2]]-c[faces[f][0]];
			vector3d diagB=c[faces[f][3]]-c[faces[f][1]];
			normals[f]=0.5*diagA.cross(diagB);
			center[f]=0.25*(c[faces[f][0]]+c[faces[f][1]]+
			                c[faces[f][2]]+c[faces[f][3]]);
		}
		
		// Check face vector sum (closedness, smaller is better)
		vector3d faceVecSum=
		         normals[0]+normals[1]+
			 normals[2]+normals[3]+
			 normals[4]+normals[5];
		double faceRatio=faceVecSum.max()/(minEdge*minEdge);
		if (faceRatio>0.1) { /* non-closed face */
			nBadFace++;
			aBadFace=cellCoor;
		}
		
		// Compute volume of cell relative to smallest edge (fullness, bigger is better)
		double volume=0.0;
		for (f=0;f<nFaces;f++) 
			volume+=(1.0/3.0)*normals[f].dot(center[f]);
		
		double volRatio=volume/(minEdge*minEdge*minEdge);
		if (volRatio<0.1) { /* bad skinny cell */
			nBadVol++;
			if (volRatio<minVolRatio) {
				minVolRatio=volRatio;
				aBadVol=cellCoor;
			}
		}
		
		// Update statistics
		faceRatioStats.add(faceRatio);
		volumeStats.add(volume);
		volRatioStats.add(volRatio);
	}
	
	printf("Original block %d mesh quality:\n",1+b.getOriginalNumber());
	printf("    cell volumes: "); volumeStats.printMinAveMax(stdout);
	printf("    edge lengths: "); edgeStats.printMinAveMax(stdout);
	printf("    volume ratio (fullness): "); volRatioStats.printMinAveMax(stdout);
	printf("    face ratio (skewness): "); faceRatioStats.printMinAveMax(stdout);
	
	if (nBadVol>0) {
	        printf("WARNING: detected %d bad-volume cells in original block %d: \n"
			"     the worst of which is cell (%d,%d,%d), with ratio %.3f\n",
		   nBadVol, b.getOriginalNumber(),
		   1+aBadVol[0],1+aBadVol[1],1+aBadVol[2], minVolRatio);
	}
//.........这里部分代码省略.........
开发者ID:IllinoisRocstar,项目名称:RocstarBasement,代码行数:101,代码来源:volume.cpp


注:本文中的block::getOriginalNumber方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。