source: test/interfaces/interface_sinus.hpp@ 534af9

Last change on this file since 534af9 was 8b2e07, checked in by Julian Iseringhausen <isering@…>, 13 years ago

Removed obsolete forward declarations.

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