Nektar++
ExtrapOrder0BC.cpp
Go to the documentation of this file.
1///////////////////////////////////////////////////////////////////////////////
2//
3// File: ExtrapOrder0BC.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// Permission is hereby granted, free of charge, to any person obtaining a
14// copy of this software and associated documentation files (the "Software"),
15// to deal in the Software without restriction, including without limitation
16// the rights to use, copy, modify, merge, publish, distribute, sublicense,
17// and/or sell copies of the Software, and to permit persons to whom the
18// Software is furnished to do so, subject to the following conditions:
19//
20// The above copyright notice and this permission notice shall be included
21// in all copies or substantial portions of the Software.
22//
23// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29// DEALINGS IN THE SOFTWARE.
30//
31// Description: Extrapolation of order 0 boundary condition
32//
33///////////////////////////////////////////////////////////////////////////////
34
35#include "ExtrapOrder0BC.h"
36
37using namespace std;
38
39namespace Nektar
40{
41
42std::string ExtrapOrder0BC::className =
44 "ExtrapOrder0", ExtrapOrder0BC::create,
45 "Extrapolation of order 0 boundary condition.");
46
50 const Array<OneD, Array<OneD, NekDouble>> &pTraceNormals,
51 const Array<OneD, Array<OneD, NekDouble>> &pGridVelocity,
52 const int pSpaceDim, const int bcRegion, const int cnt)
53 : CFSBndCond(pSession, pFields, pTraceNormals, pGridVelocity, pSpaceDim,
54 bcRegion, cnt)
55{
56}
57
60 [[maybe_unused]] const NekDouble &time)
61{
62 int i, j;
63 int e, pnt;
64 int id1, id2, nBCEdgePts;
65 int nVariables = physarray.size();
66 int nDimensions = m_spacedim;
67
68 const Array<OneD, const int> &traceBndMap = m_fields[0]->GetTraceBndMap();
69
70 int eMax;
71
72 eMax = m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetExpSize();
73
74 // Loop on m_bcRegions
75 for (e = 0; e < eMax; ++e)
76 {
77 nBCEdgePts = m_fields[0]
78 ->GetBndCondExpansions()[m_bcRegion]
79 ->GetExp(e)
80 ->GetTotPoints();
81 id1 =
82 m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetPhys_Offset(e);
83 id2 =
84 m_fields[0]->GetTrace()->GetPhys_Offset(traceBndMap[m_offset + e]);
85
86 // Loop on points of m_bcRegion 'e'
87 for (i = 0; i < nBCEdgePts; i++)
88 {
89 pnt = id2 + i;
90
91 // Setting up bcs for density and velocities
92 for (j = 0; j <= nDimensions; ++j)
93 {
94 (m_fields[j]
95 ->GetBndCondExpansions()[m_bcRegion]
96 ->UpdatePhys())[id1 + i] = Fwd[j][pnt];
97 }
98
99 // Setting up bcs for energy
100 (m_fields[nVariables - 1]
101 ->GetBndCondExpansions()[m_bcRegion]
102 ->UpdatePhys())[id1 + i] = Fwd[nVariables - 1][pnt];
103 }
104 }
105}
106
107} // 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
int m_bcRegion
Id of the boundary region.
Definition: CFSBndCond.h:113
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.
ExtrapOrder0BC(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)
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.
void v_Apply(Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray, const NekDouble &time) override
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
std::shared_ptr< SessionReader > SessionReaderSharedPtr
CFSBndCondFactory & GetCFSBndCondFactory()
Declaration of the boundary condition factory singleton.
Definition: CFSBndCond.cpp:41
double NekDouble
STL namespace.