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

A global linear system. More...

#include <RCROutflow.h>

Inheritance diagram for Nektar::RCROutflow:
[legend]

Public Member Functions

 RCROutflow (Array< OneD, MultiRegions::ExpListSharedPtr > pVessel, const LibUtilities::SessionReaderSharedPtr pSession, PulseWavePressureAreaSharedPtr pressureArea)
 
virtual ~RCROutflow ()
 
- 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, 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)
 Creates an instance of this class. More...
 

Static Public Attributes

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

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, const NekDouble time, int omega, int offset, int n)
 
void R_RiemannSolver (NekDouble R, NekDouble A_l, NekDouble u_l, NekDouble A_0, NekDouble beta, NekDouble pout, NekDouble &A_u, NekDouble &u_u)
 

Protected Attributes

NekDouble m_timestep
 
NekDouble m_pc
 
- 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

A global linear system.

Definition at line 50 of file RCROutflow.h.

Constructor & Destructor Documentation

◆ RCROutflow()

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

Definition at line 52 of file RCROutflow.cpp.

References Nektar::PulseWaveBoundary::m_session, and m_timestep.

55  : PulseWaveBoundary(pVessel,pSession,pressureArea)
56  {
57  m_session->LoadParameter("TimeStep", m_timestep);
58  }
PulseWaveBoundary(Array< OneD, MultiRegions::ExpListSharedPtr > &pVessel, const LibUtilities::SessionReaderSharedPtr &pSession, PulseWavePressureAreaSharedPtr &pressureArea)
NekDouble m_timestep
Definition: RCROutflow.h:80
LibUtilities::SessionReaderSharedPtr m_session

◆ ~RCROutflow()

Nektar::RCROutflow::~RCROutflow ( )
virtual

Definition at line 63 of file RCROutflow.cpp.

64  {
65 
66  }

Member Function Documentation

◆ create()

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

Creates an instance of this class.

Definition at line 54 of file RCROutflow.h.

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

57  {
58  return MemoryManager<RCROutflow>::AllocateSharedPtr(pVessel,pSession,pressureArea);
59  }
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.

◆ R_RiemannSolver()

void Nektar::RCROutflow::R_RiemannSolver ( NekDouble  R,
NekDouble  A_l,
NekDouble  u_l,
NekDouble  A_0,
NekDouble  beta,
NekDouble  pout,
NekDouble A_u,
NekDouble u_u 
)
protected

Definition at line 125 of file RCROutflow.cpp.

References Nektar::PulseWaveBoundary::m_pext, and Nektar::PulseWaveBoundary::m_rho.

Referenced by v_DoBoundary().

128  {
129  NekDouble W1 = 0.0;
130  NekDouble c_l = 0.0;
131  NekDouble pext = m_pext;
132  NekDouble A_calc = 0.0;
133  NekDouble fa = 0.0;
134  NekDouble dfa = 0.0;
135  NekDouble delta_A_calc = 0.0;
136  NekDouble rho = m_rho;
137 
138  int proceed = 1;
139  int iter = 0;
140  int MAX_ITER = 200;
141 
142  // Tolerances for the algorithm
143  NekDouble Tol = 1.0e-10;
144 
145  // Calculate the wave speed
146  c_l = sqrt(beta/(2*rho))*sqrt(sqrt(A_l));
147 
148  // Riemann invariant \f$W_1(Al,ul)\f$
149  W1 = u_l + 4*c_l;
150 
151  // Newton Iteration (Area only)
152  A_calc = A_l;
153  while ((proceed) && (iter < MAX_ITER))
154  {
155  iter =iter+1;
156 
157  fa = R*W1*A_calc-4*R*sqrt(beta/(2*rho))*A_calc*sqrt(sqrt(A_calc))-pext-beta*(sqrt(A_calc)-sqrt(A_0))+pout;
158  dfa = R*W1-5*R*sqrt(beta/(2*rho))*sqrt(sqrt(A_calc))-beta/(2*sqrt(A_calc));
159  delta_A_calc = fa/dfa;
160  A_calc = A_calc - delta_A_calc;
161 
162  if (sqrt(delta_A_calc*delta_A_calc) < Tol)
163  proceed = 0;
164  }
165 
166  // Obtain u_u and A_u
167  //u_u = W1 - 4*sqrt(beta/(2*rho))*(sqrt(sqrt(A_calc)));
168  u_u=(pext+beta*(sqrt(A_calc)-sqrt(A_0))-pout)/(R*A_calc);
169  A_u = A_calc;
170  }
double NekDouble

◆ v_DoBoundary()

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

Implements Nektar::PulseWaveBoundary.

Definition at line 68 of file RCROutflow.cpp.

References m_pc, Nektar::PulseWaveBoundary::m_pout, Nektar::PulseWaveBoundary::m_rho, Nektar::PulseWaveBoundary::m_session, m_timestep, Nektar::PulseWaveBoundary::m_vessels, and R_RiemannSolver().

74  {
75  NekDouble A_r, u_r;
76  NekDouble A_u, u_u;
77  NekDouble A_l, u_l, c_0;
78 
79  Array<OneD, MultiRegions::ExpListSharedPtr> vessel(2);
80 
81  vessel[0] = m_vessels[2*omega];
82  vessel[1] = m_vessels[2*omega+1];
83 
84  /* Find the terminal RCR boundary condition and calculates
85  the updated velocity and area as well as the updated
86  boundary conditions */
87 
88  NekDouble RT=((vessel[0]->GetBndCondExpansions())[n])->GetCoeffs()[0];
89  NekDouble C=((vessel[1]->GetBndCondExpansions())[n])->GetCoeffs()[0];
90 
91  m_session->LoadParameter("pout", m_pout);
92 
93  NekDouble R1;
94  NekDouble R2;
95  NekDouble pout = m_pout;
96 
97  NekDouble rho = m_rho;
98  int nq = vessel[0]->GetTotPoints();
99 
100  A_l = inarray[0][offset+nq-1];
101  u_l = inarray[1][offset+nq-1];
102 
103  // Goes through the first resistance Calculate c_0
104  c_0 = sqrt(beta[omega][nq-1]/(2*m_rho))*sqrt(sqrt(A_0[omega][nq-1]));
105 
106  // Calculate R1 and R2, R1 being calculated so as
107  // to eliminate reflections in the vessel
108  R1 = rho*c_0/A_0[omega][nq-1];
109  R2 = RT-R1;
110 
111  // Call the R RiemannSolver
112  R_RiemannSolver(R1,A_l,u_l,A_0[omega][nq-1],beta[omega][nq-1],m_pc,A_u,u_u);
113  A_r = A_l;
114  u_r = 2*u_u-u_l;
115 
116  // Goes through the CR system, it consists in
117  // updating the pressure pc
118  m_pc = m_pc + m_timestep/C*(A_u*u_u-(m_pc-pout)/R2);
119 
120  // Store the updated values in the boundary condition
121  (vessel[0]->UpdateBndCondExpansion(n))->UpdatePhys()[0] = A_r;
122  (vessel[1]->UpdateBndCondExpansion(n))->UpdatePhys()[0] = u_r;
123  }
NekDouble m_timestep
Definition: RCROutflow.h:80
LibUtilities::SessionReaderSharedPtr m_session
Array< OneD, MultiRegions::ExpListSharedPtr > m_vessels
NekDouble m_pc
Definition: RCROutflow.h:82
double NekDouble
void R_RiemannSolver(NekDouble R, NekDouble A_l, NekDouble u_l, NekDouble A_0, NekDouble beta, NekDouble pout, NekDouble &A_u, NekDouble &u_u)
Definition: RCROutflow.cpp:125

Member Data Documentation

◆ className

std::string Nektar::RCROutflow::className
static
Initial value:
"RCR-terminal",
"RCR outflow boundary condition")

Name of class.

Definition at line 62 of file RCROutflow.h.

◆ m_pc

NekDouble Nektar::RCROutflow::m_pc
protected

Definition at line 82 of file RCROutflow.h.

Referenced by v_DoBoundary().

◆ m_timestep

NekDouble Nektar::RCROutflow::m_timestep
protected

Definition at line 80 of file RCROutflow.h.

Referenced by RCROutflow(), and v_DoBoundary().