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

📄 cell_inf_prism12.c

📁 一个用来实现偏微分方程中网格的计算库
💻 C
📖 第 1 页 / 共 2 页
字号:
// $Id: cell_inf_prism12.C 2789 2008-04-13 02:24:40Z 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// Local includes#include "libmesh_config.h"#ifdef ENABLE_INFINITE_ELEMENTS// C++ includes// Local includes cont'd#include "cell_inf_prism12.h"#include "edge_edge3.h"#include "edge_inf_edge2.h"#include "face_tri6.h"#include "face_inf_quad6.h"#include "side.h"// ------------------------------------------------------------// InfPrism12 class static member initializationsconst unsigned int InfPrism12::side_nodes_map[4][6] ={  { 0, 1, 2, 6, 7, 8},  // Side 0  { 0, 1, 3, 4, 6, 9},  // Side 1  { 1, 2, 4, 5, 7, 10}, // Side 2  { 2, 0, 5, 3, 8, 11}  // Side 3};const unsigned int InfPrism12::edge_nodes_map[6][3] ={  { 0, 1, 6},  // Side 0  { 1, 2, 7},  // Side 1  { 0, 2, 8},  // Side 2  { 0, 3, 99}, // Side 3  { 1, 4, 99}, // Side 4  { 2, 5, 99}  // Side 5};// ------------------------------------------------------------// InfPrism12 class member functionsbool InfPrism12::is_vertex(const unsigned int i) const{  if (i < 3)    return true;  return false;}bool InfPrism12::is_edge(const unsigned int i) const{  if (i < 3)    return false;  if (i > 8)    return false;  return true;}bool InfPrism12::is_face(const unsigned int i) const{  if (i > 8)    return true;  return false;}bool InfPrism12::is_node_on_side(const unsigned int n,				 const unsigned int s) const{  libmesh_assert(s < n_sides());  for (unsigned int i = 0; i != 6; ++i)    if (side_nodes_map[s][i] == n)      return true;  return false;}bool InfPrism12::is_node_on_edge(const unsigned int n,				 const unsigned int e) const{  libmesh_assert(e < n_edges());  for (unsigned int i = 0; i != 3; ++i)    if (edge_nodes_map[e][i] == n)      return true;  return false;}AutoPtr<Elem> InfPrism12::build_side (const unsigned int i,				      bool proxy) const{  libmesh_assert (i < this->n_sides());  if (proxy)    {      switch (i)	{	  // base	case 0:	  {	    AutoPtr<Elem> ap(new Side<Tri6,InfPrism12>(this,i));	    return ap;	  }	  // ifem sides	case 1:	case 2:	case 3:	  {	    AutoPtr<Elem> ap(new Side<InfQuad6,InfPrism12>(this,i));	    return ap;	  }	default:	  libmesh_error();	}    }  else    {      switch (i)	{	case 0:  // the triangular face at z=-1, base face	  {	    AutoPtr<Elem> face(new Tri6);	    // Note that for this face element, the normal points inward	    face->set_node(0) = this->get_node(0);	    face->set_node(1) = this->get_node(1);	    face->set_node(2) = this->get_node(2);	    face->set_node(3) = this->get_node(6);	    face->set_node(4) = this->get_node(7);	    face->set_node(5) = this->get_node(8);	    return face;	  }	case 1:  // the quad face at y=0	  {	    AutoPtr<Elem> face(new InfQuad6);		    face->set_node(0) = this->get_node(0);	    face->set_node(1) = this->get_node(1);	    face->set_node(2) = this->get_node(3);	    face->set_node(3) = this->get_node(4);	    face->set_node(4) = this->get_node(6);	    face->set_node(5) = this->get_node(9);		    return face;	  }	case 2:  // the other quad face	  {	    AutoPtr<Elem> face(new InfQuad6);	    face->set_node(0) = this->get_node(1);	    face->set_node(1) = this->get_node(2);	    face->set_node(2) = this->get_node(4);	    face->set_node(3) = this->get_node(5);	    face->set_node(4) = this->get_node(7);	    face->set_node(5) = this->get_node(10);	    return face;	  }	case 3: // the quad face at x=0	  {	    AutoPtr<Elem> face(new InfQuad6);	    face->set_node(0) = this->get_node(2);	    face->set_node(1) = this->get_node(0);	    face->set_node(2) = this->get_node(5);	    face->set_node(3) = this->get_node(3);	    face->set_node(4) = this->get_node(8);	    face->set_node(5) = this->get_node(11);		    return face;	  }	default:	  {	    libmesh_error();	    AutoPtr<Elem> ap(NULL);  return ap;	  }	}    }    // We'll never get here.  libmesh_error();  AutoPtr<Elem> ap(NULL);  return ap;}AutoPtr<Elem> InfPrism12::build_edge (const unsigned int i) const{  libmesh_assert (i < this->n_edges());  if (i < 3) // base edges    return AutoPtr<Elem>(new SideEdge<Edge3,InfPrism12>(this,i));  // infinite edges  return AutoPtr<Elem>(new SideEdge<InfEdge2,InfPrism12>(this,i));}void InfPrism12::connectivity(const unsigned int sc,			      const IOPackage iop,			      std::vector<unsigned int>& conn) const

⌨️ 快捷键说明

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