Nektar++
EnforceEntropyPressure.cpp
Go to the documentation of this file.
1///////////////////////////////////////////////////////////////////////////////
2//
3// File: EnforceEntropyPressure.cpp
4//
5// For more information, please see: http://www.nektar.info
6//
7// The MIT License
8//
9// Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
10// Department of Aeronautics, Imperial College London (UK), and Scientific
11// Computing and Imaging Institute, University of Utah (USA).
12//
13// License for the specific language governing rights and limitations under
14// Permission is hereby granted, free of charge, to any person obtaining a
15// copy of this software and associated documentation files (the "Software"),
16// to deal in the Software without restriction, including without limitation
17// the rights to use, copy, modify, merge, publish, distribute, sublicense,
18// and/or sell copies of the Software, and to permit persons to whom the
19// Software is furnished to do so, subject to the following conditions:
20//
21// The above copyright notice and this permission notice shall be included
22// in all copies or substantial portions of the Software.
23//
24// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
25// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30// DEALINGS IN THE SOFTWARE.
31//
32// Description: Modified Riemann invariant boundary condition.
33// Enforce the entropy and pressure at the inflow boundary;
34// Enforce the pressure at the outflow boundary.
35// The input can be either VALUE or FILE.
36//
37///////////////////////////////////////////////////////////////////////////////
38
40using namespace std;
41
42namespace Nektar
43{
44
47 "EnforceEntropyPressure", EnforceEntropyPressure::create,
48 "Riemann boundary condition enforcing entropy and pressure.");
49
53 const Array<OneD, Array<OneD, NekDouble>> &pTraceNormals,
54 const Array<OneD, Array<OneD, NekDouble>> &pGridVelocity,
55 const int pSpaceDim, const int bcRegion, const int cnt)
56 : CFSBndCond(pSession, pFields, pTraceNormals, pGridVelocity, pSpaceDim,
57 bcRegion, cnt)
58{
59
61 m_fields[0]->GetBndCondExpansions()[m_bcRegion];
62
63 //-> Gather a list of index from trace to this boundary
64 m_npts = bndexp->GetTotPoints();
65
67
68 const Array<OneD, const int> &traceBndMap = m_fields[0]->GetTraceBndMap();
69
70 // Construct a map for the boundary to trace map for easy acess to
71 // phys space points
72 int cnt1 = 0;
73 for (int e = 0; e < bndexp->GetNumElmts(); ++e)
74 {
75 int nTracePts = bndexp->GetExp(e)->GetTotPoints();
76
77 int id =
78 m_fields[0]->GetTrace()->GetPhys_Offset(traceBndMap[m_offset + e]);
79
80 // Loop on the points of the m_bcRegion
81 for (int i = 0; i < nTracePts; i++)
82 {
83 // the ith point in region e
84 m_bndToTraceMap[cnt1++] = id + i;
85 }
86 }
87
90
91 for (int i = 0; i < m_fields.size(); ++i)
92 {
93 m_bndPhys[i] =
94 m_fields[i]->GetBndCondExpansions()[m_bcRegion]->UpdatePhys();
95
96 BCvals[i] = Array<OneD, NekDouble>(m_npts);
97 Vmath::Vcopy(m_npts, m_bndPhys[i], 1, BCvals[i], 1);
98 }
99
100 // Set up boudnary required BCs
102 Vmath::Vcopy(m_npts, BCvals[0], 1, m_rhoBC, 1);
103
105 // Evaluate velocity on boundary
106 for (int i = 0; i < m_spacedim; ++i)
107 {
109 Vmath::Vcopy(m_npts, BCvals[i + 1], 1, m_velBC[i], 1);
110 Vmath::Vdiv(m_npts, m_velBC[i], 1, m_rhoBC, 1, m_velBC[i], 1);
111 }
113 m_varConv->GetPressure(BCvals, m_pBC);
114
115 // Computing the normal velocity for characteristics coming
116 // from outside the computational domain
118 for (int i = 0; i < m_spacedim; i++)
119 {
120 for (int j = 0; j < m_npts; ++j)
121 {
122 m_VnInf[j] += m_traceNormals[i][m_bndToTraceMap[j]] * m_velBC[i][j];
123 }
124 }
125}
126
129 [[maybe_unused]] Array<OneD, Array<OneD, NekDouble>> &physarray,
130 [[maybe_unused]] const NekDouble &time)
131{
132 int i, j;
133 int nDimensions = m_spacedim;
134
135 Array<OneD, Array<OneD, NekDouble>> FwdBnd(Fwd.size());
136 Array<OneD, Array<OneD, NekDouble>> bndPhys(Fwd.size());
137
138 // make a local copy of Fwd along boundary of interest
139 for (i = 0; i < Fwd.size(); ++i)
140 {
141 FwdBnd[i] = Array<OneD, NekDouble>(m_npts);
142 for (j = 0; j < m_npts; ++j)
143 {
144 FwdBnd[i][j] = Fwd[i][m_bndToTraceMap[j]];
145 }
146 }
147
148 // Computing the normal velocity for characteristics coming
149 // from inside the computational domain
151
152 for (i = 0; i < nDimensions; ++i)
153 {
154 for (j = 0; j < m_npts; ++j)
155 {
156 Vn[j] += m_traceNormals[i][m_bndToTraceMap[j]] * FwdBnd[i + 1][j];
157 }
158 }
159 // divide by density.
160 Vmath::Vdiv(m_npts, Vn, 1, FwdBnd[0], 1, Vn, 1);
161
162 // Get speed of sound
164 Array<OneD, NekDouble> soundSpeed(m_npts);
165
166 m_varConv->GetPressure(FwdBnd, pressure);
167 m_varConv->GetSoundSpeed(FwdBnd, soundSpeed);
168
169 // Get Mach. Note: it is computed by Vn/c
171 Vmath::Vdiv(m_npts, Vn, 1, soundSpeed, 1, Mach, 1);
172 Vmath::Vabs(m_npts, Mach, 1, Mach, 1);
173
174 // Auxiliary variables
175 Array<OneD, NekDouble> velBC(nDimensions, 0.0);
176
177 // L represents properties outside boundary
178 // R represents properties inside boundary (numerical state)
179 NekDouble rhoL, uL, pL;
180 NekDouble EBC, rR, cstar, pstar, rhostar, ustar; // vn
181
182 NekDouble gamMinOne = m_gamma - 1.0;
183 NekDouble twoOverGamMinOne = 2.0 / gamMinOne;
184 NekDouble gamInv = 1.0 / m_gamma;
185
186 // Loop on m_bcRegions
187 for (int pnt = 0; pnt < m_npts; ++pnt)
188 {
189 // Impose inflow Riemann invariant
190 if (Vn[pnt] <= 0.0)
191 {
192 // Subsonic flows
193 if (Mach[pnt] < 1.00)
194 {
195 // right characteristic
196 rR = -Vn[pnt] - sqrt(m_gamma * pressure[pnt] / FwdBnd[0][pnt]) *
197 twoOverGamMinOne;
198 // vn = -m_VnInf[pnt]; //vn BC
199
200 // fix rhostar and pstar to be the input values
201 // compute ustar using left-pointing characteristic line IR^-
202 pstar = m_pBC[pnt];
203 rhostar = m_rhoBC[pnt];
204 cstar = sqrt(m_gamma * pstar / rhostar);
205 ustar = rR + cstar * twoOverGamMinOne;
206
207 // add supplement equation that rhoL=rhostar
208 // then pL=pstar, according to IL^0
209 // and uL=ustar, according to IL^+
210 rhoL = rhostar;
211 pL = pstar;
212 uL = ustar;
213
214 // std subsnoic inflow
215 // rhoL = m_rhoBC[pnt];
216 // uL = -m_VnInf[pnt];
217 // pL = m_pBC[pnt];
218 }
219 else // Supersonic inflow
220 {
221 // all characteristics are from left so just impose
222 // star state to left values
223 // Note: m_vnInf is the negative of the normal velocity
224 // across boundary
225 rhoL = m_rhoBC[pnt];
226 uL = -m_VnInf[pnt];
227 pL = m_pBC[pnt];
228 }
229
230 // Boundary energy
231 EBC = pL * twoOverGamMinOne * 0.5;
232
233 // evaluate the different between the left state normal
234 // velocity and that from the desired condition (note
235 // m_VnInf is using an outwards normal definition.
236 NekDouble VnDiff = uL + m_VnInf[pnt];
237
238 // Boundary velocities & Kinite energy
239 // Note: normals are negated since they point outwards in
240 // the domain
241
242 // Note: Can just use the BC values directly!!
243 for (j = 0; j < nDimensions; ++j)
244 {
245 // Set velocity to the desired conditions modified to
246 // take account of the normal state for Riemann
247 // problem. (Negative accounts for outwards normal definition)
248 // velBC[j] = m_velBC[j][pnt];
249 velBC[j] = m_velBC[j][pnt] -
250 VnDiff * m_traceNormals[j][m_bndToTraceMap[pnt]];
251
252 EBC += 0.5 * rhoL * velBC[j] * velBC[j];
253 }
254
255 //-------------------------------------------------------------------------
256 // Impose Left hand Riemann Invariant boundary conditions
257 m_bndPhys[0][pnt] = rhoL;
258 for (j = 0; j < nDimensions; ++j)
259 {
260 m_bndPhys[j + 1][pnt] = rhoL * velBC[j];
261 }
262 m_bndPhys[nDimensions + 1][pnt] = EBC;
263 }
264 else // Outflow
265 {
266
267 // Note: Allowing the switch can cause worse convergence in this
268 // type BC.
269 // So improve it later.
270 if (Mach[pnt] < 1.00)
271 {
272 // subsonic outflow: fix pstar
273 rR = -Vn[pnt] - sqrt(m_gamma * pressure[pnt] / FwdBnd[0][pnt]) *
274 twoOverGamMinOne;
275 // vn = -m_VnInf[pnt];
276
277 pstar = m_pBC[pnt];
278 rhostar = FwdBnd[0][pnt] * pow((pstar / pressure[pnt]), gamInv);
279 cstar = sqrt(m_gamma * pstar / rhostar);
280 ustar = rR + cstar * twoOverGamMinOne;
281
282 rhoL = rhostar;
283 uL = ustar;
284 pL = pstar;
285 }
286 else
287 {
288 // supersonic outflow
289 // Just set to imposed state and let Riemann BC dictate values
290 rhoL = m_rhoBC[pnt];
291 uL = -m_VnInf[pnt];
292 pL = m_pBC[pnt];
293 }
294
295 // Boundary energy
296 EBC = pL * twoOverGamMinOne * 0.5;
297
298 // Boundary velocities & Kinite energy
299 // Note: normals are negated since they point outwards in
300 // the domain
301 for (j = 0; j < nDimensions; ++j)
302 {
303 velBC[j] = -1.0 * uL * m_traceNormals[j][m_bndToTraceMap[pnt]];
304 EBC += 0.5 * rhoL * velBC[j] * velBC[j];
305 }
306
307 // Impose Left hand Riemann Invariant boundary conditions
308 m_bndPhys[0][pnt] = rhoL;
309 for (j = 0; j < nDimensions; ++j)
310 {
311 m_bndPhys[j + 1][pnt] = rhoL * velBC[j];
312 }
313 m_bndPhys[nDimensions + 1][pnt] = EBC;
314 }
315 }
316}
317
318} // namespace Nektar
Encapsulates the user-defined boundary conditions for compressible flow solver.
Definition: CFSBndCond.h:71
int m_spacedim
Space dimension.
Definition: CFSBndCond.h:98
Array< OneD, Array< OneD, NekDouble > > m_traceNormals
Trace normals.
Definition: CFSBndCond.h:94
NekDouble m_gamma
Parameters of the flow.
Definition: CFSBndCond.h:105
int m_bcRegion
Id of the boundary region.
Definition: CFSBndCond.h:113
VariableConverterSharedPtr m_varConv
Auxiliary object to convert variables.
Definition: CFSBndCond.h:100
int m_offset
Offset.
Definition: CFSBndCond.h:115
Array< OneD, MultiRegions::ExpListSharedPtr > m_fields
Array of fields.
Definition: CFSBndCond.h:92
static std::string className
Name of the class.
void v_Apply(Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray, const NekDouble &time) override
Array< OneD, Array< OneD, NekDouble > > m_velBC
static CFSBndCondSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const Array< OneD, Array< OneD, NekDouble > > &pTraceNormals, const Array< OneD, Array< OneD, NekDouble > > &pGridVelocity, const int pSpaceDim, const int bcRegion, const int cnt)
Creates an instance of this class.
Array< OneD, NekDouble > m_VnInf
Reference normal velocity.
Array< OneD, NekDouble > m_rhoBC
Array< OneD, Array< OneD, NekDouble > > m_bndPhys
EnforceEntropyPressure(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const Array< OneD, Array< OneD, NekDouble > > &pTraceNormals, const Array< OneD, Array< OneD, NekDouble > > &pGridVelocity, const int pSpaceDim, const int bcRegion, const int cnt)
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
std::shared_ptr< SessionReader > SessionReaderSharedPtr
std::shared_ptr< ExpList > ExpListSharedPtr
Shared pointer to an ExpList object.
CFSBndCondFactory & GetCFSBndCondFactory()
Declaration of the boundary condition factory singleton.
Definition: CFSBndCond.cpp:41
double NekDouble
void Vabs(int n, const T *x, const int incx, T *y, const int incy)
vabs: y = |x|
Definition: Vmath.hpp:352
void Vdiv(int n, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
Multiply vector z = x/y.
Definition: Vmath.hpp:126
void Vcopy(int n, const T *x, const int incx, T *y, const int incy)
Definition: Vmath.hpp:825
STL namespace.
scalarT< T > sqrt(scalarT< T > in)
Definition: scalar.hpp:294