Loading [MathJax]/extensions/tex2jax.js
NiHu  2.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
laplace_bem_standalone.cpp
1 // This file is a part of NiHu, a C++ BEM template library.
2 //
3 // Copyright (C) 2012-2014 Peter Fiala <fiala@hit.bme.hu>
4 // Copyright (C) 2012-2014 Peter Rucz <rucz@hit.bme.hu>
5 //
6 // This program is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 
20 #include "library/laplace_3d.hpp"
21 
22 typedef Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic> dMatrix;
23 typedef Eigen::Matrix<unsigned, Eigen::Dynamic, Eigen::Dynamic> uMatrix;
24 
25 int main()
26 {
27  dMatrix surf_nodes(6,3);
28  surf_nodes <<
29  0, 0, 0,
30  1, 0, 0,
31  2, 0, 0,
32  0, 1, 0,
33  1, 1, 0,
34  2, 1, 0;
35 
36  uMatrix surf_elem(2,5);
37  surf_elem <<
38  NiHu::quad_1_elem::id, 0, 1, 4, 3,
39  NiHu::quad_1_elem::id, 1, 2, 5, 4;
40 
41  auto surf_mesh = NiHu::create_mesh(surf_nodes, surf_elem, NiHu::quad_1_tag());
42 
43  auto const &surf_sp = NiHu::constant_view(surf_mesh);
44 
45  size_t n = surf_sp.get_num_dofs();
46  dMatrix L_surf(n, n), M_surf(n, n), Mt_surf(n, n), N_surf(n, n);
47  L_surf.setZero();
48 
54 
55  // conventional equations
56  L_surf << dirac(surf_sp) * L[surf_sp];
57  M_surf << dirac(surf_sp) * M[surf_sp] + dirac(surf_sp) * (-.5*I)[surf_sp];
58  // hypersingular equations
59  Mt_surf << dirac(surf_sp) * Mt[surf_sp] + dirac(surf_sp) * (.5*I)[surf_sp];
60  N_surf << dirac(surf_sp) * N[surf_sp];
61 
62  std::cout << "L:\t" << L_surf << std::endl;
63  std::cout << "M:\t" << M_surf << std::endl;
64 }
65 
NiHu::create_integral_operator
integral_operator< Kernel > create_integral_operator(Kernel &&kernel)
factory function of an integral operator
Definition: integral_operator.hpp:421
NiHu::create_mesh
mesh< tmp::vector< typename tag2type< Args >::type... > > create_mesh(nodes_t const &nodes, elements_t const &elements, Args...)
factory function to create a mesh from nodes and elements matrices
Definition: mesh.hpp:298
NiHu::type2tag
Metafunction assigning a tag to a type.
Definition: type2tag.hpp:17
NiHu::constant_view
const function_space_view< Mesh, field_option::constant, Dimension > & constant_view(mesh_base< Mesh > const &msh, Dimension dim=Dimension())
factory function to transform a mesh into a constant function space
Definition: function_space.hpp:304
weighted_residual.hpp
declaration of class NiHu::weighted_residual
NiHu::mex::real_matrix
Definition: mex_matrix_separate.hpp:133
NiHu::normal_derivative_kernel
Normal derivative of a distance dependent kernel.
Definition: normal_derivative_kernel.hpp:26
NiHu::identity_integral_operator
The identity integral operator .
Definition: integral_operator.hpp:310
NiHu::dirac
const dirac_field< Field > & dirac(field_base< Field > const &f)
dirac field view factory
Definition: field.hpp:629