summaryrefslogtreecommitdiff
path: root/src/functors/lattice/indicator/blockIndicatorF3D.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-06-24 14:43:36 +0200
committerAdrian Kummerlaender2019-06-24 14:43:36 +0200
commit94d3e79a8617f88dc0219cfdeedfa3147833719d (patch)
treec1a6894679563e271f5c6ea7a17fa3462f7212a3 /src/functors/lattice/indicator/blockIndicatorF3D.h
downloadgrid_refinement_openlb-94d3e79a8617f88dc0219cfdeedfa3147833719d.tar
grid_refinement_openlb-94d3e79a8617f88dc0219cfdeedfa3147833719d.tar.gz
grid_refinement_openlb-94d3e79a8617f88dc0219cfdeedfa3147833719d.tar.bz2
grid_refinement_openlb-94d3e79a8617f88dc0219cfdeedfa3147833719d.tar.lz
grid_refinement_openlb-94d3e79a8617f88dc0219cfdeedfa3147833719d.tar.xz
grid_refinement_openlb-94d3e79a8617f88dc0219cfdeedfa3147833719d.tar.zst
grid_refinement_openlb-94d3e79a8617f88dc0219cfdeedfa3147833719d.zip
Initialize at openlb-1-3
Diffstat (limited to 'src/functors/lattice/indicator/blockIndicatorF3D.h')
-rw-r--r--src/functors/lattice/indicator/blockIndicatorF3D.h140
1 files changed, 140 insertions, 0 deletions
diff --git a/src/functors/lattice/indicator/blockIndicatorF3D.h b/src/functors/lattice/indicator/blockIndicatorF3D.h
new file mode 100644
index 0000000..6455121
--- /dev/null
+++ b/src/functors/lattice/indicator/blockIndicatorF3D.h
@@ -0,0 +1,140 @@
+/* This file is part of the OpenLB library
+ *
+ * Copyright (C) 2017 Adrian Kummerlaender
+ * E-mail contact: info@openlb.net
+ * The most recent release of OpenLB can be downloaded at
+ * <http://www.openlb.net/>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+*/
+
+#ifndef BLOCK_INDICATOR_F_3D_H
+#define BLOCK_INDICATOR_F_3D_H
+
+#include "blockIndicatorBaseF3D.h"
+#include "geometry/blockGeometryView3D.h"
+#include "functors/analytical/indicator/smoothIndicatorBaseF3D.h"
+
+namespace olb {
+
+/// BlockIndicatorF3D from IndicatorF3D
+template <typename T>
+class BlockIndicatorFfromIndicatorF3D : public BlockIndicatorF3D<T> {
+protected:
+ IndicatorF3D<T>& _indicatorF;
+public:
+ /**
+ * \param indicatorF Indicator to be reduced to lattice space
+ * \param blockGeometry Block geometry structure to be used for conversion
+ * between lattice and physical coordinates.
+ **/
+ BlockIndicatorFfromIndicatorF3D(IndicatorF3D<T>& indicatorF,
+ BlockGeometryStructure3D<T>& blockGeometry);
+
+ using BlockIndicatorF3D<T>::operator();
+ bool operator() (bool output[], const int input[]) override;
+
+ /// Returns min lattice position of the indicated domain's bounding box
+ Vector<int,3> getMin() override;
+ /// Returns max lattice position of the indicated domain's bounding box
+ Vector<int,3> getMax() override;
+};
+
+
+/// BlockIndicatorF3D from SmoothIndicatorF3D
+template <typename T, bool HLBM>
+class BlockIndicatorFfromSmoothIndicatorF3D : public BlockIndicatorF3D<T> {
+protected:
+ SmoothIndicatorF3D<T,T,HLBM>& _indicatorF;
+public:
+ /**
+ * \param indicatorF Smooth indicator to be reduced to lattice space
+ * \param blockGeometry Block geometry structure to be used for conversion
+ * between lattice and physical coordinates.
+ **/
+ BlockIndicatorFfromSmoothIndicatorF3D(SmoothIndicatorF3D<T,T,HLBM>& indicatorF,
+ BlockGeometryStructure3D<T>& blockGeometry);
+
+ using BlockIndicatorF3D<T>::operator();
+ bool operator() (bool output[], const int input[]) override;
+
+ /// Returns min lattice position of the indicated domain's bounding box
+ Vector<int,3> getMin() override;
+ /// Returns max lattice position of the indicated domain's bounding box
+ Vector<int,3> getMax() override;
+};
+
+
+/// Block indicator functor from material numbers
+template <typename T>
+class BlockIndicatorMaterial3D : public BlockIndicatorF3D<T> {
+protected:
+ const std::vector<int> _materials;
+public:
+ /**
+ * \param blockGeometry Block geometry structure to be queried
+ * \param materials Material number vector
+ **/
+ BlockIndicatorMaterial3D(BlockGeometryStructure3D<T>& blockGeometry,
+ std::vector<int> materials);
+ /**
+ * \param blockGeometry Block geometry structure to be queried
+ * \param materials Material number list
+ **/
+ BlockIndicatorMaterial3D(BlockGeometryStructure3D<T>& blockGeometry,
+ std::list<int> materials);
+ /**
+ * \param blockGeometry Block geometry structure to be queried
+ * \param material Material number
+ **/
+ BlockIndicatorMaterial3D(BlockGeometryStructure3D<T>& blockGeometry,
+ int material);
+
+ using BlockIndicatorF3D<T>::operator();
+ bool operator() (bool output[], const int input[]) override;
+
+ /// Returns true iff indicated domain subset is empty
+ bool isEmpty() override;
+ /// Returns min lattice position of the indicated domain's bounding box
+ Vector<int,3> getMin() override;
+ /// Returns max lattice position of the indicated domain's bounding box
+ Vector<int,3> getMax() override;
+};
+
+
+/// Block indicator identity
+template <typename T>
+class BlockIndicatorIdentity3D : public BlockIndicatorF3D<T> {
+protected:
+ BlockIndicatorF3D<T>& _indicatorF;
+public:
+ /**
+ * \param indicatorF Block indicator to be proxied
+ **/
+ BlockIndicatorIdentity3D(BlockIndicatorF3D<T>& indicatorF);
+
+ using BlockIndicatorF3D<T>::operator();
+ bool operator() (bool output[], const int input[]) override;
+
+ /// Returns min lattice position of the indicated domain's bounding box
+ Vector<int,3> getMin() override;
+ /// Returns max lattice position of the indicated domain's bounding box
+ Vector<int,3> getMax() override;
+};
+
+} // namespace olb
+
+#endif