summaryrefslogtreecommitdiff
path: root/src/functors/lattice/integral/superPlaneIntegralFluxMass2D.h
blob: be6d362ace7c4023866f2bca4c70bde5ea47aac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*  This file is part of the OpenLB library
 *
 *  Copyright (C) 2018 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 SUPER_PLANE_INTEGRAL_FLUX_MASS_2D_H
#define SUPER_PLANE_INTEGRAL_FLUX_MASS_2D_H

#include "superPlaneIntegralF2D.h"

namespace olb {


/// Mass flux line integral
/**
 * Calculates the flux integral of a 2-dimensional velocity functor multiplied
 * by a 1-dimensional density functor i.e. mass flux.
 *
 * Flux calculation is performed by SuperPlaneIntegralF2D<T>.
 * This class adds a print method and mass flux specific constructor wrappers.
 **/
template<typename T>
class SuperPlaneIntegralFluxMass2D final : public SuperPlaneIntegralF2D<T> {
private:
  /// Velocity functor
  FunctorPtr<SuperF2D<T>> _velocityF;
  /// Density functor
  FunctorPtr<SuperF2D<T>> _densityF;

  /// Mass conversation factor
  const T _conversationFactorMass;
  /// Mass conversation factor
  const T _conversationFactorTime;

public:
  /// Primary constructor
  /**
   * \param velocityF
   *        (non-)owning pointer or reference to velocity functor.
   * \param densityF
   *        (non-)owning pointer or reference to density functor.
   * \param conversationFactorMass
   *        Mass conversation factor
   * \param conversationFactorTime
   *        Time conversation factor e.g. `converter.getConversionFactorTime()`
   * \param hyperplaneLattice
   *        Parametrization of the hyperplane lattice to be interpolated.
   * \param integrationIndicator
   *        (non-)owning pointer or reference to SuperIndicatorF2D<T>.
   *        Describes the set of lattice points relevant for integration.
   * \param subplaneIndicator
   *        (non-)owning pointer or reference to IndicatorF2D<T>.
   *        Describes the relevant subplane of the interpolated hyperplane.
   * \param mode
   *        Defines how the values of the discrete hyperplane are determined.
   *        i.e. if they are interpolated or read directly from lattice points.
   *        Note: BlockDataReductionMode::Analytical imposes restrictions on
   *        hyperplane definition and discretization. If you are not sure
   *        consider providing only a hyperplane defintion instead of both a
   *        definition and a discretization.
   **/
  SuperPlaneIntegralFluxMass2D(FunctorPtr<SuperF2D<T>>&& velocityF,
                               FunctorPtr<SuperF2D<T>>&& densityF,
                               SuperGeometry2D<T>&       geometry,
                               T conversationFactorMass,
                               T conversationFactorTime,
                               const HyperplaneLattice2D<T>& hyperplaneLattice,
                               FunctorPtr<SuperIndicatorF2D<T>>&& integrationIndicator,
                               FunctorPtr<IndicatorF2D<T>>&&      subplaneIndicator,
                               BlockDataReductionMode             mode);
  /// Constructor providing automatic lattice generation
  /**
   * \param velocityF
   *        (non-)owning pointer or reference to velocity functor.
   * \param densityF
   *        (non-)owning pointer or reference to density functor.
   * \param conversationFactorMass
   *        Mass conversation factor
   * \param conversationFactorTime
   *        Time conversation factor e.g. `converter.getConversionFactorTime()`
   * \param hyperplane
   *        Parametrization of the hyperplane to be integrated.
   *        The lattice resolution is set to CuboidGeometry2D<T>::getMinDeltaR.
   * \param integrationIndicator
   *        (non-)owning pointer or reference to SuperIndicatorF2D<T>.
   *        Describes the set of lattice points relevant for integration.
   * \param subplaneIndicator
   *        (non-)owning pointer or reference to IndicatorF2D<T>.
   *        Describes the relevant subplane of the interpolated hyperplane.
   * \param mode
   *        Defines how the values of the discrete hyperplane are determined.
   *        i.e. if they are interpolated or read directly from lattice points.
   **/
  SuperPlaneIntegralFluxMass2D(FunctorPtr<SuperF2D<T>>&& velocityF,
                               FunctorPtr<SuperF2D<T>>&& densityF,
                               SuperGeometry2D<T>&       geometry,
                               T conversationFactorMass,
                               T conversationFactorTime,
                               const Hyperplane2D<T>& hyperplane,
                               FunctorPtr<SuperIndicatorF2D<T>>&& integrationIndicator,
                               FunctorPtr<IndicatorF2D<T>>&&      subplaneIndicator,
                               BlockDataReductionMode             mode);
  /// Constructor providing automatic lattice generation and omitting subplane restriction
  /**
   * i.e. the intersection between geometry and hyperplane is integrated wherever _integrationIndicatorF allows.
   *
   * \param velocityF
   *        (non-)owning pointer or reference to velocity functor.
   * \param densityF
   *        (non-)owning pointer or reference to density functor.
   * \param conversationFactorMass
   *        Mass conversation factor
   * \param conversationFactorTime
   *        Time conversation factor e.g. `converter.getConversionFactorTime()`
   * \param hyperplane
   *        Parametrization of the hyperplane to be integrated.
   *        The lattice resolution is set to the cuboid geometry's minDeltaR.
   * \param integrationIndicator
   *        (non-)owning pointer or reference to SuperIndicatorF2D<T>.
   *        Describes the set of lattice points relevant for integration.
   * \param mode
   *        Defines how the values of the discrete hyperplane are determined.
   *        i.e. if they are interpolated or read directly from lattice points.
   **/
  SuperPlaneIntegralFluxMass2D(FunctorPtr<SuperF2D<T>>&& velocityF,
                               FunctorPtr<SuperF2D<T>>&& densityF,
                               SuperGeometry2D<T>&       geometry,
                               T conversationFactorMass,
                               T conversationFactorTime,
                               const Hyperplane2D<T>&  hyperplane,
                               FunctorPtr<SuperIndicatorF2D<T>>&& integrationIndicator,
                               BlockDataReductionMode             mode);

  /// Constructor providing automatic lattice and material indicator instantiation
  /**
   * \param velocityF (non-)owning pointer or reference to velocity functor.
   * \param densityF  (non-)owning pointer or reference to density functor.
   * \param conversationFactorMass Mass conversation factor
   * \param conversationFactorTime Time conversation factor
   * \param origin    hyperplane origin
   * \param u         hyperplane direction vector
   * \param materials material numbers relevant for hyperplane integration
   * \param mode      defines how the values of the discrete hyperplane are determined
   **/
  SuperPlaneIntegralFluxMass2D(FunctorPtr<SuperF2D<T>>&& velocityF,
                               FunctorPtr<SuperF2D<T>>&& densityF,
                               SuperGeometry2D<T>&       geometry,
                               T conversationFactorMass,
                               T conversationFactorTime,
                               const Vector<T,2>& origin,
                               const Vector<T,2>& u,
                               std::vector<int> materials,
                               BlockDataReductionMode mode);
  /// Constructor providing automatic lattice parametrization, only interpolating material 1
  /**
   * \param velocityF (non-)owning pointer or reference to velocity functor.
   * \param densityF  (non-)owning pointer or reference to density functor.
   * \param conversationFactorMass Mass conversation factor
   * \param conversationFactorTime Time conversation factor
   * \param origin hyperplane origin
   * \param u      hyperplane direction vector
   * \param mode   defines how the values of the discrete hyperplane are determined
   **/
  SuperPlaneIntegralFluxMass2D(FunctorPtr<SuperF2D<T>>&& velocityF,
                               FunctorPtr<SuperF2D<T>>&& densityF,
                               SuperGeometry2D<T>&       geometry,
                               T conversationFactorMass,
                               T conversationFactorTime,
                               const Vector<T,2>& origin,
                               const Vector<T,2>& u,
                               BlockDataReductionMode mode);

  bool operator() (T output[], const int input[]) override;

  void print(std::string regionName, std::string massFluxSiScaleName);

};


}

#endif