36#ifndef QUADRATICMESH_HPP_
37#define QUADRATICMESH_HPP_
40#include <boost/serialization/base_object.hpp>
44#include "TetrahedralMesh.hpp"
45#include "TrianglesMeshReader.hpp"
53 friend class TestQuadraticMesh;
72 template<
class Archive>
73 void serialize(Archive & archive,
const unsigned int version)
75 archive & boost::serialization::base_object<TetrahedralMesh<DIM, DIM> >(*this);
117 void ConstructCuboid(
unsigned numElemX,
unsigned numElemY,
unsigned numElemZ);
143 unsigned LookupInternalNode(
unsigned globalIndex1,
unsigned globalIndex2, std::map<std::pair<unsigned, unsigned>,
unsigned>& rEdgeMap);
168 QuadraticMesh(
double spaceStep,
double width,
double height=0,
double depth=0);
gcov doesn't like this file...
#define EXPORT_TEMPLATE_CLASS_SAME_DIMS(CLASS)
void ConstructCuboid(unsigned numElemX, unsigned numElemY, unsigned numElemZ)
void ConstructFromMeshReader(AbstractMeshReader< DIM, DIM > &rMeshReader)
void serialize(Archive &archive, const unsigned int version)
unsigned LookupInternalNode(unsigned globalIndex1, unsigned globalIndex2, std::map< std::pair< unsigned, unsigned >, unsigned > &rEdgeMap)
Node< DIM > * MakeNewInternalNode(unsigned &rIndex, c_vector< double, DIM > &rLocation, c_vector< double, DIM > &rTop)
unsigned GetNumVertices() const
void ConstructRectangularMesh(unsigned numElemX, unsigned numElemY, bool stagger=true)
void ConstructFromLinearMeshReader(AbstractMeshReader< DIM, DIM > &rMeshReader)
void ConstructLinearMesh(unsigned numElemX)
friend class boost::serialization::access