source: test/interfaces/interface_sinus.hpp@ fb228be

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

Work.

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[fcf7f6]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
[48b662]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
[f003a9]29#include "base/interface.hpp"
[48b662]30
31namespace VMG
32{
33class MGGrid;
34class MGMultigrid;
35}
36
37namespace VMGInterfaces
38{
39
40class InterfaceSinus : public VMG::Interface
41{
42public:
[ac6d04]43 InterfaceSinus(vmg_float sine_factor,
44 VMG::Boundary boundary, int levelMin, int levelMax,
45 vmg_float box_begin, vmg_float box_end,
[e85cfd]46 int max_boundary_nodes=9, double alpha=1.6) :
[ac6d04]47 VMG::Interface(boundary, levelMin, levelMax,
[e85cfd]48 box_begin, box_end, max_boundary_nodes, alpha),
[ac6d04]49 sine_factor(sine_factor)
[48b662]50 {}
51
52 virtual ~InterfaceSinus() {}
53
[ac6d04]54 void ImportRightHandSide(VMG::Multigrid& multigrid);
[48b662]55 void ExportSolution(VMG::Grid& grid);
[ac6d04]56
57private:
58 vmg_float sine_factor;
[48b662]59};
60
61}
62
63#endif /* INTERFACE_SINUS_HPP_ */
Note: See TracBrowser for help on using the repository browser.