source: src/grid/grid_index_translations.cpp@ bd61b5c

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

Work.

  • Property mode set to 100644
File size: 5.0 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
[dfed1c]19/**
20 * @file grid_index_translations.cpp
21 * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
22 * @date Tue May 17 11:46:37 2011
23 *
24 * @brief Class to convert different representations of grid
25 * indices.
26 *
27 */
28
29#ifdef HAVE_CONFIG_H
30#include <config.h>
31#endif
32
33#include "base/helper.hpp"
[8180d8]34#include "grid/grid_double_iterator.hpp"
[dfed1c]35#include "grid/grid_index_translations.hpp"
36#include "grid/grid.hpp"
37#include "grid/multigrid.hpp"
[e85cfd]38#include "mg.hpp"
[dfed1c]39
40using namespace VMG;
41
[8180d8]42bool GridIndexTranslations::IsGridPointOf(const Grid& grid, const Index& index_finest)
[dfed1c]43{
[e85cfd]44 const int max_level = MG::GetSol()->MaxLevel();
45 return index_finest[0] % Helper::intpow(2, max_level - grid.Level()) == 0 &&
46 index_finest[1] % Helper::intpow(2, max_level - grid.Level()) == 0 &&
47 index_finest[2] % Helper::intpow(2, max_level - grid.Level()) == 0;
[dfed1c]48}
49
[8180d8]50Index GridIndexTranslations::LocalToGlobal(const Grid& grid, const Index& index_local)
[dfed1c]51{
[8180d8]52 return index_local - grid.Local().Begin() + grid.Global().LocalBegin();
[dfed1c]53}
54
[8180d8]55Index GridIndexTranslations::LocalToGlobalFinest(const Grid& grid, const Index& index_local)
[dfed1c]56{
[8180d8]57 return GlobalToGlobalFinest(grid, LocalToGlobal(grid, index_local));
[dfed1c]58}
59
[8180d8]60Index GridIndexTranslations::GlobalToLocal(const Grid& grid, const Index& index_global)
[dfed1c]61{
[8180d8]62 return index_global - grid.Global().LocalBegin() + grid.Local().Begin();
[dfed1c]63}
64
[8180d8]65Index GridIndexTranslations::GlobalToGlobalFinest(const Grid& grid, const Index& index_global)
[dfed1c]66{
[e85cfd]67 return Helper::intpow(2, MG::GetSol()->MaxLevel() - grid.Level()) * index_global;
[dfed1c]68}
69
[8180d8]70Index GridIndexTranslations::GlobalFinestToLocal(const Grid& grid, const Index& index_finest)
[dfed1c]71{
[8180d8]72 return GlobalToLocal(grid, GlobalFinestToGlobal(grid, index_finest));
[dfed1c]73}
74
[8180d8]75Index GridIndexTranslations::GlobalFinestToGlobal(const Grid& grid, const Index& index_finest)
[dfed1c]76{
[8180d8]77 assert(IsGridPointOf(grid, index_finest));
[e85cfd]78 return index_finest / Helper::intpow(2, MG::GetSol()->MaxLevel() - grid.Level());
[dfed1c]79}
80
[8180d8]81void GridIndexTranslations::GlobalCoarseToFine(Index& begin, Index& end)
[dfed1c]82{
[8180d8]83 for (int j=0; j<3; ++j) {
84 begin[j] = 2 * begin[j];
85 end[j] = 2 * (end[j]-1) + 1;
86 }
[dfed1c]87}
88
[8180d8]89void GridIndexTranslations::GlobalFineToCoarse(Index& begin, Index& end)
[dfed1c]90{
[8180d8]91 for (int j=0; j<3; ++j) {
92 begin[j] = Helper::RoundUpToNextMultiple(begin[j], 2) / 2;
93 end[j] = Helper::RoundDownToNextMultiple(end[j]-1, 2) / 2 + 1;
94 }
[dfed1c]95}
96
[8180d8]97void GridIndexTranslations::GetGridAlignment(const Grid& grid_1, GridIteratorSet& bounds_1,
[e85cfd]98 const Grid& grid_2, GridIteratorSet& bounds_2)
[dfed1c]99{
[8180d8]100 if (grid_1.Level() == grid_2.Level()) {
101 const Index begin_global = grid_1.Global()
102 .LocalBegin()
103 .Clamp(grid_2.Global().LocalBegin(), grid_2.Global().LocalEnd());
[dfed1c]104
[8180d8]105 const Index end_global = grid_1.Global()
106 .LocalEnd()
107 .Clamp(grid_2.Global().LocalBegin(), grid_2.Global().LocalEnd());
[dfed1c]108
[8180d8]109 bounds_1 = GridIteratorSet(GlobalToLocal(grid_1, begin_global), GlobalToLocal(grid_2, end_global));
110 bounds_2 = GridIteratorSet(GlobalToLocal(grid_2, begin_global), GlobalToLocal(grid_2, end_global));
[dfed1c]111
[8180d8]112 } else {
[dfed1c]113
[8180d8]114 const Grid& grid_c = (grid_1.Level() < grid_2.Level() ? grid_1 : grid_2);
[e85cfd]115 const int global_mult = Helper::intpow(2, MG::GetSol()->MaxLevel() - grid_c.Level());
[dfed1c]116
[8180d8]117 Index begin_finest = GlobalToGlobalFinest(grid_1, grid_1.Global().LocalBegin())
118 .Clamp(GlobalToGlobalFinest(grid_2, grid_2.Global().LocalBegin()),
119 GlobalToGlobalFinest(grid_2, grid_2.Global().LocalEnd()-1));
[dfed1c]120
[8180d8]121 Index end_finest = GlobalToGlobalFinest(grid_1, grid_1.Global().LocalEnd()-1)
122 .Clamp(GlobalToGlobalFinest(grid_2, grid_2.Global().LocalBegin()),
123 GlobalToGlobalFinest(grid_2, grid_2.Global().LocalEnd()-1));
[dfed1c]124
[8180d8]125 for (int j=0; j<3; ++j) {
126 begin_finest[j] = Helper::RoundUpToNextMultiple(begin_finest[j], global_mult);
127 end_finest[j] = Helper::RoundDownToNextMultiple(end_finest[j], global_mult);
128 }
[dfed1c]129
[8180d8]130 bounds_1 = GridIteratorSet(GlobalFinestToLocal(grid_1, begin_finest), GlobalFinestToLocal(grid_1, end_finest)+1);
131 bounds_2 = GridIteratorSet(GlobalFinestToLocal(grid_2, begin_finest), GlobalFinestToLocal(grid_2, end_finest)+1);
[dfed1c]132
133 }
134}
Note: See TracBrowser for help on using the repository browser.