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

#include <ROutflow.h>

Inheritance diagram for Nektar::ROutflow:
[legend]

Public Member Functions

 ROutflow (Array< OneD, MultiRegions::ExpListSharedPtr > pVessel, const LibUtilities::SessionReaderSharedPtr pSession, PulseWavePressureAreaSharedPtr pressureArea)
 
virtual ~ROutflow ()
 
- Public Member Functions inherited from Nektar::PulseWaveBoundary
 PulseWaveBoundary (Array< OneD, MultiRegions::ExpListSharedPtr > &pVessel, const LibUtilities::SessionReaderSharedPtr &pSession, PulseWavePressureAreaSharedPtr &pressureArea)
 
virtual ~PulseWaveBoundary ()
 
void DoBoundary (const Array< OneD, const Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &A_0, Array< OneD, Array< OneD, NekDouble >> &beta, Array< OneD, Array< OneD, NekDouble >> &alpha, const NekDouble time, int omega, int offset, int n)
 

Static Public Member Functions

static PulseWaveBoundarySharedPtr create (Array< OneD, MultiRegions::ExpListSharedPtr > &pVessel, const LibUtilities::SessionReaderSharedPtr &pSession, PulseWavePressureAreaSharedPtr &pressureArea)
 

Static Public Attributes

static std::string className
 

Protected Member Functions

virtual void v_DoBoundary (const Array< OneD, const Array< OneD, NekDouble >> &inarray, Array< OneD, Array< OneD, NekDouble >> &A_0, Array< OneD, Array< OneD, NekDouble >> &beta, Array< OneD, Array< OneD, NekDouble >> &alpha, const NekDouble time, int omega, int offset, int n) override
 
void R_RiemannSolver (NekDouble R, NekDouble A_l, NekDouble u_l, NekDouble A_0, NekDouble beta, NekDouble alpha, NekDouble POut, NekDouble &A_u, NekDouble &u_u)
 

Additional Inherited Members

- Protected Attributes inherited from Nektar::PulseWaveBoundary
Array< OneD, MultiRegions::ExpListSharedPtrm_vessels
 
LibUtilities::SessionReaderSharedPtr m_session
 
PulseWavePressureAreaSharedPtr m_pressureArea
 
NekDouble m_pext
 
NekDouble m_pout
 
NekDouble m_rho
 

Detailed Description

Definition at line 52 of file ROutflow.h.

Constructor & Destructor Documentation

◆ ROutflow()

Nektar::ROutflow::ROutflow ( Array< OneD, MultiRegions::ExpListSharedPtr pVessel,
const LibUtilities::SessionReaderSharedPtr  pSession,
PulseWavePressureAreaSharedPtr  pressureArea 
)

Definition at line 46 of file ROutflow.cpp.

49  : PulseWaveBoundary(pVessel, pSession, pressureArea)
50 {
51 }
PulseWaveBoundary(Array< OneD, MultiRegions::ExpListSharedPtr > &pVessel, const LibUtilities::SessionReaderSharedPtr &pSession, PulseWavePressureAreaSharedPtr &pressureArea)

◆ ~ROutflow()

Nektar::ROutflow::~ROutflow ( )
virtual

Definition at line 53 of file ROutflow.cpp.

54 {
55 }

Member Function Documentation

◆ create()

static PulseWaveBoundarySharedPtr Nektar::ROutflow::create ( Array< OneD, MultiRegions::ExpListSharedPtr > &  pVessel,
const LibUtilities::SessionReaderSharedPtr pSession,
PulseWavePressureAreaSharedPtr pressureArea 
)
inlinestatic

Definition at line 56 of file ROutflow.h.

60  {
61  return MemoryManager<ROutflow>::AllocateSharedPtr(pVessel, pSession,
62  pressureArea);
63  }
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.

References Nektar::MemoryManager< DataType >::AllocateSharedPtr().

◆ R_RiemannSolver()

void Nektar::ROutflow::R_RiemannSolver ( NekDouble  R,
NekDouble  A_l,
NekDouble  u_l,
NekDouble  A_0,
NekDouble  beta,
NekDouble  alpha,
NekDouble  POut,
NekDouble A_u,
NekDouble u_u 
)
protected

Definition at line 107 of file ROutflow.cpp.

110 {
111  NekDouble W1 = 0.0;
112  NekDouble c = 0.0;
113  NekDouble cL = 0.0;
114  NekDouble I = 0.0;
115  NekDouble A_calc = 0.0;
116  NekDouble FA = 0.0;
117  NekDouble dFdA = 0.0;
118  NekDouble delta_A_calc = 0.0;
119  NekDouble P = 0.0;
120  NekDouble rho = m_rho;
121 
122  int proceed = 1;
123  int iter = 0;
124  int MAX_ITER = 200;
125 
126  // Tolerances for the algorithm
127  NekDouble Tol = 1.0E-10;
128 
129  // Calculate the wave speed
130  m_pressureArea->GetC(cL, beta, A_l, A_0, alpha);
131 
132  // Riemann invariant \f$W_1(Al,ul)\f$
133  m_pressureArea->GetW1(W1, u_l, beta, A_l, A_0, alpha);
134 
135  // Newton Iteration (Area only)
136  A_calc = A_l;
137  while ((proceed) && (iter < MAX_ITER))
138  {
139  iter += 1;
140 
141  m_pressureArea->GetPressure(P, beta, A_calc, A_0, 0, 0, alpha);
142  m_pressureArea->GetC(c, beta, A_calc, A_0, alpha);
143  m_pressureArea->GetCharIntegral(I, beta, A_calc, A_0, alpha);
144 
145  FA = R * A_calc * (W1 - I) - P + POut;
146  dFdA = R * (W1 - I - c) - c * c * rho / A_calc;
147  delta_A_calc = FA / dFdA;
148  A_calc -= delta_A_calc;
149 
150  if (sqrt(delta_A_calc * delta_A_calc) < Tol)
151  {
152  proceed = 0;
153  }
154  }
155 
156  m_pressureArea->GetPressure(P, beta, A_calc, A_0, 0, 0, alpha);
157 
158  // Obtain u_u and A_u
159  u_u = (P - POut) / (R * A_calc);
160  A_u = A_calc;
161 }
PulseWavePressureAreaSharedPtr m_pressureArea
@ beta
Gauss Radau pinned at x=-1,.
Definition: PointsType.h:61
double NekDouble
scalarT< T > sqrt(scalarT< T > in)
Definition: scalar.hpp:294

References Nektar::LibUtilities::beta, Nektar::PulseWaveBoundary::m_pressureArea, Nektar::PulseWaveBoundary::m_rho, Nektar::LibUtilities::P, and tinysimd::sqrt().

Referenced by v_DoBoundary().

◆ v_DoBoundary()

void Nektar::ROutflow::v_DoBoundary ( const Array< OneD, const Array< OneD, NekDouble >> &  inarray,
Array< OneD, Array< OneD, NekDouble >> &  A_0,
Array< OneD, Array< OneD, NekDouble >> &  beta,
Array< OneD, Array< OneD, NekDouble >> &  alpha,
const NekDouble  time,
int  omega,
int  offset,
int  n 
)
overrideprotectedvirtual

Implements Nektar::PulseWaveBoundary.

Definition at line 57 of file ROutflow.cpp.

63 {
64  boost::ignore_unused(time);
65 
66  NekDouble A_r = 0.0;
67  NekDouble u_r = 0.0;
68  NekDouble A_u = 0.0;
69  NekDouble u_u = 0.0;
70  NekDouble A_l = 0.0;
71  NekDouble u_l = 0.0;
72  NekDouble POut = m_pout;
73 
74  Array<OneD, MultiRegions::ExpListSharedPtr> vessel(2);
75 
76  // Pointers to the domains
77  vessel[0] = m_vessels[2 * omega];
78  vessel[1] = m_vessels[2 * omega + 1];
79 
80  /* Find the terminal R boundary condition and
81  calculates the updated velocity and area as
82  well as the updated boundary conditions */
83 
84  /* Load terminal resistance
85  and number of points from the input file */
86  NekDouble RT = ((vessel[0]->GetBndCondExpansions())[n])->GetCoeffs()[0];
87  int nq = vessel[0]->GetTotPoints();
88 
89  // Get the values of all variables needed for the Riemann problem
90  A_l = inarray[0][offset + nq - 1];
91  u_l = inarray[1][offset + nq - 1];
92 
93  // Call the R RiemannSolver
94  R_RiemannSolver(RT, A_l, u_l, A_0[omega][nq - 1], beta[omega][nq - 1],
95  alpha[omega][nq - 1], POut, A_u, u_u);
96 
97  /* Fix the boundary conditions in the virtual region to ensure
98  upwind state matches the boundary condition at the next time step */
99  A_r = A_l;
100  u_r = 2 * u_u - u_l;
101 
102  // Store the updated values
103  (vessel[0]->UpdateBndCondExpansion(n))->UpdatePhys()[0] = A_r;
104  (vessel[1]->UpdateBndCondExpansion(n))->UpdatePhys()[0] = u_r;
105 }
Array< OneD, MultiRegions::ExpListSharedPtr > m_vessels
void R_RiemannSolver(NekDouble R, NekDouble A_l, NekDouble u_l, NekDouble A_0, NekDouble beta, NekDouble alpha, NekDouble POut, NekDouble &A_u, NekDouble &u_u)
Definition: ROutflow.cpp:107

References Nektar::LibUtilities::beta, Nektar::PulseWaveBoundary::m_pout, Nektar::PulseWaveBoundary::m_vessels, and R_RiemannSolver().

Member Data Documentation

◆ className

std::string Nektar::ROutflow::className
static
Initial value:
"R-terminal", ROutflow::create, "Resistive outflow boundary condition")
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:198
static PulseWaveBoundarySharedPtr create(Array< OneD, MultiRegions::ExpListSharedPtr > &pVessel, const LibUtilities::SessionReaderSharedPtr &pSession, PulseWavePressureAreaSharedPtr &pressureArea)
Definition: ROutflow.h:56
BoundaryFactory & GetBoundaryFactory()

Definition at line 66 of file ROutflow.h.