00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd. 00006 \\/ M anipulation | 00007 ------------------------------------------------------------------------------- 00008 License 00009 This file is part of OpenFOAM. 00010 00011 OpenFOAM is free software: you can redistribute it and/or modify it 00012 under the terms of the GNU General Public License as published by 00013 the Free Software Foundation, either version 3 of the License, or 00014 (at your option) any later version. 00015 00016 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT 00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00018 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00019 for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. 00023 00024 \*---------------------------------------------------------------------------*/ 00025 00026 #include "pairGAMGAgglomeration.H" 00027 #include <OpenFOAM/lduInterfacePtrsList.H> 00028 #include <OpenFOAM/GAMGInterface.H> 00029 00030 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // 00031 00032 void Foam::pairGAMGAgglomeration::combineLevels(const label curLevel) 00033 { 00034 label prevLevel = curLevel - 1; 00035 00036 // Set the previous level nCells to the current 00037 nCells_[prevLevel] = nCells_[curLevel]; 00038 00039 // Map the restrictAddressing from the coarser level into the previous 00040 // finer level 00041 00042 const labelList& curResAddr = restrictAddressing_[curLevel]; 00043 labelList& prevResAddr = restrictAddressing_[prevLevel]; 00044 00045 const labelList& curFaceResAddr = faceRestrictAddressing_[curLevel]; 00046 labelList& prevFaceResAddr = faceRestrictAddressing_[prevLevel]; 00047 00048 forAll(prevFaceResAddr, i) 00049 { 00050 if (prevFaceResAddr[i] >= 0) 00051 { 00052 prevFaceResAddr[i] = curFaceResAddr[prevFaceResAddr[i]]; 00053 } 00054 else 00055 { 00056 prevFaceResAddr[i] = -curResAddr[-prevFaceResAddr[i] - 1] - 1; 00057 } 00058 } 00059 00060 // Delete the restrictAddressing for the coarser level 00061 faceRestrictAddressing_.set(curLevel, NULL); 00062 00063 forAll(prevResAddr, i) 00064 { 00065 prevResAddr[i] = curResAddr[prevResAddr[i]]; 00066 } 00067 00068 // Delete the restrictAddressing for the coarser level 00069 restrictAddressing_.set(curLevel, NULL); 00070 00071 00072 // Delete the matrix addressing and coefficients from the previous level 00073 // and replace with the corresponding entried from the coarser level 00074 meshLevels_.set(prevLevel, meshLevels_.set(curLevel, NULL)); 00075 00076 // Same for the lduInterfaceFields taking care to delete the sub-entries 00077 // held on List<T*> 00078 const lduInterfacePtrsList& curInterLevel = interfaceLevels_[curLevel+1]; 00079 lduInterfacePtrsList& prevInterLevel = interfaceLevels_[prevLevel+1]; 00080 00081 forAll (prevInterLevel, inti) 00082 { 00083 if (prevInterLevel.set(inti)) 00084 { 00085 refCast<GAMGInterface>(const_cast<lduInterface&> 00086 ( 00087 prevInterLevel[inti] 00088 )).combine(refCast<const GAMGInterface>(curInterLevel[inti])); 00089 00090 delete curInterLevel(inti); 00091 } 00092 } 00093 00094 interfaceLevels_.set(curLevel+1, NULL); 00095 } 00096 00097 00098 // ************************ vim: set sw=4 sts=4 et: ************************ //