Finite Element Domain Decomposition Library
FEDDLib
Loading...
Searching...
No Matches
gmsh_io.hpp
1namespace FEDD {
2
3char ch_cap ( char ch );
4bool ch_eqi ( char ch1, char ch2 );
5int ch_to_digit ( char ch );
6void gmsh_data_read ( std::string gmsh_filename, int node_dim, int node_num,
7 double node_x[], int element_order, int element_num, int element_node[] );
8void gmsh_size_read ( std::string gmsh_filename, int &node_num, int &node_dim,
9 int &element_num, int &element_order );
10int *gmsh_mesh2d_element_data_example ( int element_num, int element_order );
11void gmsh_mesh2d_element_size_example ( int &element_num, int &element_order );
12double *gmsh_mesh2d_node_data_example ( int node_num, int node_dim );
13void gmsh_mesh2d_node_size_example ( int &node_num, int &node_dim );
14void gmsh_mesh1d_write ( std::string gmsh_filename, int m, int node_num, double node_x[],
15 int element_order, int element_num, int element_node[] );
16void gmsh_mesh2d_write ( std::string gmsh_filename, int m, int node_num, double node_x[],
17 int element_order, int element_num, int element_node[] );
18void gmsh_mesh3d_write ( std::string gmsh_filename, int m, int node_num, double node_x[],
19 int element_order, int element_num, int element_node[] );
20int *i4mat_copy_new ( int m, int n, int a1[] );
21void i4mat_transpose_print ( int m, int n, int a[], std::string title );
22void i4mat_transpose_print_some ( int m, int n, int a[], int ilo, int jlo,
23 int ihi, int jhi, std::string title );
24void mesh_base_one ( int node_num, int element_order, int element_num,
25 int element_node[] );
26double r8_max ( double x, double y );
27double r8_min ( double x, double y );
28double *r8mat_copy_new ( int m, int n, double a1[] );
29void r8mat_transpose_print ( int m, int n, double a[], std::string title );
30void r8mat_transpose_print_some ( int m, int n, double a[], int ilo, int jlo,
31 int ihi, int jhi, std::string title );
32bool s_begin ( std::string s1, std::string s2 );
33int s_len_trim ( std::string s );
34int s_to_i4 ( std::string s, int &last, bool &error );
35double s_to_r8 ( std::string s, int &lchar, bool &error );
36void timestamp ( );
37}
Adaptive Mesh Refinement.
Definition AdaptiveMeshRefinement.cpp:5