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

📄 tetgen_io.h

📁 一个用来实现偏微分方程中网格的计算库
💻 H
字号:
// $Id: tetgen_io.h 2501 2007-11-20 02:33:29Z benkirk $// 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 __tetgen_io_h__#define __tetgen_io_h__// C++ includes#include <map>// Local includes#include "libmesh_common.h"#include "mesh_input.h"#include "mesh_output.h"// Forward declarationsclass MeshBase;class MeshData;/** * This class implements reading and writing meshes in the TetGen format. * Format description:  * cf. <a href="http://tetgen.berlios.de/">TetGen home page</a>. * * @author Benjamin S. Kirk, 2004 */// ------------------------------------------------------------// TetGenIO class definitionclass TetGenIO : public MeshInput<MeshBase>,                 public MeshOutput<MeshBase>{ public:    /**   * Constructor.  Takes a writeable reference to a mesh object.   * This is the constructor required to read a mesh.   */  TetGenIO (MeshBase& mesh, MeshData* mesh_data=NULL);    /**   * Constructor.  Takes a read-only reference to a mesh object.   * This is the constructor required to write a mesh.   */  TetGenIO (const MeshBase& mesh, MeshData* mesh_data=NULL);    /**   * This method implements reading a mesh from a specified file   * in TetGen format.   */  virtual void read (const std::string& );  /**   * This method implements writing a mesh to a specified ".poly" file.   * ".poly" files defines so called Piecewise Linear Complex (PLC).   */  virtual void write (const std::string& );   private:   //-------------------------------------------------------------  // read support methods  /**   * Reads a mesh (nodes & elements) from the file   * provided through \p node_stream and ele_stream.   */  void read_nodes_and_elem (std::istream& node_stream,			    std::istream& ele_stream);  /**   * Method reads nodes from \p node_stream and stores them in   * vector<Node*> \p nodes in the order they come in.   * The original node labels are being stored in the   * map \p _assign_nodes in order to assign the elements to   * the right nodes later.  In addition, provided it is    * active, the \p MeshData gets to know the node id from   * the file, too.   */  void node_in (std::istream& node_stream);  /**   * Method reads elements and stores them in   * vector<Elem*> \p elements in the same order as they   * come in. Within \p TetGenMeshInterface, element labels are   * ignored, but \p MeshData takes care of such things   * (if active).   */  void element_in (std::istream& ele_stream);  //-------------------------------------------------------------  // local data  /**   * stores new positions of nodes. Used when reading.   */  std::map<unsigned int,unsigned int> _assign_nodes;   /**   * total number of nodes. Primarily used when reading.   */  unsigned int _num_nodes;  /**   * total number of elements. Primarily used when reading.   */  unsigned int _num_elements;  /**   * A pointer to the MeshData object you would like to use.   * with this TetGenIO object.  Can be NULL.   */  MeshData* _mesh_data;};// ------------------------------------------------------------// TetGenIO inline membersinlineTetGenIO::TetGenIO (MeshBase& mesh, MeshData* mesh_data) :  MeshInput<MeshBase> (mesh),  MeshOutput<MeshBase>(mesh),  _mesh_data(mesh_data){}inlineTetGenIO::TetGenIO (const MeshBase& mesh, MeshData* mesh_data) :  MeshOutput<MeshBase>(mesh),  _mesh_data(mesh_data){}#endif // #define __tetgen_io_h__

⌨️ 快捷键说明

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