$treeview $search $mathjax
Palabos  Version 1.1
$projectbrief
$projectbrief
$searchbox

staticRepartitions3D.h

Go to the documentation of this file.
00001 /* This file is part of the Palabos library.
00002  *
00003  * Copyright (C) 2011 FlowKit Sarl
00004  * Avenue de Chailly 23
00005  * 1012 Lausanne, Switzerland
00006  * E-mail contact: contact@flowkit.com
00007  *
00008  * The most recent release of Palabos can be downloaded at 
00009  * <http://www.palabos.org/>
00010  *
00011  * The library Palabos is free software: you can redistribute it and/or
00012  * modify it under the terms of the GNU Affero General Public License as
00013  * published by the Free Software Foundation, either version 3 of the
00014  * License, or (at your option) any later version.
00015  *
00016  * The library is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU Affero General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU Affero General Public License
00022  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00023 */
00024 
00029 #ifndef STATIC_REPARTITIONS_3D_H
00030 #define STATIC_REPARTITIONS_3D_H
00031 
00032 #include "parallelism/mpiManager.h"
00033 #include "core/globalDefs.h"
00034 #include "atomicBlock/dataField3D.h"
00035 #include "multiBlock/sparseBlockStructure3D.h"
00036 
00037 namespace plb {
00038 
00042 typedef ScalarField3D<unsigned char> CellTypeField3D;
00043 
00045 SparseBlockStructure3D createRegularDistribution3D (
00046         plint nx, plint ny, plint nz, plint numBlocksX, plint numBlocksY, plint numBlocksZ );
00047 
00049 SparseBlockStructure3D createRegularDistribution3D (
00050         Box3D const& domain, plint numBlocksX, plint numBlocksY, plint numBlocksZ );
00051 
00053 SparseBlockStructure3D
00054     createRegularDistribution3D(plint nx, plint ny, plint nz,
00055                                 int numProc = global::mpi().getSize());
00056 
00058 SparseBlockStructure3D createRegularDistribution3D(Box3D const& domain,
00059                                                    int numProc = global::mpi().getSize());
00060 
00062 SparseBlockStructure3D reparallelize(SparseBlockStructure3D const& originalStructure,
00063                                      plint blockLx, plint blockLy, plint blockLz);
00064 
00066 SparseBlockStructure3D reparallelize(SparseBlockStructure3D const& originalStructure);
00067 
00072 SparseBlockStructure3D createXSlicedDistribution3D (
00073         CellTypeField3D const& cellTypeField,
00074         plint numBlocks );
00075 
00077 SparseBlockStructure3D createYSlicedDistribution3D (
00078         CellTypeField3D const& cellTypeField,
00079         plint numBlocks );
00080         
00082 SparseBlockStructure3D createZSlicedDistribution3D (
00083         CellTypeField3D const& cellTypeField,
00084         plint numBlocks );
00085 
00088 SparseBlockStructure3D createXSlicedDistribution3D (
00089         CellTypeField3D const& cellTypeField );
00090 
00092 SparseBlockStructure3D createYSlicedDistribution3D (
00093         CellTypeField3D const& cellTypeField );
00094 
00096 SparseBlockStructure3D createZSlicedDistribution3D (
00097         CellTypeField3D const& cellTypeField );
00098 
00099 }  // namespace plb
00100 
00101 #endif  // STATIC_REPARTITIONS_3D_H