⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enum_elem_type.h

📁 一个用来实现偏微分方程中网格的计算库
💻 H
字号:
// $Id: enum_elem_type.h 2575 2007-12-06 20:36:07Z roystgnr $// The libMesh Finite Element Library.// Copyright (C) 2002-2007  Benjamin S. Kirk, John W. Peterson  // This library is free software; you can redistribute it and/or// modify it under the terms of the GNU Lesser General Public// License as published by the Free Software Foundation; either// version 2.1 of the License, or (at your option) any later version.  // This library is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU// Lesser General Public License for more details.  // You should have received a copy of the GNU Lesser General Public// License along with this library; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA#ifndef __enum_elem_type_h__#define __enum_elem_type_h__/** * The \p libMeshEnums namespace is the namespace all \p enum definitions * should be put into. */// ------------------------------------------------------------// enum ElemType definitionnamespace libMeshEnums {    /**   * Defines an \p enum for geometric element types.   */  enum ElemType {EDGE2=0,    // 0		 EDGE3,      // 1		 EDGE4,      // 2		 		 TRI3,       // 3		 TRI6,       // 4		 		 QUAD4,      // 5		 QUAD8,      // 6		 QUAD9,      // 7		 		 TET4,       // 8		 TET10,      // 9		 		 HEX8,       // 10		 HEX20,      // 11		 HEX27,      // 12		 		 PRISM6,     // 13		 PRISM15,    // 14		 PRISM18,    // 15		 		 PYRAMID5,   // 16		 		 INFEDGE2,   // 17		 		 INFQUAD4,   // 18		 INFQUAD6,   // 19		 		 INFHEX8,    // 20		 INFHEX16,   // 21		 INFHEX18,   // 22		 		 INFPRISM6,  // 23		 INFPRISM12, // 24		 NODEELEM,   // 25		 REMOTEELEM,   // 26		 		 INVALID_ELEM};  // 27 - should always be last}using namespace libMeshEnums;#endif // #define __enum_elem_type_h__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -