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 int pSpaceDim, const int bcRegion, const int cnt)
52 : CFSBndCond(pSession, pFields, pTraceNormals, pSpaceDim, bcRegion, cnt)
53{
54}
55
58 [[maybe_unused]] const NekDouble &time)
59{
60 int i, j;
61 int e, pnt;
62 int id1, id2, nBCEdgePts;
63 int nVariables = physarray.size();
64 int nDimensions = m_spacedim;
65
66 const Array<OneD, const int> &traceBndMap = m_fields[0]->GetTraceBndMap();
67
68 int eMax;
69
70 eMax = m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetExpSize();
71
72 // Loop on m_bcRegions
73 for (e = 0; e < eMax; ++e)
74 {
75 nBCEdgePts = m_fields[0]
76 ->GetBndCondExpansions()[m_bcRegion]
77 ->GetExp(e)
78 ->GetTotPoints();
79 id1 =
80 m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetPhys_Offset(e);
81 id2 =
82 m_fields[0]->GetTrace()->GetPhys_Offset(traceBndMap[m_offset + e]);
83
84 // Loop on points of m_bcRegion 'e'
85 for (i = 0; i < nBCEdgePts; i++)
86 {
87 pnt = id2 + i;
88
89 // Setting up bcs for density and velocities
90 for (j = 0; j <= nDimensions; ++j)
91 {
92 (m_fields[j]
93 ->GetBndCondExpansions()[m_bcRegion]
94 ->UpdatePhys())[id1 + i] = Fwd[j][pnt];
95 }
96
97 // Setting up bcs for energy
98 (m_fields[nVariables - 1]
99 ->GetBndCondExpansions()[m_bcRegion]
100 ->UpdatePhys())[id1 + i] = Fwd[nVariables - 1][pnt];
101 }
102 }
103}
104
105} // namespace Nektar
Encapsulates the user-defined boundary conditions for compressible flow solver.
Definition: CFSBndCond.h:70
int m_spacedim
Space dimension.
Definition: CFSBndCond.h:95
int m_bcRegion
Id of the boundary region.
Definition: CFSBndCond.h:109
int m_offset
Offset.
Definition: CFSBndCond.h:111
Array< OneD, MultiRegions::ExpListSharedPtr > m_fields
Array of fields.
Definition: CFSBndCond.h:91
static std::string className
Name of the class.
static CFSBndCondSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const Array< OneD, Array< OneD, NekDouble > > &pTraceNormals, const int pSpaceDim, const int bcRegion, const int cnt)
Creates an instance of this class.
ExtrapOrder0BC(const LibUtilities::SessionReaderSharedPtr &pSession, const Array< OneD, MultiRegions::ExpListSharedPtr > &pFields, const Array< OneD, Array< OneD, NekDouble > > &pTraceNormals, const int pSpaceDim, const int bcRegion, const int cnt)
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.
Definition: NekFactory.hpp:197
std::shared_ptr< SessionReader > SessionReaderSharedPtr
CFSBndCondFactory & GetCFSBndCondFactory()
Declaration of the boundary condition factory singleton.
Definition: CFSBndCond.cpp:41
double NekDouble