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 
39 using namespace std;
40 
41 namespace Nektar
42 {
43 
44 std::string ExtrapOrder0BC::className = GetCFSBndCondFactory().
45  RegisterCreatorFunction("ExtrapOrder0",
46  ExtrapOrder0BC::create,
47  "Extrapolation of order 0 boundary condition.");
48 
49 ExtrapOrder0BC::ExtrapOrder0BC(const LibUtilities::SessionReaderSharedPtr& pSession,
51  const Array<OneD, Array<OneD, NekDouble> >& pTraceNormals,
52  const int pSpaceDim,
53  const int bcRegion,
54  const int cnt)
55  : CFSBndCond(pSession, pFields, pTraceNormals, pSpaceDim, bcRegion, cnt)
56 {
57 }
58 
61  Array<OneD, Array<OneD, NekDouble> > &physarray,
62  const NekDouble &time)
63 {
64  boost::ignore_unused(time);
65 
66  int i, j;
67  int e, pnt;
68  int id1, id2, nBCEdgePts;
69  int nVariables = physarray.num_elements();
70  int nDimensions = m_spacedim;
71 
72  const Array<OneD, const int> &traceBndMap
73  = m_fields[0]->GetTraceBndMap();
74 
75  int eMax;
76 
77  eMax = m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetExpSize();
78 
79  // Loop on m_bcRegions
80  for (e = 0; e < eMax; ++e)
81  {
82  nBCEdgePts = m_fields[0]->GetBndCondExpansions()[m_bcRegion]->
83  GetExp(e)->GetTotPoints();
84  id1 = m_fields[0]->GetBndCondExpansions()[m_bcRegion]->
85  GetPhys_Offset(e) ;
86  id2 = 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]->GetBndCondExpansions()[m_bcRegion]->
97  UpdatePhys())[id1+i] = Fwd[j][pnt];
98  }
99 
100  // Setting up bcs for energy
101  (m_fields[nVariables-1]->GetBndCondExpansions()[m_bcRegion]->
102  UpdatePhys())[id1+i] = Fwd[nVariables-1][pnt];
103  }
104  }
105 }
106 
107 }
virtual void v_Apply(Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray, const NekDouble &time)
int m_spacedim
Space dimension.
Definition: CFSBndCond.h:89
STL namespace.
Array< OneD, MultiRegions::ExpListSharedPtr > m_fields
Array of fields.
Definition: CFSBndCond.h:85
CFSBndCondFactory & GetCFSBndCondFactory()
Declaration of the boundary condition factory singleton.
Definition: CFSBndCond.cpp:41
Encapsulates the user-defined boundary conditions for compressible flow solver.
Definition: CFSBndCond.h:70
double NekDouble
int m_offset
Offset.
Definition: CFSBndCond.h:102
std::shared_ptr< SessionReader > SessionReaderSharedPtr
int m_bcRegion
Id of the boundary region.
Definition: CFSBndCond.h:100