Lines Matching refs:left

25   CeedScalar left, right;  member
43 …oeAverage(RoeWeights r, CeedScalar q_left, CeedScalar q_right) { return r.left * q_left + r.right … in RoeAverage()
47 return q_right * dr.right + q_left * dr.left + r.right * dq_right + r.left * dq_left; in RoeAverage_fwd()
50 CEED_QFUNCTION_HELPER StateConservative Flux_HLL(State left, State right, StateConservative flux_le… in Flux_HLL() argument
53 UnpackState_U(left.U, U_left); in Flux_HLL()
68 CEED_QFUNCTION_HELPER StateConservative Flux_HLL_fwd(State left, State right, State dleft, State dr… in Flux_HLL_fwd() argument
72 UnpackState_U(left.U, U_l); in Flux_HLL_fwd()
97 CEED_QFUNCTION_HELPER void ComputeHLLSpeeds_Roe(NewtonianIGProperties gas, State left, CeedScalar u… in ComputeHLLSpeeds_Roe() argument
101 RoeWeights r = RoeSetup(left.U.density, right.U.density); in ComputeHLLSpeeds_Roe()
107 CeedScalar H_left = TotalSpecificEnthalpy(gas, left); in ComputeHLLSpeeds_Roe()
117 CEED_QFUNCTION_HELPER void ComputeHLLSpeeds_Roe_fwd(NewtonianIGProperties gas, State left, State dl… in ComputeHLLSpeeds_Roe_fwd() argument
122 RoeWeights r = RoeSetup(left.U.density, right.U.density); in ComputeHLLSpeeds_Roe_fwd()
123 RoeWeights dr = RoeSetup_fwd(left.U.density, right.U.density, dleft.U.density, dright.U.density); in ComputeHLLSpeeds_Roe_fwd()
130 CeedScalar H_left = TotalSpecificEnthalpy(gas, left); in ComputeHLLSpeeds_Roe_fwd()
132 CeedScalar dH_left = TotalSpecificEnthalpy_fwd(gas, left, dleft); in ComputeHLLSpeeds_Roe_fwd()
159 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLL(NewtonianIGProperties gas, State left, Stat… in RiemannFlux_HLL() argument
160 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL()
163 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL()
167 ComputeHLLSpeeds_Roe(gas, left, u_left, right, u_right, &s_left, &s_right); in RiemannFlux_HLL()
175 return Flux_HLL(left, right, flux_left, flux_right, s_left, s_right); in RiemannFlux_HLL()
191 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLL_fwd(NewtonianIGProperties gas, State left, … in RiemannFlux_HLL_fwd() argument
193 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLL_fwd()
195 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLL_fwd()
198 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLL_fwd()
204 …ComputeHLLSpeeds_Roe_fwd(gas, left, dleft, u_left, du_left, right, dright, u_right, du_right, &s_l… in RiemannFlux_HLL_fwd()
211 …return Flux_HLL_fwd(left, right, dleft, dright, flux_left, flux_right, dflux_left, dflux_right, s_… in RiemannFlux_HLL_fwd()
271 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLLC(NewtonianIGProperties gas, State left, Sta… in RiemannFlux_HLLC() argument
272 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC()
275 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC()
278 ComputeHLLSpeeds_Roe(gas, left, u_left, right, u_right, &s_left, &s_right); in RiemannFlux_HLLC()
281 CeedScalar rhou_left = left.U.density * u_left, rhou_right = right.U.density * u_right; in RiemannFlux_HLLC()
282 …CeedScalar numer = right.Y.pressure - left.Y.pressure + rhou_left * (s_left - u_left) - rhou_righ… in RiemannFlux_HLLC()
283 CeedScalar denom = left.U.density * (s_left - u_left) - right.U.density * (s_right - u_right); in RiemannFlux_HLLC()
290 return RiemannFlux_HLLC_Star(gas, left, flux_left, normal, u_left, s_left, s_star); in RiemannFlux_HLLC()
298 CEED_QFUNCTION_HELPER StateConservative RiemannFlux_HLLC_fwd(NewtonianIGProperties gas, State left,… in RiemannFlux_HLLC_fwd() argument
300 StateConservative flux_left = FluxInviscidDotNormal(gas, left, normal); in RiemannFlux_HLLC_fwd()
302 StateConservative dflux_left = FluxInviscidDotNormal_fwd(gas, left, dleft, normal); in RiemannFlux_HLLC_fwd()
305 CeedScalar u_left = Dot3(left.Y.velocity, normal); in RiemannFlux_HLLC_fwd()
311 …ComputeHLLSpeeds_Roe_fwd(gas, left, dleft, u_left, du_left, right, dright, u_right, du_right, &s_l… in RiemannFlux_HLLC_fwd()
314 …CeedScalar rhou_left = left.U.density * u_left, drhou_left = left.U.density * du_left + dleft.U.de… in RiemannFlux_HLLC_fwd()
316 CeedScalar numer = right.Y.pressure - left.Y.pressure // in RiemannFlux_HLLC_fwd()
322 CeedScalar denom = left.U.density * (s_left - u_left) - right.U.density * (s_right - u_right); in RiemannFlux_HLLC_fwd()
323 CeedScalar ddenom = left.U.density * (ds_left - du_left) + dleft.U.density * (s_left - u_left) // in RiemannFlux_HLLC_fwd()
332 …return RiemannFlux_HLLC_Star_fwd(gas, left, dleft, flux_left, dflux_left, normal, u_left, du_left,… in RiemannFlux_HLLC_fwd()