source: test/interfaces/interface_sinus.hpp@ 0bd47e

Last change on this file since 0bd47e was e85cfd, checked in by Julian Iseringhausen <isering@…>, 13 years ago

Work.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 * vmg - a versatile multigrid solver
3 * Copyright (C) 2012 Institute for Numerical Simulation, University of Bonn
4 *
5 * vmg is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * vmg is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19/*
20 * interface_sinus.hpp
21 *
22 * Created on: 31.03.2011
23 * Author: Julian Iseringhausen
24 */
25
26#ifndef INTERFACE_SINUS_HPP_
27#define INTERFACE_SINUS_HPP_
28
29#include "base/interface.hpp"
30
31namespace VMG
32{
33class MGGrid;
34class MGMultigrid;
35}
36
37namespace VMGInterfaces
38{
39
40class InterfaceSinus : public VMG::Interface
41{
42public:
43 InterfaceSinus(vmg_float sine_factor,
44 VMG::Boundary boundary, int levelMin, int levelMax,
45 vmg_float box_begin, vmg_float box_end,
46 int max_boundary_nodes=9, double alpha=1.6) :
47 VMG::Interface(boundary, levelMin, levelMax,
48 box_begin, box_end, max_boundary_nodes, alpha),
49 sine_factor(sine_factor)
50 {}
51
52 virtual ~InterfaceSinus() {}
53
54 void ImportRightHandSide(VMG::Multigrid& multigrid);
55 void ExportSolution(VMG::Grid& grid);
56
57private:
58 vmg_float sine_factor;
59};
60
61}
62
63#endif /* INTERFACE_SINUS_HPP_ */
Note: See TracBrowser for help on using the repository browser.