LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
read_mesh.h
1
10#ifndef __1bd576875bb04c168d82c67cc451cbe7
11#define __1bd576875bb04c168d82c67cc451cbe7
12#include <lf/mesh/hybrid2d/hybrid2d.h>
13
14#include <string>
15
16#include "lf/io/gmsh_reader.h"
17
18namespace lf::io::test_utils {
19
24std::string getMeshPath(std::string mesh_name);
25
31GmshReader getGmshReader(std::string mesh_name, base::dim_t dim_world);
32
33} // namespace lf::io::test_utils
34
35#endif // __1bd576875bb04c168d82c67cc451cbe7
unsigned int dim_t
type for dimensions and co-dimensions and numbers derived from them
Definition: base.h:36
std::string getMeshPath(std::string mesh_name)
Retrieve the full path to the file lib/lf/io/test/msh_files/<mesh_name>
Definition: read_mesh.cc:12
GmshReader getGmshReader(std::string mesh_name, base::dim_t dim_world)
Get a GmshReader from the file lib/lf/io/test/msh_files/<mesh_name>.
Definition: read_mesh.cc:34