[de061d] | 1 | /*
|
---|
| 2 | * vmg - a versatile multigrid solver
|
---|
| 3 | * Copyright (C) 2012-2013 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_gaussian.hpp
|
---|
| 21 | *
|
---|
| 22 | * Created on: 19.04.2013
|
---|
| 23 | * Author: Julian Iseringhausen
|
---|
| 24 | */
|
---|
| 25 |
|
---|
| 26 | #ifndef INTERFACE_GAUSSIAN_HPP_
|
---|
| 27 | #define INTERFACE_GAUSSIAN_HPP_
|
---|
| 28 |
|
---|
| 29 | #include "base/interface.hpp"
|
---|
| 30 |
|
---|
| 31 | namespace VMGInterfaces
|
---|
| 32 | {
|
---|
| 33 |
|
---|
| 34 | class InterfaceGaussian : public VMG::Interface
|
---|
| 35 | {
|
---|
| 36 | public:
|
---|
| 37 | InterfaceGaussian(vmg_float standard_deviation,
|
---|
| 38 | VMG::Boundary boundary, int levelMin, int levelMax,
|
---|
| 39 | vmg_float box_begin, vmg_float box_end,
|
---|
| 40 | int max_boundary_nodes=9, double alpha=1.6) :
|
---|
| 41 | VMG::Interface(boundary, levelMin, levelMax,
|
---|
| 42 | box_begin, box_end, max_boundary_nodes, alpha),
|
---|
| 43 | sigma(standard_deviation)
|
---|
| 44 | {}
|
---|
| 45 |
|
---|
| 46 | virtual ~InterfaceGaussian() {}
|
---|
| 47 |
|
---|
| 48 | void ImportRightHandSide(VMG::Multigrid& multigrid);
|
---|
| 49 | void ExportSolution(VMG::Grid& grid);
|
---|
| 50 |
|
---|
| 51 | private:
|
---|
| 52 | vmg_float sigma;
|
---|
| 53 | };
|
---|
| 54 |
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | #endif /* INTERFACE_GAUSSIAN_HPP_ */
|
---|