diff --git a/CMakeLists.txt b/CMakeLists.txt index a66fc0842ece9ecad85e305eaff2931809db1e40..e41c62e4db08969110703a76506c16b036ffe5fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,6 +36,7 @@ ADD_SUBDIRECTORY( GeoLib ) ADD_SUBDIRECTORY( MathLib ) ADD_SUBDIRECTORY( MeshLib ) ADD_SUBDIRECTORY( SimpleTests/MatrixTests ) +ADD_SUBDIRECTORY( SimpleTests/MeshTests ) IF(NOT MSVC) ADD_SUBDIRECTORY( SimpleTests/SolverTests ) ENDIF(NOT MSVC) diff --git a/FileIO/MeshIO.cpp b/FileIO/MeshIO.cpp index 5ad1cb2b8c18f7409eeac8485e00a32d87e44e2d..2444bae5a56ad1d4b80c241898cdd5e83e2ed105 100644 --- a/FileIO/MeshIO.cpp +++ b/FileIO/MeshIO.cpp @@ -29,7 +29,7 @@ MeshIO::MeshIO() MeshLib::Mesh* MeshIO::loadMeshFromFile(const std::string& file_name) { - std::cout << "Read mesh ... " << std::flush; + std::cout << "Read mesh ... " << std::endl; /* #ifndef NDEBUG QTime myTimer; @@ -122,7 +122,7 @@ MeshLib::Element* MeshIO::readElement(const std::string& line, const std::vector MeshLib::Element* elem; - switch(index) + switch(elem_type) { case MshElemType::LINE: for (int i = 0; i < 2; i++) diff --git a/FileIO/MeshIO.h b/FileIO/MeshIO.h index 57dfceeaf6bd2a974149008135b1bea4d4018c17..2a935dcee0753b6fa47e0104abdb7d8b3b5ed6d6 100644 --- a/FileIO/MeshIO.h +++ b/FileIO/MeshIO.h @@ -5,6 +5,10 @@ * Author: KR */ +/** + * This is currently just test functionality for testing ogs-6 mesh data structures! + */ + #ifndef MESHIO_H_ #define MESHIO_H_ diff --git a/MathLib/MathTools.cpp b/MathLib/MathTools.cpp index d683e1284bd21f6464f05ca0c306367d65a6b6d4..88cebe7fae95aa091a8bab3dde0902433c6840fb 100644 --- a/MathLib/MathTools.cpp +++ b/MathLib/MathTools.cpp @@ -86,7 +86,7 @@ double getAngle (const double p0[3], const double p1[3], const double p2[3]) return acos (scpr (v0,v1,3) / (sqrt(scpr(v0,v0,3)) * sqrt(scpr (v1,v1,3)))); } -double calcTriangleaArea(const double p0[3], const double p1[3], const double p2[3]) +double calcTriangleArea(const double* p0, const double* p1, const double* p2) { const double u0 (p2[0] - p0[0]); const double u1 (p2[1] - p0[1]); diff --git a/MathLib/MathTools.h b/MathLib/MathTools.h index 5200b78726a0d4cd5f9a0236e13c5c050a12cc64..344d4308009bfed12c830161ad7352e5ccb109b2 100644 --- a/MathLib/MathTools.h +++ b/MathLib/MathTools.h @@ -98,7 +98,7 @@ double getAngle (const double p0[3], const double p1[3], const double p2[3]); * Calculates the area of a triangle. * The formula is A=.5*|u x v|, i.e. half of the area of the parallelogram specified by u=p0->p1 and v=p0->p2. */ -double calcTriangleArea(const double p0[3], const double p1[3], const double p2[3]); +double calcTriangleArea(const double* p0, const double* p1, const double* p2); /** * Calculates the volume of a tetrahedron. diff --git a/MeshLib/Elements/Element.h b/MeshLib/Elements/Element.h index 3e07b798d0cc0e5fa8f4b6cd3498fc8151aca971..af765dfd52e694304c0e1854da89ed87774a7dec 100644 --- a/MeshLib/Elements/Element.h +++ b/MeshLib/Elements/Element.h @@ -22,8 +22,8 @@ class Node; class Element { /* friend functions: */ - friend void Mesh::setElementInformationForNodes(); - friend void Mesh::addElement(Element*); + friend class Mesh;//void Mesh::setElementInformationForNodes(); + //friend void Mesh::addElement(Element*); public: diff --git a/MeshLib/FemMesh.cpp b/MeshLib/FemMesh.cpp index fa4b55d1464aa4f805e9026b5a5d4f2dd107d71e..57139554a5c88ee42c7afd2e8fa3a87573de2b0d 100644 --- a/MeshLib/FemMesh.cpp +++ b/MeshLib/FemMesh.cpp @@ -24,11 +24,6 @@ FemMesh::FemMesh(const FemMesh &mesh) { } -FemMesh::FemMesh(const std::string &file_name) - : Mesh(file_name) -{ -} - FemMesh::~FemMesh() { diff --git a/MeshLib/FemMesh.h b/MeshLib/FemMesh.h index 335ca5187896b765edc63fb1a78a40257009dd4a..9a390cd4e6cbb849b5cb3a4a2e161e56ecd3e0b3 100644 --- a/MeshLib/FemMesh.h +++ b/MeshLib/FemMesh.h @@ -27,9 +27,6 @@ public: /// Copy constructor FemMesh(const FemMesh &mesh); - /// Constructor for reading a mesh from a file - FemMesh(const std::string &file_name); - /// Destructor virtual ~FemMesh(); diff --git a/MeshLib/Mesh.cpp b/MeshLib/Mesh.cpp index fed2318fdf932d4b213a7c0043890bf5446d2879..d9784233051932604cf09d40dfab774525800b22 100644 --- a/MeshLib/Mesh.cpp +++ b/MeshLib/Mesh.cpp @@ -30,12 +30,6 @@ Mesh::Mesh(const Mesh &mesh) { } -Mesh::Mesh(const std::string &file_name) -{ - // read mesh - this->makeNodesUnique(); -} - Mesh::~Mesh() { const size_t nElements (_elements.size()); diff --git a/MeshLib/Mesh.h b/MeshLib/Mesh.h index 8f71750c76638f47bce2f63ee3292bc39e9f67de..abdfbe036b92c1ab5cdd21fdd881fe8d2ff0b321 100644 --- a/MeshLib/Mesh.h +++ b/MeshLib/Mesh.h @@ -31,9 +31,6 @@ public: /// Copy constructor Mesh(const Mesh &mesh); - /// Constructor for reading a mesh from a file - Mesh(const std::string &file_name); - /// Destructor virtual ~Mesh(); diff --git a/MeshLib/Node.h b/MeshLib/Node.h index f2bcec99569f9c835f16fd50018da59d0a9e832c..c92ba2c507c682338e3e257e93509a8e806da735 100644 --- a/MeshLib/Node.h +++ b/MeshLib/Node.h @@ -25,8 +25,8 @@ class Element; class Node : public GEOLIB::PointWithID { /* friend functions: */ - friend void Mesh::setElementInformationForNodes(); - friend void Mesh::addElement(Element*); + friend class Mesh;//void Mesh::setElementInformationForNodes(); + //friend void Mesh::addElement(Element*); public: diff --git a/SimpleTests/MeshTests/CMakeLists.txt b/SimpleTests/MeshTests/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a52b603aa694b327a7fffc51466a319ac1b9da1 --- /dev/null +++ b/SimpleTests/MeshTests/CMakeLists.txt @@ -0,0 +1,25 @@ + +INCLUDE_DIRECTORIES( + . + ${CMAKE_SOURCE_DIR}/Base/ + ${CMAKE_SOURCE_DIR}/Base/logog/include + ${CMAKE_SOURCE_DIR}/FileIO/ + ${CMAKE_SOURCE_DIR}/MathLib/ + ${CMAKE_SOURCE_DIR}/MeshLib/ +) + +# Create the executable +ADD_EXECUTABLE( MeshRead + MeshRead.cpp + ${SOURCES} + ${HEADERS} +) + +TARGET_LINK_LIBRARIES ( MeshRead + MeshLib + FileIO + MathLib + Base + GeoLib +) + diff --git a/SimpleTests/MeshTests/MeshRead.cpp b/SimpleTests/MeshTests/MeshRead.cpp new file mode 100644 index 0000000000000000000000000000000000000000..6cfd71c00d0abf4b61218612390320feecabb7ac --- /dev/null +++ b/SimpleTests/MeshTests/MeshRead.cpp @@ -0,0 +1,19 @@ +/* + * MeshRead.cpp + * + * Created on: 2012/05/09 + * Author: KR + */ + +#include "Mesh.h" +#include "MeshIO.h" + +int main(int argc, char *argv[]) +{ + std::string file_name("c:/Project/Data/Ammer/Ammer-Homogen100m-Final.msh"); + FileIO::MeshIO mesh_io; + MeshLib::Mesh* mesh = mesh_io.loadMeshFromFile(file_name); + + delete mesh; +} +