Nektar++
Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
Nektar::PressureMachTemperatureBC Class Reference

Boundary condition in terms of pressure, Mach number and temperature. P should be defined in the "rho" entry, T in the "E" entry and the Mach number in each direction in the corresponding momentum variable. This state is converted to conserved variables and a Dirichlet condition is applied. More...

#include <PressureMachTemperatureBC.h>

Inheritance diagram for Nektar::PressureMachTemperatureBC:
[legend]

Static Public Member Functions

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. More...
 

Static Public Attributes

static std::string className
 Name of the class. More...
 

Protected Member Functions

void v_Apply (Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray, const NekDouble &time) override
 
- Protected Member Functions inherited from Nektar::CFSBndCond
 CFSBndCond (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)
 Constructor. More...
 
virtual void v_Apply (Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray, const NekDouble &time)=0
 
virtual void v_ApplyBwdWeight ()
 

Private Member Functions

 PressureMachTemperatureBC (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)
 
 ~PressureMachTemperatureBC (void) override
 

Private Attributes

Array< OneD, Array< OneD, NekDouble > > m_bcStorage
 

Friends

class MemoryManager< PressureMachTemperatureBC >
 

Additional Inherited Members

- Public Member Functions inherited from Nektar::CFSBndCond
virtual ~CFSBndCond ()
 
void Apply (Array< OneD, Array< OneD, NekDouble > > &Fwd, Array< OneD, Array< OneD, NekDouble > > &physarray, const NekDouble &time=0)
 Apply the boundary condition. More...
 
void ApplyBwdWeight ()
 Apply the Weight of boundary condition. More...
 
- Protected Attributes inherited from Nektar::CFSBndCond
LibUtilities::SessionReaderSharedPtr m_session
 Session reader. More...
 
Array< OneD, MultiRegions::ExpListSharedPtrm_fields
 Array of fields. More...
 
Array< OneD, Array< OneD, NekDouble > > m_traceNormals
 Trace normals. More...
 
Array< OneD, Array< OneD, NekDouble > > m_gridVelocityTrace
 Grid Velocity. More...
 
int m_spacedim
 Space dimension. More...
 
VariableConverterSharedPtr m_varConv
 Auxiliary object to convert variables. More...
 
NekDouble m_diffusionAveWeight
 Weight for average calculation of diffusion term. More...
 
NekDouble m_gamma
 Parameters of the flow. More...
 
NekDouble m_rhoInf
 
NekDouble m_pInf
 
NekDouble m_pOut
 
Array< OneD, NekDoublem_velInf
 
NekDouble m_angVel
 
int m_bcRegion
 Id of the boundary region. More...
 
int m_offset
 Offset. More...
 

Detailed Description

Boundary condition in terms of pressure, Mach number and temperature. P should be defined in the "rho" entry, T in the "E" entry and the Mach number in each direction in the corresponding momentum variable. This state is converted to conserved variables and a Dirichlet condition is applied.

Definition at line 51 of file PressureMachTemperatureBC.h.

Constructor & Destructor Documentation

◆ PressureMachTemperatureBC()

Nektar::PressureMachTemperatureBC::PressureMachTemperatureBC ( 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 
)
private

Definition at line 48 of file PressureMachTemperatureBC.cpp.

54 : CFSBndCond(pSession, pFields, pTraceNormals, pGridVelocity, pSpaceDim,
55 bcRegion, cnt)
56{
57 int nvariables = m_fields.size();
58 int numBCPts =
59 m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetNpoints();
60
61 // Array for storing conserved variables on the boundary
62 m_bcStorage = Array<OneD, Array<OneD, NekDouble>>(nvariables);
63 for (int i = 0; i < nvariables; ++i)
64 {
65 m_bcStorage[i] = Array<OneD, NekDouble>(numBCPts, 0.0);
66 }
67
68 // We assume that the pressure is given in entry [0] of
69 // the BC ("rho" position) and the temperature in entry m_spacedim+1
70 // ("E" position)
71 const Array<OneD, const NekDouble> pressure =
72 m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetPhys();
73 const Array<OneD, const NekDouble> temperature =
74 m_fields[m_spacedim + 1]->GetBndCondExpansions()[m_bcRegion]->GetPhys();
75
76 // Calculate density
77 m_varConv->GetRhoFromPT(pressure, temperature, m_bcStorage[0]);
78 // Calculate the internal energy times density
79 m_varConv->GetEFromRhoP(m_bcStorage[0], pressure,
81 Vmath::Vmul(numBCPts, m_bcStorage[m_spacedim + 1], 1, m_bcStorage[0], 1,
82 m_bcStorage[m_spacedim + 1], 1);
83 // We can now obtain the sound speed at this (rho,e) condition
84 Array<OneD, NekDouble> soundSpeed(numBCPts);
85 m_varConv->GetSoundSpeed(m_bcStorage, soundSpeed);
86
87 // Now update momentum and add kinetic energy to E
88 Array<OneD, NekDouble> tmp(numBCPts);
89 for (int i = 0; i < m_spacedim; ++i)
90 {
91 // tmp = velocity in i direction
93 numBCPts,
94 m_fields[i + 1]->GetBndCondExpansions()[m_bcRegion]->GetPhys(), 1,
95 soundSpeed, 1, tmp, 1);
96 // rho*u
97 Vmath::Vmul(numBCPts, m_bcStorage[0], 1, tmp, 1, m_bcStorage[i + 1], 1);
98 // tmp = 0.5 * rho *(rhou) in vel
99 Vmath::Vmul(numBCPts, m_bcStorage[i + 1], 1, tmp, 1, tmp, 1);
100 Vmath::Smul(numBCPts, 0.5, tmp, 1, tmp, 1);
101 // Add to E
102 Vmath::Vadd(numBCPts, m_bcStorage[m_spacedim + 1], 1, tmp, 1,
103 m_bcStorage[m_spacedim + 1], 1);
104 }
105
106 // Copy to boundary condition
107 for (int i = 0; i < nvariables; ++i)
108 {
110 numBCPts, m_bcStorage[i], 1,
111 m_fields[i]->GetBndCondExpansions()[m_bcRegion]->UpdatePhys(), 1);
112 }
113}
int m_spacedim
Space dimension.
Definition: CFSBndCond.h:98
int m_bcRegion
Id of the boundary region.
Definition: CFSBndCond.h:113
VariableConverterSharedPtr m_varConv
Auxiliary object to convert variables.
Definition: CFSBndCond.h:100
CFSBndCond(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)
Constructor.
Definition: CFSBndCond.cpp:47
Array< OneD, MultiRegions::ExpListSharedPtr > m_fields
Array of fields.
Definition: CFSBndCond.h:92
Array< OneD, Array< OneD, NekDouble > > m_bcStorage
void Vmul(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:72
void Vadd(int n, const T *x, const int incx, const T *y, const int incy, T *z, const int incz)
Add vector z = x+y.
Definition: Vmath.hpp:180
void Smul(int n, const T alpha, const T *x, const int incx, T *y, const int incy)
Scalar multiply y = alpha*x.
Definition: Vmath.hpp:100
void Vcopy(int n, const T *x, const int incx, T *y, const int incy)
Definition: Vmath.hpp:825

References Nektar::CFSBndCond::m_bcRegion, m_bcStorage, Nektar::CFSBndCond::m_fields, Nektar::CFSBndCond::m_spacedim, Nektar::CFSBndCond::m_varConv, CG_Iterations::pressure, Vmath::Smul(), Vmath::Vadd(), Vmath::Vcopy(), and Vmath::Vmul().

◆ ~PressureMachTemperatureBC()

Nektar::PressureMachTemperatureBC::~PressureMachTemperatureBC ( void  )
inlineoverrideprivate

Definition at line 87 of file PressureMachTemperatureBC.h.

87{};

Member Function Documentation

◆ create()

static CFSBndCondSharedPtr Nektar::PressureMachTemperatureBC::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 
)
inlinestatic

Creates an instance of this class.

Definition at line 57 of file PressureMachTemperatureBC.h.

63 {
66 pSession, pFields, pTraceNormals, pGridVelocity, pSpaceDim,
67 bcRegion, cnt);
68 return p;
69 }
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
std::shared_ptr< CFSBndCond > CFSBndCondSharedPtr
A shared pointer to a boundary condition object.
Definition: CFSBndCond.h:51

References Nektar::MemoryManager< DataType >::AllocateSharedPtr(), and CellMLToNektar.cellml_metadata::p.

◆ v_Apply()

void Nektar::PressureMachTemperatureBC::v_Apply ( Array< OneD, Array< OneD, NekDouble > > &  Fwd,
Array< OneD, Array< OneD, NekDouble > > &  physarray,
const NekDouble time 
)
overrideprotectedvirtual

Implements Nektar::CFSBndCond.

Definition at line 115 of file PressureMachTemperatureBC.cpp.

119{
120 int nvariables = m_fields.size();
121 int numBCPts =
122 m_fields[0]->GetBndCondExpansions()[m_bcRegion]->GetNpoints();
123 // Copy conserved variables to boundary condition
124 for (int i = 0; i < nvariables; ++i)
125 {
127 numBCPts, m_bcStorage[i], 1,
128 m_fields[i]->GetBndCondExpansions()[m_bcRegion]->UpdatePhys(), 1);
129 }
130}

References Nektar::CFSBndCond::m_bcRegion, m_bcStorage, Nektar::CFSBndCond::m_fields, and Vmath::Vcopy().

Friends And Related Function Documentation

◆ MemoryManager< PressureMachTemperatureBC >

friend class MemoryManager< PressureMachTemperatureBC >
friend

Definition at line 1 of file PressureMachTemperatureBC.h.

Member Data Documentation

◆ className

std::string Nektar::PressureMachTemperatureBC::className
static
Initial value:
=
"PressureMachTemperature", PressureMachTemperatureBC::create,
"BC prescribed in terms of p, Ma and T.")
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
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.
CFSBndCondFactory & GetCFSBndCondFactory()
Declaration of the boundary condition factory singleton.
Definition: CFSBndCond.cpp:41

Name of the class.

Definition at line 72 of file PressureMachTemperatureBC.h.

◆ m_bcStorage

Array<OneD, Array<OneD, NekDouble> > Nektar::PressureMachTemperatureBC::m_bcStorage
private

Definition at line 90 of file PressureMachTemperatureBC.h.

Referenced by PressureMachTemperatureBC(), and v_Apply().