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 <boost/core/ignore_unused.hpp>
36
37#include "ExtrapOrder0BC.h"
38
39using namespace std;
40
41namespace Nektar
42{
43
44std::string ExtrapOrder0BC::className =
46 "ExtrapOrder0", ExtrapOrder0BC::create,
47 "Extrapolation of order 0 boundary condition.");
48
52 const Array<OneD, Array<OneD, NekDouble>> &pTraceNormals,
53 const int pSpaceDim, const int bcRegion, const int cnt)
54 : CFSBndCond(pSession, pFields, pTraceNormals, pSpaceDim, bcRegion, cnt)
55{
56}
57
60 const NekDouble &time)
61{
62 boost::ignore_unused(time);
63
64 int i, j;
65 int e, pnt;
66 int id1, id2, nBCEdgePts;
67 int nVariables = physarray.size();
68 int nDimensions = m_spacedim;
69
70 const Array<OneD, const int> &traceBndMap = m_fields[0]->GetTraceBndMap();
71
72 int eMax;
73
74 eMax = m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetExpSize();
75
76 // Loop on m_bcRegions
77 for (e = 0; e < eMax; ++e)
78 {
79 nBCEdgePts = m_fields[0]
80 ->GetBndCondExpansions()[m_bcRegion]
81 ->GetExp(e)
82 ->GetTotPoints();
83 id1 =
84 m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetPhys_Offset(e);
85 id2 =
86 m_fields[0]->GetTrace()->GetPhys_Offset(traceBndMap[m_offset + e]);
87
88 // Loop on points of m_bcRegion 'e'
89 for (i = 0; i < nBCEdgePts; i++)
90 {
91 pnt = id2 + i;
92
93 // Setting up bcs for density and velocities
94 for (j = 0; j <= nDimensions; ++j)
95 {
96 (m_fields[j]
97 ->GetBndCondExpansions()[m_bcRegion]
98 ->UpdatePhys())[id1 + i] = Fwd[j][pnt];
99 }
100
101 // Setting up bcs for energy
102 (m_fields[nVariables - 1]
103 ->GetBndCondExpansions()[m_bcRegion]
104 ->UpdatePhys())[id1 + i] = Fwd[nVariables - 1][pnt];
105 }
106 }
107}
108
109} // 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)
virtual 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:198
std::shared_ptr< SessionReader > SessionReaderSharedPtr
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:2
CFSBndCondFactory & GetCFSBndCondFactory()
Declaration of the boundary condition factory singleton.
Definition: CFSBndCond.cpp:41
double NekDouble